我有一个带有 eth0 和 eth1 的服务器。
eth0 = 10.0.0.10
eth1 = 10.10.0.10
现在,如果我执行以下操作,telnet 将使用来自 eth0 的 IP 地址。
$device_object = Net::Telnet::Cisco->new( Host => $Router);
$device_object->login( Name => $Username, Passcode => $Password) || die "Can't login to $HOST\n$!\n";
@output = $session->cmd('show ip int brief');
print @output;
如何使用 eth1 作为源地址连接到 cisco 路由器,执行命令并获得输出?