CCNA : 프레임 릴레이를 통한 OSPF 조정


2

framerelay를 설정하고 R1에서 R2로 성공적으로 핑할 수 있습니다. 내가 겪고있는 문제는 OSPF 광고가 없다는 것입니다. IP를 매핑 할 때 브로드 캐스트를 명시 적으로 언급했습니다. 내 구성은 다음과 같습니다.

R1 :

interface Serial0/0
 ip address 10.10.10.1 255.255.255.252
 encapsulation frame-relay
 ip ospf network broadcast
 ip ospf priority 0
 no keepalive
 serial restart-delay 0
 clock rate 64000
 frame-relay map ip 10.10.10.2 201 broadcast

router ospf 1
 log-adjacency-changes
 network 10.10.10.0 0.0.0.3 area 0

R2 :

interface Loopback0
 ip address 10.12.0.1 255.255.255.0

interface Serial0/0
 ip address 10.10.10.2 255.255.255.252
 encapsulation frame-relay
 ip ospf network broadcast
 ip ospf priority 0
 no keepalive
 serial restart-delay 0
 frame-relay map ip 10.10.10.1 201 broadcast

router ospf 1
 log-adjacency-changes
 network 10.10.10.0 0.0.0.3 area 0
 network 10.12.0.0 0.0.0.255 area 0

라우팅 정보를 요청할 때 :

R1#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     10.0.0.0/30 is subnetted, 1 subnets
C       10.10.10.0 is directly connected, Serial0/0

왜 작동하지 않는지 이해하지 못합니다. GNS3을 사용하고 있습니다.


1
트래픽을 캡처하여 OSPF의 인접 광고가 링크를 통해 광고를 만들고 있는지 확인하고 show ip ospf interface Serial0/0? 이렇게 할 수는 있지만 프레임 릴레이를 통한 Cisco의 권장 구성 은 하위 인터페이스를 사용 하는 것 같습니다 .
Shane Madden

aah nice, 답변에 추가하고 나는 당신에게 V를 보상합니다
Lucas Kauffman

방송을 보내고 동시에 라우팅 루프를 피하려면 서브 인터페이스를 사용해야합니다.
MrLightBulp
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.