Ciscoルータによるフレームリレースイッチ
フレームリレー網のフレームリレースイッチは、複数のシリアルインターフェースを持つ
Cisco ルータで
作り上げることが可能です。ハブ&スポーク構成の3拠点以上で接続することを想定した検証が理想的
であることから、4ポートのシリアルモジュールとCisco2600/3600シリーズをゲットすることがお勧めです。
先ずルータをフレームリレースイッチとして動作させるため、FRスイッチングをグローバルで定義します。
Cisco(config)# frame-relay switching
|
次に、インターフェース上でフレームリレーのカプセル化とフレームリレーDCEスイッチの定義をします。
Cisco(config)# interface Serial0/0
Cisco(config-if)# encapsulation frame-relay
Cisco(config-if)# frame-relay intf-type dce
|
次に、フレームリレー網上のDCEスイッチとして動作するように、クロックレート供給の定義をします。
Cisco(config-if)# clockrate clcokrate
|
最後に、PVCスイッチングの為に、DLCI と出力インターフェースのマッピングテーブルを定義します。
[ in-dlci ] 番号のフレームが着信した時、[
out-interface-type number] のインターフェースから
[ out-dlci ] 番号でフレームを送信するという設定です。PVC確立の為に両方向で設定が必要です。
Cisco(config-if)# frame-relay route in-dlci interface out-interface-type number out-dlci
|
ハブ & スポーク トポロジー ( フレームリレースイッチコンフィグ例
)

上図を論理構成として、Ciscoルータをフレームリレースイッチにした場合の物理構成は以下となります。

今回の構成を実現する為のCiscoルータによるフレームリレースイッチのコンフィグを以下に紹介します。
FR-Switch(config)# frame-relay switching
FR-Switch(config)# interface Serial 0/0
FR-Switch(config-if)# no ip address
FR-Switch(config-if)# encapsulation frame-relay
FR-Switch(config-if)# frame-relay intf-type
dce
FR-Switch(config-if)# clock rate 192000
FR-Switch(config-if)# frame-relay route
16 interface Serial0/1 16
FR-Switch(config-if)# frame-relay route
17 interface Serial0/2 16
FR-Switch(config-if)# frame-relay route
18 interface Serial0/3 16
FR-Switch(config)# interface Serial 0/1
FR-Switch(config-if)# no ip address
FR-Switch(config-if)# encapsulation frame-relay
FR-Switch(config-if)# frame-relay intf-type
dce
FR-Switch(config-if)# clock rate 64000
FR-Switch(config-if)# frame-relay route
16 interface Serial0/0 16
FR-Switch(config)# interface Serial 0/2
FR-Switch(config-if)# no ip address
FR-Switch(config-if)# encapsulation frame-relay
FR-Switch(config-if)# frame-relay intf-type
dce
FR-Switch(config-if)# clock rate 64000
FR-Switch(config-if)# frame-relay route
16 interface Serial0/0 17
FR-Switch(config)# interface Serial 0/3
FR-Switch(config-if)# no ip address
FR-Switch(config-if)# encapsulation frame-relay
FR-Switch(config-if)# frame-relay intf-type
dce
FR-Switch(config-if)# clock rate 64000
FR-Switch(config-if)# frame-relay route
16 interface Serial0/0 18
|
Resource : フレームリレーに関するFAQ Configuring Frame-Relay Frame-Relay Index BCRAN試験認定テキスト第2版
|