linux网络命令
一、linux下添加路由
1、添加默认网关:route add default gw 192.168.1.1 或 route add default dev eth1
2、添加路由:route add -net 172.16.1.0 netmask 255.255.255.0 gw 172.16.1.1
route add -net 172.16.1.0 netmask 255.255.255.0 dev eth0
3、添加一个主机路由:route add -host 172.16.1.1 gw 172.16.1.10
route add -host 172.16.1.1 dev eth0
4、删除:route del [default/-host/-net]
5、查看路由:route -n 或 netstat -rn
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.60.3 192.168.60.1 255.255.255.255 UGH 0 0 0 eth1
172.17.46.0 172.17.46.1 255.255.255.0 UG 0 0 0 eth0
172.17.46.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.60.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
0.0.0.0 172.17.46.1 0.0.0.0 UG 0 0 0 eth0
0.0.0.0 192.168.60.2 0.0.0.0 UG 0 0 0 eth1
本文出自 “laoyaowst” 博客,请务必保留此出处http://laoyaowst.blog.51cto.com/6113216/1543566
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。