1.查看路由表
# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
140.116.141.253 0.0.0.0 255.255.255.255 UH 0 0 0 ppp0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
0.0.0.0 140.116.141.253 0.0.0.0 UG 0 0 0 ppp0
各字段解释:
Destination 目标网段或者主机
Gateway 网关地址,”*” 表示目标是本主机所属的网络,不需要路由
Genmask 网络掩码
Flags 标记。一些可能的标记如下:
U — 路由是活动的
H — 目标是一个主机
G — 路由指向网关
R — 恢复动态路由产生的表项
D — 由路由的后台程序动态地安装
M — 由路由的后台程序修改
! — 拒绝路由
Metric 路由距离,到达指定网络所需的中转数(linux 内核中没有使用)
Ref 路由项引用次数(linux 内核中没有使用)
Use 此路由项被路由软件查找的次数
Iface 该路由表项对应的输出接口
PS: route -n 等价于 netstat -rn
2.操作路由表
route add default gw 192.168.100.251
route add -net 192.168.114.0/24 gw 192.168.114.254
route del -net 192.168.100.0/24
3.双网卡双网关
eth0:192.168.0.1
eth1:61.157.66.2
route add -net 192.168.0.0/24 gw 192.168.0.254 dev eth0
route add -net 61.157.0.0/16 gw 61.157.66.1 dev eth1
阅读(918) | 评论(0) | 转发(0) |