DynagenでCCIEを目指す
20100318 frame-relay フレームリレースイッチをDynamipsで設定
最終更新:
it_certification
-
view
概要
フレームリレースイッチの設定をDynamipsで行う場合
構成
- 構成図

- netファイル
ghostios = True sparsemem = True model = 3660 [localhost] [[3660]] image = C:\Program Files\Dynamips\images\C3660-I-Mz_20121-5_20T8.bin ram = 128 [[ROUTER R1]] s1/0 = SW 1 [[ROUTER R2]] s2/0 = SW 2 [[FRSW SW]] 1:100 = 2:200
- 設定
- R1に投入した設定
R1(config)#int serial 1/0 R1(config-if)#ip address 192.168.1.1 255.255.255.0 R1(config-if)#no shutdown R1(config-if)#encapsulation frame-relay R1(config-if)#frame-relay interface-dlci 100
- R2に投入した設定
R2(config)#int serial 2/0 R2(config-if)#ip address 192.168.1.2 255.255.255.0 R2(config-if)#no shutdown R2(config-if)#encapsulation frame-relay R2(config-if)#frame-relay interface-dlci 200
検証1 疎通確認
R1からR2にpingを送信
R1#ping 192.168.1.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.1.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/30/32 ms
R2からR1にpingを送信
R2#ping 192.168.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 4/32/48 ms
添付ファイル