多个客户端通过同一IP连接到服务器
我考虑到这种情况,我可以将具有相同 IP(位于同一台计算机上)的一组客户端连接到通过用户名和密码而不是 IP 识别它们的服务器。我想知道这是否可能。
我正在使用 TCP/IP 应用程序的 此 模板。
I have this scenario in mind, can I connect group of clients that have the same IP -Located on the same computer- to server which recognize them by their username and password and not by their IPs .. I want to know if this possible.
I'm using this template of TCP/IP application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在一台计算机上启动(几乎)任意数量的连接到同一服务器的客户端。唯一的限制是可用端口的数量。客户端套接字由 ipaddress:port 对标识,因此如果您在不同的端口上启动每个客户端,它将可以工作。
You can start (almost) any number of clients on one machine that connect to the same server. The only restriction is the number of ports you have available. A client socket is identified by an ipaddress:port pair, so if you start each client on a different port, it will work.