使用Twisted查找我的服务器IP地址

Find my server ip address with Twisted(使用Twisted查找我的服务器IP地址)

本文介绍了使用Twisted查找我的服务器IP地址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用Twisted异步查找我的服务器IP地址?

我运行的是ubuntu和centos,结果总是一样的,下面暴露的方法返回的IP总是:127.0.1.1,而不是我的真实内网IP地址。

编辑:这不是建议的this question的副本,我最后一次尝试的灵感来自于这个答案,我想要的是一种以异步方式实现这一点的方法。

尝试使用TCP服务器检索IP

from twisted.internet import protocol, endpoints, reactor


class FindIpClient(protocol.Protocol):

    def connectionMade(self):
        print self.transport.getPeer()  # prints 127.0.1.1
        self.transport.loseConnection()


def main():
    f = protocol.ClientFactory()
    f.protocol = FindIpClient
    ep = endpoints.clientFromString(reactor, 'tcp:127.0.0.1:1234')
    ep.connect(f)
    reactor.run()

main()

使用反应器.解析

import socket

from twisted.internet import reactor


def gotIP(ip):
    print(ip)  # prints 127.0.1.1
    reactor.stop()


reactor.resolve(socket.getfqdn()).addCallback(gotIP)
reactor.run()

这是可行的,但我不确定异步性

import socket

s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 0))
s.setblocking(False)
local_ip_address = s.getsockname()[0]
print(local_ip_address)  # prints 10.0.2.40

如何同步获取我的私有IP地址?

以下是我的/etc/hosts,如果它能有所帮助的话:

127.0.0.1 localhost
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
127.0.1.1 mymachine mymachine

我不知道为什么我的主机中有127.0.1.1 mymachine mymachinebtw:/

推荐答案

我最终保留了此解决方案,因为它不能太长

import socket

s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 0))
s.setblocking(False)
local_ip_address = s.getsockname()[0]
print(local_ip_address)  # prints 10.0.2.40

这篇关于使用Twisted查找我的服务器IP地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:使用Twisted查找我的服务器IP地址

基础教程推荐