Python无法使用套接字绑定我的外部/公共ip地址,但报错,但使用本地ip地址时却未显示错误

时间:2019-06-08 19:45:16

标签: python sockets

这是显示主要错误的代码

s.bind(("192.168.1.4", port))    this will work

s.bind(("99.99.999.999", port)) lets say used my public ip than itll throw error

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

port = 6767

try:
    s.bind(("192.168.1.4", port))  #will work fine as local ip is used but 
                                   #when used public ip the error is thrown
except socket.error as e:
    print(str(e)+"aa")

s.listen(2)

[WinError 10049]请求的地址在其上下文中无效

1 个答案:

答案 0 :(得分:1)

您只能绑定到系统本地的IP地址。您看到的“公共IP”可能不是本地计算机的IP地址,而是为您提供Internet连接的路由器的IP地址。

这意味着您需要在此路由器上运行程序才能绑定到该IP地址。由于通常这是不可能的,因此从外部访问某些内部服务的常用方法是绑定到本地网络中的地址,然后向路由器添加转发规则,该规则将外部连接转发到绑定该服务的内部IP和端口去听。