よく使う
sh int | i (FastEthernet|0 packets input)
または、GigabitEthernetでも同じで、どの種類のインターフェイスをチェックしたいか。
sh int
(つまりshow interfaces
)すべてのインターフェースのsteステータスの巨大なリストを提供します
- パイプ記号
|
はフィルタリングに使用できますが、検索式でも使用できます
| i
(for include
)次の検索式に一致する出力をフィルタリングします
- 私は
(...|...)
、2つの条件に一致するために使用します。インターフェイス名と表示したいステータスです。ここでは、この「または」式のような正規表現を使用できます
出力は次のようになります。
...
FastEthernet1/0/31 is up, line protocol is up (connected)
95445640 packets input, 18990165053 bytes, 0 no buffer
FastEthernet1/0/32 is up, line protocol is up (connected)
FastEthernet1/0/33 is up, line protocol is up (connected)
FastEthernet1/0/34 is down, line protocol is down (notconnect)
0 packets input, 0 bytes, 0 no buffer
FastEthernet1/0/35 is down, line protocol is down (notconnect)
FastEthernet1/0/36 is up, line protocol is up (connected)
FastEthernet1/0/37 is down, line protocol is down (notconnect)
0 packets input, 0 bytes, 0 no buffer
...
表現が0で終わる数字と一致する場合でも、実際には0パケットが入力され、候補が表示されるようになりました。より完璧にできますが、覚えやすいことも利点です。各0パケット入力行の直前のインターフェイス名が私の候補です。
- 実際に使用されていない場合は、選択した各インターフェイスを確認します
sh int <name>
- 時々、カウンターをクリアするとよいでしょう:
clear counters [type number]
未使用のスイッチポートをシャットダウンしたままにしておくことをお勧めします。そのためsh ip int bri
、などを使用して簡単に識別できます。また、以前に完全に遮断されたスイッチポートを使用する場合、問題は発生しません。