我有三位房东:
host1 : this is my router (10.10.10.1)
host2 : python lib PyEZ (10.10.10.2)
host3 : place the website (43.43.43.43)
您看到我的host2仅可以访问我的host1(路由器),我的host2可以使用PyEZ与路由器进行交互,现在我的要求是我想通过host2在我的网站(host3)中实现交互路由器功能访问主机1。
在host2中,可以使用bellow命令获取路由器(host1)的信息。
>>> from pprint import pprint
>>> from jnpr.junos import Device
>>> dev = Device(host="10.10.10.1", user="admin", password="123456")
>>> dev.open()
Device(10.10.10.1)
>>>dev.facts["version"]
'12.1X46-D20.5'
现在我的要求是在网站上通过host2获取host1的信息。
我该如何实现?