我有两个网络连接 - wifi和以太网。如何在使用命令行时选择要使用的特定网络,例如。 ping google.com
。
PS:我提到ping作为例子。我可能正在运行python脚本或curl,它应该为所有这些使用相同的接口。
答案 0 :(得分:4)
你可以使用-I标志
-I interface address
Set source address to specified interface address. Argument may be numeric IP address or name of device.
例如
ping -I eth0 8.8.8.8
ping -I wlan0 8.8.8.8