自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

Linux route命令詳解:查看和操作IP路由表

網(wǎng)絡(luò) 路由交換
Linux系統(tǒng)的route命令用于顯示和操作IP路由表(show / manipulate the IP routing table)。要實(shí)現(xiàn)兩個(gè)不同的子網(wǎng)之間的通信,需要一臺(tái)連接兩個(gè)網(wǎng)絡(luò)的路由器,或者同時(shí)位于兩個(gè)網(wǎng)絡(luò)的網(wǎng)關(guān)來實(shí)現(xiàn)。

Linux系統(tǒng)的route命令用于顯示和操作IP路由表(show / manipulate the IP routing table)。要實(shí)現(xiàn)兩個(gè)不同的子網(wǎng)之間的通信,需要一臺(tái)連接兩個(gè)網(wǎng)絡(luò)的路由器,或者同時(shí)位于兩個(gè)網(wǎng)絡(luò)的網(wǎng)關(guān)來實(shí)現(xiàn)。

在Linux系統(tǒng)中,設(shè)置路由通常是為了解決以下問題:該Linux系統(tǒng)在一個(gè)局域網(wǎng)中,局域網(wǎng)中有一個(gè)網(wǎng)關(guān),能夠讓機(jī)器訪問Internet,那么就需要將這臺(tái)機(jī)器的IP地址設(shè)置為L(zhǎng)inux機(jī)器的默認(rèn)路由。要注意的是,直接在命令行下執(zhí)行route命令來添加路由,不會(huì)***保存,當(dāng)網(wǎng)卡重啟或者機(jī)器重啟之后,該路由就失效了;可以在/etc/rc.local中添加route命令來保證該路由設(shè)置***有效。

1.命令格式:

route [-f] [-p] [Command [Destination] [mask Netmask] [Gateway] [metric Metric]] [if Interface]]

2.命令功能:

route命令是用于操作基于內(nèi)核ip路由表,它的主要作用是創(chuàng)建一個(gè)靜態(tài)路由讓指定一個(gè)主機(jī)或者一個(gè)網(wǎng)絡(luò)通過一個(gè)網(wǎng)絡(luò)接口,如eth0。當(dāng)使用"add"或者"del"參數(shù)時(shí),路由表被修改,如果沒有參數(shù),則顯示路由表當(dāng)前的內(nèi)容。

3.命令參數(shù):

-c 顯示更多信息

-n 不解析名字

-v 顯示詳細(xì)的處理信息

-F 顯示發(fā)送信息

-C 顯示路由緩存

-f 清除所有網(wǎng)關(guān)入口的路由表。

-p 與 add 命令一起使用時(shí)使路由具有***性。

add:添加一條新路由。 del:刪除一條路由。 -net:目標(biāo)地址是一個(gè)網(wǎng)絡(luò)。 -host:目標(biāo)地址是一個(gè)主機(jī)。 netmask:當(dāng)添加一個(gè)網(wǎng)絡(luò)路由時(shí),需要使用網(wǎng)絡(luò)掩碼。 gw:路由數(shù)據(jù)包通過網(wǎng)關(guān)。注意,你指定的網(wǎng)關(guān)必須能夠達(dá)到。 metric:設(shè)置路由跳數(shù)。

Command 指定您想運(yùn)行的命令 (Add/Change/Delete/Print)。 Destination 指定該路由的網(wǎng)絡(luò)目標(biāo)。 mask Netmask 指定與網(wǎng)絡(luò)目標(biāo)相關(guān)的網(wǎng)絡(luò)掩碼(也被稱作子網(wǎng)掩碼)。

Gateway 指定網(wǎng)絡(luò)目標(biāo)定義的地址集和子網(wǎng)掩碼可以到達(dá)的前進(jìn)或下一躍點(diǎn) IP 地址。

metric Metric 為路由指定一個(gè)整數(shù)成本值標(biāo)(從 1 至 9999),當(dāng)在路由表(與轉(zhuǎn)發(fā)的數(shù)據(jù)包目標(biāo)地址最匹配)的多個(gè)路由中進(jìn)行選擇時(shí)可以使用。

