我有一个需要获取路由的linux服务器。我在这方面还很新,我在Google上找不到任何明确的来源。
设置应该很简单:
到IP 192.168.72.20上服务器的所有流量都应该通过接口3发送。所有其他接口此刻都无关紧要。
在这里,您有输出 route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.72.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.72.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
192.168.72.0 0.0.0.0 255.255.255.0 U 0 0 0 eth2
192.168.72.0 0.0.0.0 255.255.255.0 U 0 0 0 eth3
192.168.72.0 0.0.0.0 255.255.255.0 U 0 0 0 eth4
169.254.0.0 0.0.0.0 255.255.0.0 U 1002 0 0 eth0
0.0.0.0 192.168.72.12 0.0.0.0 UG 0 0 0 eth0
我不知道,我想是旧的,我该如何检查?
—
腓特烈
route add -host 192.168.72.20 GW eth3_ip
)