レス
元トピ
次レスタイトル
Re: 問題ID: 12717 フレームリレーにおけるDLCIとは?
フォーラム
最強WEB問題集CCNA
投稿ユーザ(投稿日)
(2013/11/20)本文
以下の構成でフレームリレーネットワークを作ってみてください。
それぞれのルータの接続がフレームリレースイッチによって中継されますが、
論理回線(=DLCI)がローカルルータ→リモートルータの識別用ではないのがわかると思います。
・めんどくさいのでInverseARP有効にしてます
・それぞれのIPアドレスがping疎通可能か確認してみてください
FRSW:
[code]
configure terminal
!
frame-relay switching
!
interface Serial1/1
description *** to R1 ***
no ip address
encapsulation frame-relay
clock rate 2000000
frame-relay intf-type dce
frame-relay route 101 interface Serial1/2 201
no shutdown
!
interface Serial1/2
description *** to R2 ***
no ip address
encapsulation frame-relay
clock rate 2000000
frame-relay intf-type dce
frame-relay route 201 interface Serial1/1 101
frame-relay route 203 interface Serial1/3 301
no shutdown
!
interface Serial1/3
description *** to R3 ***
no ip address
encapsulation frame-relay
clock rate 2000000
frame-relay intf-type dce
frame-relay route 301 interface Serial1/2 203
no shutdown
!
end
[/code]
R1:
[code]
configure terminal
!
hostname R1
!
interface Serial0/0
ip address 192.168.12.1 255.255.255.0
encapsulation frame-relay
frame-relay interface-dlci 101
no shutdown
!
end
[/code]
R2:
[code]
configure terminal
!
hostname R2
!
interface Serial0/0
encapsulation frame-relay
no ip address
no shutdown
!
interface Serial0/0.1 point-to-point
ip address 192.168.12.2 255.255.255.0
frame-relay interface-dlci 201
!
interface Serial0/0.3 point-to-point
ip address 192.168.23.2 255.255.255.0
frame-relay interface-dlci 203
!
end
[/code]
R3:
[code]
configure terminal
!
hostname R3
!
interface Serial0/0
ip address 192.168.23.3 255.255.255.0
encapsulation frame-relay
frame-relay interface-dlci 301
no shutdown
!
end
[/code]
レス一覧
元トピ
次レス
Copyright (c) 2010
Ping-t All rights reserved.