if Interface 為可以訪問目標(biāo)的接口指定接口索引。若要獲得一個(gè)接口列表和它們相應(yīng)的接口索引,使用 route print 命令的顯示功能。可以使用十進(jìn)制或十六進(jìn)制值進(jìn)行接口索引。

4.使用實(shí)例:

實(shí)例1:顯示當(dāng)前路由

route 或者 route -n

1 root@ubuntu:~# route -n
2 Kernel IP routing table
3 Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
4 0.0.0.0         59.188.252.1    0.0.0.0         UG    100    0        0 br0
5 10.22.0.0       0.0.0.0         255.255.255.0   U     0      0        0 br0
6 59.188.252.0    0.0.0.0         255.255.255.0   U     0      0        0 br0
7 172.22.0.0      0.0.0.0         255.255.255.0   U     0      0        0 br1
8 192.168.122.0   0.0.0.0         255.255.255.0   U     0      0        0 virbr0

 

 

說明:

***行表示主機(jī)所在網(wǎng)絡(luò)的地址為192.168.120.0,若數(shù)據(jù)傳送目標(biāo)是在本局域網(wǎng)內(nèi)通信,則可直接通過eth0轉(zhuǎn)發(fā)數(shù)據(jù)包;

第四行表示數(shù)據(jù)傳送目的是訪問Internet,則由接口eth0,將數(shù)據(jù)包發(fā)送到網(wǎng)關(guān)192.168.120.240

其中Flags為路由標(biāo)志,標(biāo)記當(dāng)前網(wǎng)絡(luò)節(jié)點(diǎn)的狀態(tài)。

Flags標(biāo)志說明:

U Up表示此路由當(dāng)前為啟動(dòng)狀態(tài)           H Host,表示此網(wǎng)關(guān)為一主機(jī)

G Gateway,表示此網(wǎng)關(guān)為一路由器       R Reinstate Route,使用動(dòng)態(tài)路由重新初始化的路由

D Dynamically,此路由是動(dòng)態(tài)性地寫入      M Modified,此路由是由路由守護(hù)程序或?qū)蚱鲃?dòng)態(tài)修改

! 表示此路由當(dāng)前為關(guān)閉狀態(tài)

備注:

route -n (-n 表示不解析名字,列出速度會(huì)比route 快)

實(shí)例2:添加網(wǎng)關(guān)/設(shè)置網(wǎng)關(guān)

命令:

 route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0

實(shí)例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

說明:

增加一條屏蔽的路由,目的地址為 224.x.x.x 將被拒絕

實(shí)例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

實(shí)例5:刪除和添加設(shè)置默認(rèn)網(wǎng)關(guān)

命令:

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

 

責(zé)任編輯:藍(lán)雨淚 來源: 博客園
相關(guān)推薦

2010-08-06 13:58:13

RIP路由表清單

2010-05-27 14:13:55

Linux查看ip

2014-06-16 16:37:36

linux路由表

2009-12-22 10:04:48

路由表原理

2009-12-11 14:24:09

路由表信息

2011-08-05 11:15:11

路由器路由表

2009-11-24 09:39:44

路由表信息

2009-12-11 14:03:47

Windows路由表

2009-12-11 09:27:16

靜態(tài)路由表動(dòng)態(tài)路由表

2011-08-23 09:54:31

路由路由表路由器

2010-03-18 17:25:37

Linux命令

2010-08-08 21:22:26

RIP路由協(xié)議

2011-06-03 09:25:03

route路由

2010-08-20 15:07:22

浮動(dòng)靜態(tài)路由

2011-08-22 14:34:36

路由表

2010-05-27 14:29:53

Linux查看進(jìn)程

2009-11-12 15:06:46

路由器故障

2010-08-06 09:29:25

RIP路由器

2012-11-12 11:23:26

路由器

2009-12-10 17:27:19

Linux操作系統(tǒng)
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)