我通过帧中继设置了与 EIGRP 的背靠背连接,下面提到了使用 GNS3 的设备连接设置。
问题是:我正在通过帧中继配置 EIGRP,但它没有在show ip route
命令输出下显示 EIGRP 邻居。请帮我解决一下..
这些是R1
和之间的路由器上的配置R2
;我删除了 keepalives 并在帧中继中使用相同的 DLCI。
R1:
conf t
int se0/0
ip add 131.1.12.1 255.255.255.0
encapsulation frame-relay
no keepavlive
frame-relay map ip 131.1.12.2 100
no sh
router eigrp 100
network 131.1.12.0 0.0.0.255
R2:
conf t
int se0/0
ip add 131.1.12.2 255.255.255.0
encapsulation frame-relay
no keepavlive
frame-relay map ip 131.1.12.1 100
int fa1/0
ip add 131.1.23.2 255.255.255.0
no sh
router eigrp 100
net 131.1.12.0 0.0.0.255
net 131.1.23.0 0.0.0.255
one.time 的回答后更新:
感谢您的回复。
我有两个问题。
1)我已经按照您的指导完成了配置,现在可以正常工作了。但问题是我无法从路由器本身和同一个路由器 ping 任何路由器自己的接口,我可以 ping 其他邻居。提到了下面的一个路由器配置和 ping 结果。
R2:-
interface Loopback0
ip address 2.2.2.2 255.0.0.0
!
interface Serial0/0
ip address 131.1.12.2 255.255.255.0
encapsulation frame-relay
serial restart-delay 0
frame-relay map ip 131.1.12.1 100 broadcast
!
interface FastEthernet1/0
ip address 131.1.23.2 255.255.255.0
duplex auto speed auto
!
router eigrp 100
network 2.0.0.0 0.0.0.0
network 2.0.0.0
network 131.1.12.0 0.0.0.255
network 131.1.23.0 0.0.0.255
no auto-summary
Ping 结果:-
R2#ping 131.1.23.1
Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 131.1.23.1, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
R2#ping 131.1.23.2
Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 131.1.23.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
R2#
R2#
R2#ping 131.1.12.2
Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 131.1.12.2, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
R2#
R2#ping 131.1.12.1
Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 131.1.12.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/36/56 ms
R2#
2) 我想设置我的设备,如:--R2 和 R3 的接口应该配置在 vlan 23 中。-R1 和 R2、R3 和 R4 应该以帧中继多点方式配置,但不要使用子-接口来完成这个任务。