2015年1月22日木曜日

ネットワーク機器の config を行う(routing追加)

ルーティングの追加を行います。

追加するルーティング情報
ネットワークアドレス: 10.0.0.0/16
ゲートウェイアドレス: 172.16.250.250
インターフェース: ether1

設定手順
hostname > enable
hostname #
hostname #
hostname # conf  t (configure terminal)
hostname (config) #
hostname (config) #
hostname (config) # show  ip  route
Destination       Mask              Gateway          Interface   Source
default           0.0.0.0           12.34.56.95      ether2      static
12.34.56.64       255.255.255.224   0.0.0.0          ether2      interface
172.16.0.0        255.255.0.0       172.16.250.250   ether1      static
172.17.0.0        255.255.0.0       172.16.250.250   ether1      static
172.16.250.0      255.255.255.0     0.0.0.0          ether1      interface
hostname (config) #
hostname (config) #
hostname (config) # ip  route  10.0.0.0  /16  172.16.250.250  ether1
hostname (config) #
hostname (config) #
hostname (config) # show ip route
Destination       Mask              Gateway          Interface   Source
default           0.0.0.0           12.34.56.95      ether2      static
10.0.0.0          255.255.0.0       172.16.250.250   ether1      static
12.34.56.64       255.255.255.224   0.0.0.0          ether2      interface
172.16.0.0        255.255.0.0       172.16.250.250   ether1      static
172.17.0.0        255.255.0.0       172.16.250.250   ether1      static
172.16.250.0      255.255.255.0     0.0.0.0          ether1      interface
hostname (config) #
hostname (config) #
hostname (config) # wr  mem (write memory)
Saving configuration file ... Done!
hostname (config) #
hostname (config) #
hostname (config) #

修正手順
hostname (config) # no  ip  route  10.0.0.0  /16  172.16.250.250  ether1
※コマンドの頭に no を付ける。

0 件のコメント:

コメントを投稿