linux系统下路由的 *** 作:
查看路由表:
route -n/ip route
添加路由:
route add -host 1.1.1.1/32 gw 172.18.30.45
route add -host 主机ip地址 gw 下一跳[ip或设备]
route add -net 10.20.20.0/24 dev eth0
route add -net 网段 gw 下一跳[ip或设备]
删除路由:
route del -net 10.20.20.0/24 【删除网段路由】
route del -host 1.1.1.1 【删除主机路由】
默认网关:
route add default gw 172.18.30.204
route del default gw 172.18.30.204
具体 *** 作:
[root@test1 ~]# ip route
10.10.10.10 via 172.18.30.1 dev eth0
172.18.30.0/24 dev eth0 proto kernel scope link src 172.18.30.45
192.168.122.0/24 dev virbr0 proto kernel scope link src 192.168.122.1
169.254.0.0/16 dev eth0 scope link metric 1002
default via 172.18.30.254 dev eth0 proto static
[root@test1 ~]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
bogon bogon 255.255.255.255 UGH 0 0 0 eth0
172.18.30.0 * 255.255.255.0 U 0 0 0 eth0
192.168.122.0 * 255.255.255.0 U 0 0 0 virbr0
link-local * 255.255.0.0 U 1002 0 0 eth0
default bogon 0.0.0.0 UG 0 0 0 eth0
[root@test1 ~]#
[root@test1 ~]# route add -host 1.1.1.1/32 gw 172.18.30.45
[root@test1 ~]# route add -net 10.20.20.0/24 dev eth0
[root@test1 ~]# route del -net 10.20.20.0/24
[root@test1 ~]# route del -host 1.1.1.1
[root@test1 ~]# route add default gw 172.18.30.204
[root@test1 ~]# route del default gw 172.18.30.204
更多linux知识建议参考《Linux就该这样学》,linux的学习需要多巧多练习,加油吧
第一:你的告诉别人,你的linux的发布版是是什么(centos,suse or aix)第二:用GATWAY参数只能设置一个默认值,也就是说默认网关只有一个。(cetos/redhat)
第三:如果是centos/redhat,那么请修改该文件(没有则创建)/etc/sysconfig/static-routes
格式如下:
any net 10.10.10.0/24 gw 10.10.10.30
any host 192.168.3.83 gw 10.10.10.60
any net 172.16.3.0/24 gw 172.16.0.1 dev eth3
第四:如果是suse,请修改/etc/sysconfig/network下的routes,具体格式请参照百度。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)