python:urllib2使用不同的网络接口

时间:2011-11-23 16:37:03

标签: python sockets networking interface network-interface

我有以下代码:

f = urllib2.urlopen(url)
data = f.read()
f.close()

它在具有两个网络接口的计算机上运行。我想指定我希望代码使用哪个接口。具体来说,我希望它使用默认情况下使用的那个...但我可以弄清楚如果我可以选择界面哪个是哪个。

最简单/最好/最pythonic的方法是什么?

2 个答案:

答案 0 :(得分:3)

还不是一个完整的解决方案,但如果您只使用简单的套接字对象,那么您可以通过这种方式执行所需的操作:

import socket
s = socket.socket()
s.bind(("127.0.0.1", 0))    # replace "127.0.0.1" by the local IP of the interface to use
s.connect(("remote_server.com", 80))

因此,您将强制系统将套接字绑定到所需的网络接口。

答案 1 :(得分:2)

如果您使用Twisted twisted.web.client.Agent,那么您可以通过以下方式实现此目的:

from twisted.internet import reactor
from twisted.web.client import Agent

agent = Agent(reactor, bindAddress=("10.0.0.1", 0))

然后以通常的方式使用agent