Linux routeコマンドメモ
2577 ワード
トップページに戻る
スワップリンクブロガーファイル伝言ネットワーク構成|2011-06-26
Linux routeコマンドメモ
この章の要点ネイティブルーティングテーブル情報の表示:route 追加ルーティングテーブル:route add ルーティングテーブルの削除:route del 本章の本文
ネイティブルーティングテーブル情報の表示:route
Gateway
Genmask
Flags
Metric
Ref
Use
Iface
192.168.1.228
*
255.255.255.255
UH
0
0
0
eth1
10.0.2.0
*
255.255.255.0
U
0
0
0
eth0
default
10.0.2.2
0.0.0.0
UG
0
0
0
eth0
#routeを直接入力して、defaultがデフォルトのルーティングであり、ethxがデータ外のインタフェースであるローカルルーティング情報を表示します.
ルーティングテーブルの追加:route add
Gateway
Genmask
Flags
Metric
Ref
Use
Iface
10.0.2.222
10.0.2.2
255.255.255.255
UGH
0
0
0
eth0
192.168.2.0
*
255.255.255.0
UG
0
0
0
eth1
192.168.1.228
*
255.255.255.255
UH
0
0
0
eth1
10.0.2.0
*
255.255.255.0
U
0
0
0
eth0
default
192.168.1.228
0.0.0.0
UG
0
0
0
eth1
default
10.0.2.2
0.0.0.0
UG
0
0
0
eth0
#最初のコマンドは、ネットワークセグメントを指定するゲートウェイです.
#2番目のコマンドは、ホストを指定するゲートウェイです.
#3番目のコマンドは、デフォルトのゲートウェイ出口を追加します.
ルーティングテーブルは上下に一致し、一致した場合は一致しません.
ルーティングテーブルの削除:route del
Gateway
Genmask
Flags
Metric
Ref
Use
Iface
192.168.1.228
*
255.255.255.255
UH
0
0
0
eth1
10.0.2.0
*
255.255.255.0
U
0
0
0
eth0
default
10.0.2.2
0.0.0.0
UG
0
0
0
eth0
明記しない限り、文章はすべてオリジナルで、CC BY-NC-SA 2.5許可を採用し、転載と引用は署名を保留し、リンク形式で原文の出所を明記する必要がある.
IT手記|http://www.itwhy.org/2011/06-26/368.html
スワップリンクブロガーファイル伝言ネットワーク構成|2011-06-26
Linux routeコマンドメモ
この章の要点
ネイティブルーティングテーブル情報の表示:route
[inbi@debian ~]#route
kernel IP routing table
destination Gateway
Genmask
Flags
Metric
Ref
Use
Iface
192.168.1.228
*
255.255.255.255
UH
0
0
0
eth1
10.0.2.0
*
255.255.255.0
U
0
0
0
eth0
default
10.0.2.2
0.0.0.0
UG
0
0
0
eth0
#routeを直接入力して、defaultがデフォルトのルーティングであり、ethxがデータ外のインタフェースであるローカルルーティング情報を表示します.
ルーティングテーブルの追加:route add
[inbi@debian ~]#route add -net 192.168.2.0 netmask 255.255.255.0 gw 192.168.1.228 dev eth1
[inbi@debian ~]#route add -host 10.0.2.222 gw 10.0.2.2 dev eth0
[inbi@debian ~]#route add default gw 192.168.1.228 dev eth1
[inbi@debian ~]#route
kernel IP routing table
destination Gateway
Genmask
Flags
Metric
Ref
Use
Iface
10.0.2.222
10.0.2.2
255.255.255.255
UGH
0
0
0
eth0
192.168.2.0
*
255.255.255.0
UG
0
0
0
eth1
192.168.1.228
*
255.255.255.255
UH
0
0
0
eth1
10.0.2.0
*
255.255.255.0
U
0
0
0
eth0
default
192.168.1.228
0.0.0.0
UG
0
0
0
eth1
default
10.0.2.2
0.0.0.0
UG
0
0
0
eth0
#最初のコマンドは、ネットワークセグメントを指定するゲートウェイです.
#2番目のコマンドは、ホストを指定するゲートウェイです.
#3番目のコマンドは、デフォルトのゲートウェイ出口を追加します.
ルーティングテーブルは上下に一致し、一致した場合は一致しません.
ルーティングテーブルの削除:route del
[inbi@debian ~]#route del -net 192.168.2.0 netmask 255.255.255.0 gw 192.168.1.228 dev eth1
[inbi@debian ~]#route del -host 10.0.2.222 gw 10.0.2.2 dev eth0
[inbi@debian ~]#route del default gw 192.168.1.228 dev eth1
[inbi@debian ~]#route
kernel IP routing table
destination Gateway
Genmask
Flags
Metric
Ref
Use
Iface
192.168.1.228
*
255.255.255.255
UH
0
0
0
eth1
10.0.2.0
*
255.255.255.0
U
0
0
0
eth0
default
10.0.2.2
0.0.0.0
UG
0
0
0
eth0
明記しない限り、文章はすべてオリジナルで、CC BY-NC-SA 2.5許可を採用し、転載と引用は署名を保留し、リンク形式で原文の出所を明記する必要がある.
IT手記|http://www.itwhy.org/2011/06-26/368.html