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을 사용하고 있습니다.
aah nice, 답변에 추가하고 나는 당신에게 V를 보상합니다
—
Lucas Kauffman
방송을 보내고 동시에 라우팅 루프를 피하려면 서브 인터페이스를 사용해야합니다.
—
MrLightBulp
show ip ospf interface Serial0/0? 이렇게 할 수는 있지만 프레임 릴레이를 통한 Cisco의 권장 구성 은 하위 인터페이스를 사용 하는 것 같습니다 .