CISCO IOS 11.0.x のコマンド


Configuration を調べる。

< IOS 11.0 >   show startup-config
< IOS 10.x >   show config
boot した瞬間に設定される configuration を見る。
< IOS 11.0 >   show running-config
< IOS 10.x >   write term
現在の configuration を見る
< IOS 11.0 >   copy running-config startup-config
< IOS 10.x >   write memory
現在の configuraton を startup-configuration に書き込む

BGP 関係

show ip bgp summary
現在の peering 状態を調べる
show ip bgp
現在 router が所持している BGP 経路テーブルを見る
show ip bgp regex ^65500
現在の経路テーブルの中で、65500 から来ている経路を見る
(これは filterで選別された後のものです。ですから、少なくとも 1度はfilterをoffにしてshow ip bgp regex ^65510 を実行しましょう)
show ip bgp regex 65523$
現在の経路テーブルの中で 65523 が終点になる経路を見る
show ip bgp regex 65510
現在の経路テーブルの中で、65510 が含まれている経路を見る
show ip bgp 192.168.129.0
現在の経路テーブルの中で、192.168.129.0 に至る経路中の AS 番号 を見る
他にもいろいろコマンドやオプションがあります。詳しい事は manual を 見てください。

少なくとも 1 度くらいは CISCO Manual の IP Routing Protocols Commands を読んでおいたほうが良いでしょう。