python获取内网IP和外网IP的方法

1、获取内网IP

示例代码:

import socket

# 获取内网IP
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 80))
print(s.getsockname()[0])
print(s.getsockname())
s.close()

运行结果:

python获取内网IP和外网IP的方法_第1张图片

2、获取外网IP

示例代码:

import requests

print(requests.get('http://ifconfig.me/ip', timeout=1).text.strip())
print(requests.get('http://ifconfig.me', timeout=1).text.strip())
print(requests.get('http://ifconfig.me', timeout=1))
print(requests.get('http://ifconfig.me/ip', timeout=1))

运行结果:

python获取内网IP和外网IP的方法_第2张图片

参考博文:

python获取内网IP和外网IP的方法_slp_44777680的博客-CSDN博客_python 获取内网ip 

你可能感兴趣的:(python,tcp/ip,网络,服务器,python)