在windows可以使用ipconfig来查看所有的网络的设置的参数,包括IP地址,子网掩码,广播地址,还有网关;在linux有个类似的命令ifconfig,但是还是不同,例如它就不可以显示出网关信息。那么有什么命令可以做到这一点。我们可以有2个选项。
route命令
这个命令后面不用带任何参数,输出:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 10.66.xx.xx 0.0.0.0 UG 0 0 0 eth0
xx.xx.xx.xx * 255.255.254.0 U 1 0 0 eth0
link-local * 255.255.0.0 U 1000 0 0 eth0
这个例子中10.66.xx.xx就是网关
ip命令
该命令格式,
ip route show
输出为:
10.66.xx.xx/23 dev eth0 proto kernel scope link src 10.66.32.131 metric 1
169.254.0.0/16 dev eth0 scope link metric 1000
10.66.xx.xx为网关。
版权所有,禁止转载. 如需转载,请先征得博主的同意,并且表明文章出处,否则按侵权处理.