IOSでインターフェースの設定をする場合のTips
- カテゴリ:
- Cisco
IOSでインターフェースの設定をする場合の小技です。まずインターフェースの設定のみを表示するにはshow runに続いてインターフェース名を指定します。
R1#show running-config interface f0/1 Building configuration... Current configuration : 115 bytes ! interface FastEthernet0/1 ip address 192.168.0.1 255.255.255.0 ip ospf priority 0 speed 100 full-duplex end |
この時にlinenumを追加すると行番号が表示されます。
R1#show running-config interface f0/1 linenum Building configuration... Current configuration : 115 bytes 1 : ! 2 : interface FastEthernet0/1 3 : ip address 192.168.0.1 255.255.255.0 4 : ip ospf priority 0 5 : speed 100 6 : full-duplex 7 : end |
特定のインターフェースの設定を消去するにはdefault interfaceコマンドを利用します。
R1(config)#default interface fastEthernet 0/1 Building configuration... Interface FastEthernet0/1 set to default configuration R1(config)#do sh run int f0/1 Building configuration... Current configuration : 73 bytes ! interface FastEthernet0/1 no ip address duplex auto speed auto end |
シリアルケーブルを利用する時にどちらがDCEかDTEかを確認するには、show controllersコマンドを利用します。
R3#show controllers serial 1/3 〜略〜 line state: up cable type : V.11 (X.21) DCE cable, received clockrate 2015232 base0 registers=0x3D000000, base1 registers=0x3D002000 mxt_ds=0x6737EC68, rx ring entries=78, tx ring entries=128 〜略〜 |
下記のようにincludeを併用すると見やすくなるでしょう。
R3#show controllers serial 1/3 | include DCE|DTE cable type : V.11 (X.21) DCE cable, received clockrate 2015232 |
インターフェースが多くあるときに役立つのがdescriptionコマンドです。任意の文字列を登録できるので、利用すると分かりやすくなります。
R3(config-if)#description PPP to R2 R3(config-if)#do sh int s1/3 Serial1/3 is up, line protocol is up Hardware is M4T Description: PPP to R2 Internet address is 23.23.23.3/24 〜略〜 |
コメント