OSPF その2




検証内容
・なんかいろいろ変えられるパラメータをしらべて検証
・R1 の s1/0 を passive-interface にしたらどうなるか


またこの設定からです。

R1
interface Loopback0
 ip address 1.1.1.1 255.255.255.255
!
interface Serial1/0
 ip address 192.168.0.1 255.255.255.252
!
router ospf 1
 network 1.1.1.1 0.0.0.0 area 0
 network 192.168.0.0 0.0.0.3 area 0

R2
interface Loopback0
 ip address 2.2.2.2 255.255.255.255
!
interface Serial1/0
 ip address 192.168.0.2 255.255.255.252
!
router ospf 1
 network 2.2.2.2 0.0.0.0 area 0
 network 192.168.0.0 0.0.0.3 area 0

とりあえず、show ip ospf でみれる下記パラーメータの意味と調整できるかがんばる。

 Initial SPF schedule delay 5000 msecs
 Minimum hold time between two consecutive SPFs 10000 msecs
 Maximum wait time between two consecutive SPFs 10000 msecs
 Incremental-SPF disabled
 Minimum LSA interval 5 secs
 Minimum LSA arrival 1000 msecs
 LSA group pacing timer 240 secs
 Interface flood pacing timer 33 msecs
 Retransmission pacing timer 66 msecs


説明はここに載ってますね。
http://www.cisco.com/cisco/web/support/JP/docs/SW/LANSWT-Access/CAT1600SWT/UG/001/iro_osp3.html?bid=0900e4b1825ae7c3

Initial SPF schedule delay delay 5000 msecs
SPF 計算の遅延時間(秒単位)。
変更方法:timers throttle spf spf-start spf-hold spf-max-wait

Minimum hold time between two consecutive SPFs 10000 msecs
連続する SPF 計算間の最小ホールド時間(ミリ秒単位)。
変更方法:timers throttle spf spf-start spf-hold spf-max-wait

Maximum wait time between two consecutive SPFs 10000 msecs
連続する SPF 計算間の最大ホールド時間(ミリ秒単位)。
変更方法:timers throttle spf spf-start spf-hold spf-max-wait

Incremental-SPF disabled
増分 SPF 計算のステータス。
変更方法:わからん

Minimum LSA interval 5 secs
リンクステート アドバタイズメント間の最小間隔(秒単位)。
変更方法:わからん

Minimum LSA arrival 1000 msecs
OSPFネイバーから受け取るLSAの収集間隔を変化させます。
設定範囲は0から600,000ミリ秒で、デフォルトが1,000ミリ秒です。
変更コマンド: timers lsa arrival 8000

LSA group pacing timer 240 secs
設定されている LSA グループ ペーシング タイマー(秒単位)。
OSPFにおけるネイバーからのLSAの収集、チェックサム、エージングの間隔を変化させます。
設定可能範囲は10〜1800秒で、デフォルトが240秒です。
変更方法:R1(config-router)# timers pacing lsa-group 300

Interface flood pacing timer 33 msecs
設定されている LSA フラッド ペーシング タイマー(ミリ秒単位)。
変更方法:R1(config-router)# timers pacing flood 66

Retransmission pacing timer 66 msecs
設定されている LSA 再送信ペーシング タイマー(ミリ秒単位)。
変更方法:R1(config-router)# timers pacing retransmission 99

参考
実にヘタれたネットワークエンジニア
http://kakurehetare.blog117.fc2.com/blog-entry-104.html
(CCIEワークブックを解説してくれてるサイト)


更新日:2012年8月25日
TOPに戻る