使用Twisted

时间:2016-02-04 15:57:37

标签: python twisted

如何使用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()

使用reactor.resolve

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()

这有效,但我不确定 asynchronous -ity

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 mymachine btw:/

2 个答案:

答案 0 :(得分:0)

来自Python Twisted: restricting access by IP address

  

d = self.transport.getHost(); print d.type,d.host,d.port

对某些协议不起作用,例如在广播UDP上接收

答案 1 :(得分:-3)

我最终保留了这个解决方案,因为不能很长

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