1. 程式人生 > >八月考核:如何查看Linux的默認網關

八月考核:如何查看Linux的默認網關

命令 mas 默認網關 考核 routing hello use 4.0 sco

一:如何查看Linux的默認網關

1.如果固定IP上網,cat /etc/sysconfig/network裏面gateway項

2.如果是dhcp上網,使用route命令,default那一行就是網關了
[root@hello ~]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.1.1.0 255.255.255.0 U 0 0 0 eth0
169.254.0.0
255.255.0.0 U 0 0 0 eth0
default 192.1.1.1 0.0.0.0 UG 0 0 0 eth0

3.也可以用netstat命令查看

八月考核:如何查看Linux的默認網關