1 route路由命令
1.1 route -n命令,查看路由表
Route命令是用于操作基于内核ip路由表,它的主要作用是创建一个静态路由让指定一个主机或者一个网络通过一个网络接口,如eth0。当使用”add”或者”del”参数时,路由表被修改,如果没有参数,则显示路由表当前的内容。
命令参数:
-n 不解析名字
输出项 说明
Destination 目标网段或者主机
Gateway 网关地址,”*” 表示目标是本主机所属的网络,不需要路由
Genmask 网络掩码
Flags 标记。一些可能的标记如下:
U — 路由是活动的
H — 目标是一个主机
N — 目标是一个网段
G — 路由指向网关
R — 恢复动态路由产生的表项
D — 由路由的后台程序动态地安装
M — 由路由的后台程序修改
! — 拒绝路由
Metric 路由距离,到达指定网络所需的中转数(linux 内核中没有使用)
Ref 路由项引用次数(linux 内核中没有使用)
Use 此路由项被路由软件查找的次数
Iface 该路由表项对应的输出网卡名称
1.2 种路由类型
1)主机路由
主机路由是路由选择表中指向单个IP地址或主机名的路由记录。主机路由的Flags字段为H。例如,在下面的示例中,本地主机通过IP地址192.168.1.1的路由器到达IP地址为10.0.0.10的主机。
Destination Gateway Genmask Flags Metric Ref Use Iface
----------- ------- ------- ----- ------ --- --- -----
10.0.0.10 192.168.1.1 255.255.255.255 UH 0 0 0 eth0
2)网络路由
网络路由是代表主机可以到达的网络。网络路由的Flags字段为N。例如,在下面的示例中,本地主机将发送到网络192.19.12的数据包转发到IP地址为192.168.1.1的路由器。
Destination Gateway Genmask Flags Metric Ref Use Iface
----------- ------- ------- ----- ----- --- --- -----
192.19.12.0 192.168.1.1 255.255.255.0 UN 0 0 0 eth0
3)默认路由
当主机不能在路由表中查找到目标主机的IP地址或网络路由时,数据包就被发送到默认路由(默认网关)上。默认路由的Flags字段为G。例如,在下面的示例中,默认路由是IP地址为192.168.1.1的路由器。
Destination Gateway Genmask Flags Metric Ref Use Iface
----------- ------- ------- ----- ------ --- --- -----
default 192.168.1.1 0.0.0.0 UG 0 0 0 eth0
1.3 route 命令
设置和查看路由表都可以用 route 命令,设置内核路由表的命令格式如下
route [add|del] [-net|-host] target [netmask Nm] [gw Gw] [[dev] If]
其中:
add : 添加一条路由规则
del : 删除一条路由规则
-net : 目的地址是一个网络
-host : 目的地址是一个主机
target : 目的网络或主机
netmask : 目的地址的网络掩码
gw : 路由数据包通过的网关
dev : 为路由指定的网络接口
添加路由
添加到主机的路由
[root@centos128 ~]# route add -host 192.168.1.3 dev eth0
[root@centos128 ~]# route add -host 192.168.1.3 gw 192.168.71.129
添加网络路由
[root@centos128 ~]# route add -net 10.20.30.0 netmask 255.255.255.0 eth0
[root@centos128 ~]# route add -net 10.20.40.0 netmask 255.255.255.0 gw 192.168.71.1
增加默认路由
[root@centos128 ~]# route add default gw 192.168.0.1
删除路由
[root@centos128 ~]# route del -host 192.168.1.3 dev eth0
[root@centos128 ~]# route del -host 192.168.1.2 dev eth0
[root@centos128 ~]# route del -net 10.20.30.0 netmask 255.255.255.0 eth0
[root@centos128 ~]# route del -net 10.20.40.0 netmask 255.255.255.0 gw 192.168.71.129
[root@centos128 ~]# route del -net 10.20.40.0/24 eth0
[root@centos128 ~]# route del default gw 192.168.71.129
添加永久路由
1) vi /etc/rc.local(添加到末尾)
语句:
route add -net 192.168.3.0/24 dev eth0
route add -net 192.168.2.0/24 gw 192.168.2.254
3)开启 IP 转发:
# echo "1" >/proc/sys/net/ipv4/ip_forward (临时)
# vi /etc/sysctl.conf --> net.ipv4.ip_forward=1 (永久开启)
生效:/sbin/sysctl -p