语法格式选项说明应用举例显示和设置网关屏蔽一条路由表

命令简介

route命令用于显示和设置linux系统的路由表(静态路由表)。

route命令拿来显示并设置Linux内核中的网路路由表linux route del 命令,route命令设置的路由主要是静态路由。在Linux、BSD和其他类似Unix的系统上,route命令用于查看和修改内核路由表。在不同的系统上linux route del 命令linux系统镜像下载,命令句型不同。

句型格式

route [-CFvnee]
route [-v] [-A family] add [-net|-host] target [netmask Nm] [gw Gw] 
      [metric N] i [mss M] [window W] [irtt m] [reject] [mod] [dyn] 
      [reinstate] [[dev] If]
route [-v] [-A family] del [-net|-host] target [gw Gw] [netmask Nm] 
      [metric N] [[dev] If]
route [-V] [--version] [-h] [--help]

linux route del 命令_命令方块获取指令_命令方块指令

选项说明

-A  #指定地址类型
-C  #打印将Linux核心的路由缓存
-v  #输出详细信息
-n  #不执行DNS反向查找,直接显示数字形式的IP地址
-e  #netstat格式显示路由表
-net  #到一个网络的路由表
-host  #到一个主机的路由表
Add  #增加指定的路由记录
Del  #删除指定的路由记录
Target  #目的网络或目的主机
gw  #设置默认网关
mss  #设置TCP的最大区块长度(MSS),单位MB
window  #指定通过路由表的TCP连接的TCP窗口大小
dev  #路由记录所表示的网络接口

应用举例

显示当前系统的路由表

[root@CentOS7-1 ~]# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         gateway         0.0.0.0         UG    100    0        0 ens33
192.168.1.0     0.0.0.0         255.255.255.0   U     100    0        0 ens33
[root@CentOS7-1 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    100    0        0 ens33
192.168.1.0     0.0.0.0         255.255.255.0   U     100    0        0 ens33

其中Flags为路由标志红帽linux,标记当前网路节点的状态,Flags标志说明如下:

命令方块获取指令_linux route del 命令_命令方块指令

U  #Up 表示此路由当前为启动状态
H  #Host 表示此网关为一主机
G  #Gateway 表示此网关为一路由器
R  #Reinstate Route 使用动态路由重新初始化的路由
D  #Dynamically 此路由是动态性地写入
M  #Modified 此路由是由路由守护程序或导向器动态修改
!  #表示此路由当前为关闭状态

添加网段/设置网段

[root@CentOS7-1 ~]# route add -net 192.168.2.0 netmask 255.255.255.0 dev ens33
[root@CentOS7-1 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    100    0        0 ens33
192.168.1.0     0.0.0.0         255.255.255.0   U     100    0        0 ens33
192.168.2.0     0.0.0.0         255.255.255.0   U     0      0        0 ens33
#增加一条到达192.168.2.0子网的路由。

屏蔽一条路由

[root@CentOS7-1 ~]# route add -net 192.168.3.0 netmask 255.255.255.0 reject
[root@CentOS7-1 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    100    0        0 ens33
192.168.1.0     0.0.0.0         255.255.255.0   U     100    0        0 ens33
192.168.2.0     0.0.0.0         255.255.255.0   U     0      0        0 ens33
192.168.3.0     -               255.255.255.0   !     0      -        0 -   
#增加一条屏蔽的路由,目的地址为192.168.3.0子网将被拒绝。

删掉路由记录

linux route del 命令_命令方块指令_命令方块获取指令

[root@CentOS7-1 ~]# route del -net 192.168.2.0 netmask 255.255.255.0
[root@CentOS7-1 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    100    0        0 ens33
192.168.1.0     0.0.0.0         255.255.255.0   U     100    0        0 ens33
192.168.3.0     -               255.255.255.0   !     0      -        0 -
[root@CentOS7-1 ~]# route del -net 192.168.3.0 netmask 255.255.255.0 reject
[root@CentOS7-1 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    100    0        0 ens33
192.168.1.0     0.0.0.0         255.255.255.0   U     100    0        0 ens33

删掉和添加设置默认网段

[root@CentOS7-1 ~]# route add default gw 192.168.1.1
[root@CentOS7-1 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0        0 ens33
0.0.0.0         192.168.1.1     0.0.0.0         UG    100    0        0 ens33
192.168.1.0     0.0.0.0         255.255.255.0   U     100    0        0 ens33
[root@CentOS7-1 ~]# route del default gw 192.168.1.1
[root@CentOS7-1 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    100    0        0 ens33
192.168.1.0     0.0.0.0         255.255.255.0   U     100    0        0 ens33

每晚学一个Linux命令(60):scp

每晚学一个Linux命令(61):wget

Tagged: 路由表