在 Python 中查找面向公众的 IP 地址?

问题描述 投票:0回答:8

如何在 Python 中找到我的网络的面向公众的 IP?

python ip-address
8个回答
15
投票

https://api.ipify.org/?format=json非常简单

只需运行即可解析

requests.get("https://api.ipify.org/?format=json").json()['ip']


13
投票

这将获取您的远程 IP 地址

import urllib
ip = urllib.urlopen('http://automation.whatismyip.com/n09230945.asp').read()

如果您不想依赖别人,那么只需上传类似以下 PHP 脚本的内容即可:

<?php echo $_SERVER['REMOTE_ADDR']; ?>

并更改 Python 中的 URL,或者如果您更喜欢 ASP:

<%
Dim UserIPAddress
UserIPAddress = Request.ServerVariables("REMOTE_ADDR")
%>

注意:我不懂 ASP,但我认为这里可能会有用,所以我用 google 搜索了。


6
投票

whatismyip.org 更好...它只是将 IP 作为明文返回,没有任何无关的废话。

import urllib
ip = urllib.urlopen('http://whatismyip.org').read()

但是,是的,如果不依赖网络本身之外的东西,就不可能轻松做到这一点。


6
投票
import requests
r = requests.get(r'http://jsonip.com')
# r = requests.get(r'https://ifconfig.co/json')
ip= r.json()['ip']
print('Your IP is {}'.format(ip))

参考


4
投票

如果您不介意脏话,请尝试:

http://wtfismyip.com/json

将其绑定在通常的 urllib 内容中,如其他人所示。

还有:

http://www.networksecuritytoolkit.org/nst/tools/ip.php


3
投票
import urllib2
text = urllib2.urlopen('http://www.whatismyip.org').read()
urlRE=re.findall('[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}',text)
urlRE        

['146.148.123.123']

尝试将您可以找到的任何“findmyipsite”放入列表中并迭代它们以进行比较。这个好像效果不错。


1
投票

这很简单

>>> import urllib
>>> urllib.urlopen('http://icanhazip.com/').read().strip('\n')
'xx.xx.xx.xx'

0
投票

您还可以使用 DNS,在某些情况下可能比 http 方法更可靠:

#!/usr/bin/env python3

# pip install --user dnspython

import dns.resolver

resolver1_opendns_ip = False
resolver = dns.resolver.Resolver()
opendns_result = resolver.resolve("resolver1.opendns.com", "A")
for record in opendns_result:
    resolver1_opendns_ip = record.to_text()

if resolver1_opendns_ip:
    resolver.nameservers = [resolver1_opendns_ip]
    myip_result = resolver.resolve("myip.opendns.com", "A")
    for record in myip_result:
        print(f"Your external ip is {record.to_text()}")

这是

dig +short -4 myip.opendns.com @resolver1.opendns.com

的 Python 等价物
© www.soinside.com 2019 - 2024. All rights reserved.