Linux下Route 路由指令使用详解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下Route 路由指令使用详解相关的知识,希望对你有一定的参考价值。
参考技术Alinux route命令 用于显示和操作IP路由表 。
要实现 两个不同子网之间的通信 ,需要一台连接两个网络的路由器,或者同时位于两个网络的网关来实现。
在Linux系统中,设置路由通常是为了解决以下问题:该Linux系统在一个局域网中,局域网中有一个网关,能够让机器访问Internet,那么就需要将这台机器的IP地址 设置为 Linux机器的默认路由 。
格式:
[root@linux ~]# route [-nee]
[root@linux ~]# route add [-net|-host] [网域或主机] netmask [mask] [gw|dev]
[root@linux ~]# route del [-net|-host] [网域或主机] netmask [mask] [gw|dev]
1、 查看相关参数:
-n :不要使用通讯协定或主机名称,直接使用 IP 或 port number;
-ee :使用更详细的资讯来显示
2、增加 (add) 、删除 (del) 路由的相关参数:
-net :表示后面接的路由为一个网域;
-host :表示后面接的为连接到单部主机的路由;
netmask :与网域有关,可以设定 netmask 决定网域的大小;
gw :gateway 的简写,后续接的是 IP 的数值喔,与 dev 不同;
dev :如果只是要指定由那一块网卡连线出去,则使用这个设定,后面接 eth0 等
设置默认路由
格式:route add default gw IP-ADDRESS INTERFACE-NAME
其中,
参数IP-ADDRESS): 用于指定路由器(网关)的IP地址;
参数INTERFACE-NAME: 用于指定接口名称,如eth0。使用/sbin/ifconfig -a可以显示所有接口信息。
例:
添加到指定网络的路由规则
格式:route add -net NETWORK-ADDRESS netmask NETMASK dev INTERFACE-NAME
其中
参数NETWORK-ADDRESS: 用于指定网络地址
参数NETMASK: 用于指定子网掩码
参数INTERFACE-NAME: 用于指定接口名称,如eth0。
例:
屏蔽一条路由,设置到指定网络为不可达 ,避免在连接到这个网络的地址时程序过长时间的等待
格式:route add -net NETWORK-ADDRESS netmask NETMASK reject
例:
删除路由设置 ,参数指定的方式与route add相似。
格式:route del -net NETWORK-ADDRESS netmask NETMASK dev INTERFACE-NAME
格式:route del -net NETWORK-ADDRESS netmask NETMASK reject
例:
注意的是 ,直接在命令行下执行route命令来添加路由, 不会永久保存 ,当网卡重启或者机器重启之后,该路由就 失效 了; 要想永久保存 ,有如下方法:
1. 在/etc/rc.local里添加
2. 在/etc/sysconfig/network里添加到末尾
3. /etc/sysconfig/static-router :
any net x.x.x.x/24 gw y.y.y.y
linux 路由表设置 之 route 指令详解
linux 路由表设置 之 route 指令详解
转载于:http://blog.csdn.net/chenlycly/article/details/52141854
使用下面的 route 命令可以查看 Linux 内核路由表。
- # route
- Destination Gateway Genmask Flags Metric Ref Use Iface
- 192.168.0.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.168.0.1 0.0.0.0 UG 0 0 0 eth0
route 命令的输出项说明
输出项 说明
Destination | 目标网段或者主机 |
Gateway | 网关地址,”*” 表示目标是本主机所属的网络,不需要路由 |
Genmask | 网络掩码 |
Flags | 标记。一些可能的标记如下: |
U — 路由是活动的 | |
H — 目标是一个主机 | |
G — 路由指向网关 | |
R — 恢复动态路由产生的表项 | |
D — 由路由的后台程序动态地安装 | |
M — 由路由的后台程序修改 | |
! — 拒绝路由 | |
Metric | 路由距离,到达指定网络所需的中转数(linux 内核中没有使用) |
Ref | 路由项引用次数(linux 内核中没有使用) |
Use | 此路由项被路由软件查找的次数 |
Iface | 该路由表项对应的输出接口 |
3 种路由类型
主机路由
主机路由是路由选择表中指向单个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
网络路由
网络路由是代表主机可以到达的网络。网络路由的Flags字段为N。例如,在下面的示例中,本地主机将发送到网络192.19.12的数据包转发到IP地址为192.168.1.1的路由器。
Destination Gateway Genmask Flags Metric Ref Use Iface ----------- ------- ------- ----- ----- --- --- ----- 192.19.12 192.168.1.1 255.255.255.0 UN 0 0 0 eth0
默认路由
当主机不能在路由表中查找到目标主机的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
配置静态路由
route 命令
设置和查看路由表都可以用 route 命令,设置内核路由表的命令格式是:
# route [add|del] [-net|-host] target [netmask Nm] [gw Gw] [[dev] If]
其中:
- add : 添加一条路由规则
- del : 删除一条路由规则
- -net : 目的地址是一个网络
- -host : 目的地址是一个主机
- target : 目的网络或主机
- netmask : 目的地址的网络掩码
- gw : 路由数据包通过的网关
- dev : 为路由指定的网络接口
route 命令使用举例
添加到主机的路由
- # route add -host 192.168.1.2 dev eth0
- # route add -host 10.20.30.148 gw 10.20.30.40 #添加到10.20.30.148的网管
# route add -host 192.168.1.2 dev eth0 # route add -host 10.20.30.148 gw 10.20.30.40 #添加到10.20.30.148的网管
添加到网络的路由
- # route add -net 10.20.30.40 netmask 255.255.255.248 eth0 #添加10.20.30.40的网络
- # route add -net 10.20.30.48 netmask 255.255.255.248 gw 10.20.30.41 #添加10.20.30.48的网络
- # route add -net 192.168.1.0/24 eth1
# route add -net 10.20.30.40 netmask 255.255.255.248 eth0 #添加10.20.30.40的网络 # route add -net 10.20.30.48 netmask 255.255.255.248 gw 10.20.30.41 #添加10.20.30.48的网络 # route add -net 192.168.1.0/24 eth1
添加默认路由
- # route add default gw 192.168.1.1
# route add default gw 192.168.1.1
删除路由
- # route del -host 192.168.1.2 dev eth0:0
- # route del -host 10.20.30.148 gw 10.20.30.40
- # route del -net 10.20.30.40 netmask 255.255.255.248 eth0
- # route del -net 10.20.30.48 netmask 255.255.255.248 gw 10.20.30.41
- # route del -net 192.168.1.0/24 eth1
- # route del default gw 192.168.1.1
# route del -host 192.168.1.2 dev eth0:0 # route del -host 10.20.30.148 gw 10.20.30.40 # route del -net 10.20.30.40 netmask 255.255.255.248 eth0 # route del -net 10.20.30.48 netmask 255.255.255.248 gw 10.20.30.41 # route del -net 192.168.1.0/24 eth1 # route del default gw 192.168.1.1
设置包转发
在 CentOS 中默认的内核配置已经包含了路由功能,但默认并没有在系统启动时启用此功能。开启 linux 的路由功能可以通过调整内核的网络参数来实现。要配置和调整内核参数可以使用 sysctl 命令。例如:要开启 Linux 内核的数据包转发功能可以使用如下的命令。
- # sysctl -w net.ipv4.ip_forward=1
# sysctl -w net.ipv4.ip_forward=1
这样设置之后,当前系统就能实现包转发,但下次启动计算机时将失效。为了使在下次启动计算机时仍然有效,需要将下面的行写入配置文件/etc/sysctl.conf。
- # vi /etc/sysctl.conf
- net.ipv4.ip_forward = 1
# vi /etc/sysctl.conf net.ipv4.ip_forward = 1
用户还可以使用如下的命令查看当前系统是否支持包转发。
- # sysctl net.ipv4.ip_forward
# sysctl net.ipv4.ip_forward
route 命令:
Linux系统的route命令用于显示和操作IP路由表(show / manipulate the IP routing table)。要实现两个不同的子网之间的通信,需要一台连接两个网络的路由器,或者同时位于两个网络的网关来实现。在Linux系统中,设置路由通常是为了解决以下问题:该Linux系统在一个局域网中,局域网中有一个网关,能够让机器访问Internet,那么就需要将这台机器的IP地址设置为Linux机器的默认路由。要注意的是,直接在命令行下执行route命令来添加路由,不会永久保存,当网卡重启或者机器重启之后,该路由就失效了;可以在/etc/rc.local中添加route命令来保证该路由设置永久有效。
1.命令格式:
route [-f] [-p] [Command [Destination] [mask Netmask] [Gateway] [metric Metric]] [if Interface]]
2.命令功能:
Route命令是用于操作基于内核ip路由表,它的主要作用是创建一个静态路由让指定一个主机或者一个网络通过一个网络接口,如eth0。当使用"add"或者"del"参数时,路由表被修改,如果没有参数,则显示路由表当前的内容。
3.命令参数:
-c 显示更多信息
-n 不解析名字
-v 显示详细的处理信息
-F 显示发送信息
-C 显示路由缓存
-f 清除所有网关入口的路由表。
-p 与 add 命令一起使用时使路由具有永久性。
add:添加一条新路由。
del:删除一条路由。
-net:目标地址是一个网络。
-host:目标地址是一个主机。
netmask:当添加一个网络路由时,需要使用网络掩码。
gw:路由数据包通过网关。注意,你指定的网关必须能够达到。
metric:设置路由跳数。
Command 指定您想运行的命令 (Add/Change/Delete/Print)。
Destination 指定该路由的网络目标。
mask Netmask 指定与网络目标相关的网络掩码(也被称作子网掩码)。
Gateway 指定网络目标定义的地址集和子网掩码可以到达的前进或下一跃点 IP 地址。
metric Metric 为路由指定一个整数成本值标(从 1 至 9999),当在路由表(与转发的数据包目标地址最匹配)的多个路由中进行选择时可以使用。
if Interface 为可以访问目标的接口指定接口索引。若要获得一个接口列表和它们相应的接口索引,使用 route print 命令的显示功能。可以使用十进制或十六进制值进行接口索引。
4.使用实例:
实例1:显示当前路由
命令:
route
route -n
输出:
- [root@localhost ~]# route
- Kernel IP routing table
- Destination Gateway Genmask Flags Metric Ref Use Iface
- 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0
- e192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0
- 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0
- default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0
- [root@localhost ~]# route -n
- Kernel IP routing table
- Destination Gateway Genmask Flags Metric Ref Use Iface
- 192.168.120.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
- 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0
- 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0
- 0.0.0.0 192.168.120.240 0.0.0.0 UG 0 0 0 eth0
[root@localhost ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0 e192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0 default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0 [root@localhost ~]# route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.120.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0 0.0.0.0 192.168.120.240 0.0.0.0 UG 0 0 0 eth0
说明:
第一行表示主机所在网络的地址为192.168.120.0,若数据传送目标是在本局域网内通信,则可直接通过eth0转发数据包;
第四行表示数据传送目的是访问Internet,则由接口eth0,将数据包发送到网关192.168.120.240
其中Flags为路由标志,标记当前网络节点的状态。
Flags标志说明:
U Up表示此路由当前为启动状态
H Host,表示此网关为一主机
G Gateway,表示此网关为一路由器
R Reinstate Route,使用动态路由重新初始化的路由
D Dynamically,此路由是动态性地写入
M Modified,此路由是由路由守护程序或导向器动态修改
! 表示此路由当前为关闭状态
备注:
route -n (-n 表示不解析名字,列出速度会比route 快)
实例2:添加网关/设置网关
命令:
route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
输出:
- [root@localhost ~]# route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
- [root@localhost ~]# route
- Kernel IP routing table
- Destination Gateway Genmask Flags Metric Ref Use Iface
- 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0
- 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0
- 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0
- 224.0.0.0 * 240.0.0.0 U 0 0 0 eth0
- default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0
[root@localhost ~]# route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0 [root@localhost ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0 224.0.0.0 * 240.0.0.0 U 0 0 0 eth0 default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0
[root@localhost ~]#
说明:
增加一条 到达244.0.0.0的路由
实例3:屏蔽一条路由
命令:
route add -net 224.0.0.0 netmask 240.0.0.0 reject
输出:
- [root@localhost ~]# route add -net 224.0.0.0 netmask 240.0.0.0 reject
- [root@localhost ~]# route
- Kernel IP routing table
- Destination Gateway Genmask Flags Metric Ref Use Iface
- 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0
- 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0
- 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0
- 224.0.0.0 - 240.0.0.0 ! 0 - 0 -
- 224.0.0.0 * 240.0.0.0 U 0 0 0 eth0
- default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0
[root@localhost ~]# route add -net 224.0.0.0 netmask 240.0.0.0 reject [root@localhost ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0 224.0.0.0 - 240.0.0.0 ! 0 - 0 - 224.0.0.0 * 240.0.0.0 U 0 0 0 eth0 default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0
说明:
增加一条屏蔽的路由,目的地址为 224.x.x.x 将被拒绝
实例4:删除路由记录
命令:
route del -net 224.0.0.0 netmask 240.0.0.0
route del -net 224.0.0.0 netmask 240.0.0.0 reject
输出:
- [root@localhost ~]# route
- Kernel IP routing table
- Destination Gateway Genmask Flags Metric Ref Use Iface
- 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0
- 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0
- 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0
- 224.0.0.0 - 240.0.0.0 ! 0 - 0 -
- 224.0.0.0 * 240.0.0.0 U 0 0 0 eth0
- default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0
- [root@localhost ~]# route del -net 224.0.0.0 netmask 240.0.0.0
- [root@localhost ~]# route
- Kernel IP routing table
- Destination Gateway Genmask Flags Metric Ref Use Iface
- 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0
- 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0
- 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0
- 224.0.0.0 - 240.0.0.0 ! 0 - 0 -
- default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0
- [root@localhost ~]# route del -net 224.0.0.0 netmask 240.0.0.0 reject
- [root@localhost ~]# route
- Kernel IP routing table
- Destination Gateway Genmask Flags Metric Ref Use Iface
- 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0
- 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0
- 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0
- default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0
- [root@localhost ~]#
[root@localhost ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0 224.0.0.0 - 240.0.0.0 ! 0 - 0 - 224.0.0.0 * 240.0.0.0 U 0 0 0 eth0 default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0 [root@localhost ~]# route del -net 224.0.0.0 netmask 240.0.0.0 [root@localhost ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0 224.0.0.0 - 240.0.0.0 ! 0 - 0 - default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0 [root@localhost ~]# route del -net 224.0.0.0 netmask 240.0.0.0 reject [root@localhost ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0 default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0 [root@localhost ~]#
说明:
实例5:删除和添加设置默认网关
命令:
route del default gw 192.168.120.240
route add default gw 192.168.120.240
输出:
- [root@localhost ~]# route del default gw 192.168.120.240
- [root@localhost ~]# route
- Kernel IP routing table
- Destination Gateway Genmask Flags Metric Ref Use Iface
- 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0
- 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0
- 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0
- [root@localhost ~]# route add default gw 192.168.120.240
- [root@localhost ~]# route
- Kernel IP routing table
- Destination Gateway Genmask Flags Metric Ref Use Iface
- 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0
- 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0
- 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0
- default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0
- [root@localhost ~]#
[root@localhost ~]# route del default gw 192.168.120.240 [root@localhost ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0 [root@localhost ~]# route add default gw 192.168.120.240 [root@localhost ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.120.0 * 255.255.255.0 U 0 0 0 eth0 192.168.0.0 192.168.120.1 255.255.0.0 UG 0 0 0 eth0 10.0.0.0 192.168.120.1 255.0.0.0 UG 0 0 0 eth0 default 192.168.120.240 0.0.0.0 UG 0 0 0 eth0 [root@localhost ~]#
- 显示现在所有路由
- #route -n
- root@Ubuntu:~# route
- Kernel IP routing table
- Destination Gateway Genmask Flags Metric Ref Use Iface
- 10.147.9.0 * 255.255.255.0 U 1 0 0 eth0
- 192.168.1.0 * 255.255.255.0 U 2 0 0 wlan0
- 192.168.122.0 * 255.255.255.0 U 0 0 0 virbr0
- link-local * 255.255.0.0 U 1000 0 0 eth0
- 192.168.0.0 192.168.1.1 255.255.0.0 UG 0 0 0 wlan0
- default 10.147.9.1 0.0.0.0 UG 0 0 0 eth0
- root@Ubuntu:~#
- 结果是自上而下, 就是说, 哪条在前面, 哪条就有优先, 前面都没有, 就用最后一条default
- 举例, 添加一条路由(发往192.168.62这个网段的全部要经过网关192.168.1.1)
- route add -net 192.168.62.0 netmask 255.255.255.0 gw 192.168.1.1
- 删除一条路由
- route del -net 192.168.122.0 netmask 255.255.255.0
- 删除的时候不用写网关
- linux下添加路由的方法:
- 一:使用 route 命令添加
- 使用route 命令添加的路由,机器重启或者网卡重启后路由就失效了,方法:
- //添加到主机的路由
- # route add –host 192.168.168.110 dev eth0
- # route add –host 192.168.168.119 gw 192.168.168.1
- //添加到网络的路由
- # route add –net IP netmask MASK eth0
- # route add –net IP netmask MASK gw IP
- # route add –net IP/24 eth1
- //添加默认网关
- # route add default gw IP
- //删除路由
- # route del –host 192.168.168.110 dev eth0
- 二:在linux下设置永久路由的方法:
- 1.在/etc/rc.local里添加
- 方法:
- route add -net 192.168.3.0/24 dev eth0
- route add -net 192.168.2.0/24 gw 192.168.3.254
- 2.在/etc/sysconfig/network里添加到末尾
- 方法:GATEWAY=gw-ip 或者 GATEWAY=gw-dev
- 3./etc/sysconfig/static-router :
- any net x.x.x.x/24 gw y.y.y.y
- ------------------------------------------------------------------------------------------
- -- Route命令的正确用法
- 使用 Route 命令行工具查看并编辑计算机的 IP 路由表。Route 命令和语法如下所示:
- route [-f] [-p] [Command [Destination] [mask Netmask] [Gateway] [metric Metric]] [if Interface]]
- -f 清除所有网关入口的路由表。
- -p 与 add 命令一起使用时使路由具有永久性。
- Command 指定您想运行的命令 (Add/Change/Delete/Print)。
- Destination 指定该路由的网络目标。
- mask Netmask 指定与网络目标相关的网络掩码(也被称作子网掩码)。
- Gateway 指定网络目标定义的地址集和子网掩码可以到达的前进或下一跃点 IP 地址。
- metric Metric 为路由指定一个整数成本值标(从 1 至 ArrayArrayArrayArray),当在路由表(与转发的数据包目标地址最匹配)的多个路由中进行选择时可以使用。
- if Interface 为可以访问目标的接口指定接口索引。若要获得一个接口列表和它们相应的接口索引,使用 route print 命令的显示功能。可以使用十进制或十六进制值进行接口索引。
- /? 在命令提示符处显示帮助。
- 示例
- 若要显示 IP 路由表的全部内容,请键入:
- route print
- 若要显示以 10. 起始的 IP 路由表中的路由,请键入:
- route print 10.*
- 若要添加带有 1Array2.168.12.1 默认网关地址的默认路由,请键入:
- route add 0.0.0.0 mask 0.0.0.0 1Array2.168.12.1
- 若要向带有 255.255.0.0 子网掩码和 10.27.0.1 下一跃点地址的 10.41.0.0 目标中添加一个路由,请键入:
- route add 10.41.0.0 mask 255.255.0.0 10.27.0.1
- 若要向带有 255.255.0.0 子网掩码和 10.27.0.1 下一跃点地址的 10.41.0.0 目标中添加一个永久路由,请键入:
- route -p add 10.41.0.0 mask 255.255.0.0 10.27.0.1
- 若要向带有 255.255.0.0 子网掩码、10.27.0.1 下一跃点地址且其成本值标为 7 的 10.41.0.0 目标中添加一个路由,请键入:
- route add 10.41.0.0 mask 255.255.0.0 10.27.0.1 metric 7
- 若要向带有 255.255.0.0 子网掩码、10.27.0.1 下一跃点地址且使用 0x3 接口索引的 10.41.0.0 目标中添加一个路由,请键入:
- route add 10.41.0.0 mask 255.255.0.0 10.27.0.1 if 0x3
- 若要删除到带有 255.255.0.0 子网掩码的 10.41.0.0 目标的路由,请键入:
- route delete 10.41.0.0 mask 255.255.0.0
- 若要删除以 10. 起始的 IP 路由表中的所有路由,请键入:
- route delete 10.*
- 若要将带有 10.41.0.0 目标和 255.255.0.0 子网掩码的下一跃点地址从 10.27.0.1 修改为 10.27.0.25,请键入:
- route change 10.41.0.0 mask 255.255.0.0 10.27.0.25
- -------------------------------------------------------------------------
- 首先,先了解传统的网络配置命令:
- 1. 使用ifconfig命令配置并查看网络接口情况
- 示例1: 配置eth0的IP,同时激活设备:
- # ifconfig eth0 192.168.4.1 netmask 255.255.255.0 up
- 示例2: 配置eth0别名设备 eth0:1 的IP,并添加路由
- # ifconfig eth0:1 192.168.4.2
- # route add –host 192.168.4.2 dev eth0:1
- 示例3:激活(禁用)设备
- # ifconfig eth0:1 up(down)
- 示例4:查看所有(指定)网络接口配置
- # ifconfig (eth0)
- 2. 使用route 命令配置路由表
- 示例1:添加到主机路由
- # route add –host 192.168.4.2 dev eth0:1
- # route add –host 192.168.4.1 gw 192.168.4.250
- 示例2:添加到网络的路由
- # route add –net IP netmask MASK eth0
- # route add –net IP netmask MASK gw IP
- # route add –net IP/24 eth1
- 示例3:添加默认网关
- # route add default gw IP
- 示例4:删除路由
- # route del –host 192.168.4.1 dev eth0:1
- 示例5:查看路由信息
- # route 或 route -n (-n 表示不解析名字,列出速度会比route 快)
- 3.ARP 管理命令
- 示例1:查看ARP缓存
- # arp
- 示例2: 添加
- # arp –s IP MAC
- 示例3: 删除
- # arp –d IP
- 4. ip是iproute2软件包里面的一个强大的网络配置工具,它能够替代一些传统的网络管理工具。例如:ifconfig、route等,
- 上面的示例完全可以用下面的ip命令实现,而且ip命令可以实现更多的功能.下面介绍一些示例:
- 4.0 ip命令的语法
- ip命令的用法如下:
- ip [OPTIONS] OBJECT [COMMAND [ARGUMENTS]]
- 4.1 ip link set--改变设备的属性. 缩写:set、s
- 示例1:up/down 起动/关闭设备。
- # ip link set dev eth0 up
- 这个等于传统的 # ifconfig eth0 up(down)
- 示例2:改变设备传输队列的长度。
- 参数:txqueuelen NUMBER或者txqlen NUMBER
- # ip link set dev eth0 txqueuelen 100
- 示例3:改变网络设备MTU(最大传输单元)的值。
- # ip link set dev eth0 mtu 1500
- 示例4: 修改网络设备的MAC地址。
- 参数: address LLADDRESS
- # ip link set dev eth0 address 00:01:4f:00:15:f1
- 4.2 ip link show--显示设备属性. 缩写:show、list、lst、sh、ls、l
- -s选项出现两次或者更多次,ip会输出更为详细的错误信息统计。
- 示例:
- # ip -s -s link ls eth0
- eth0: mtu 1500 qdisc cbq qlen 100
- link/ether 00:a0:cc:66:18:78 brd ff:ff:ff:ff:ff:ff
- RX: bytes packets errors dropped overrun mcast
- 2449949362 2786187 0 0 0 0
- RX errors: length crc fifo missed
- 0 0 0 0 0
- TX: bytes packets errors dropped carrier collsns
- 178558497 1783946 332 0 332 35172
- TX errors: aborted fifo window heartbeat
- 0 0 0 332
- 这个命令等于传统的 ifconfig eth0
- 5.1 ip address add--添加一个新的协议地址. 缩写:add、a
- 示例1:为每个地址设置一个字符串作为标签。为了和Linux-2.0的网络别名兼容,这个字符串必须以设备名开头,接着一个冒号,
- # ip
以上是关于Linux下Route 路由指令使用详解的主要内容,如果未能解决你的问题,请参考以下文章