ASA 5505+Cisco 2811 路由器

网络工程 路由 思科-ASA
2022-02-05 14:10:56

我为实验室购买了一些旧的网络设备,现在尝试通过连接到我的 Comcast 调制解调器来设置它。我有一个桥接模式的商务级调制解调器

0/0 - Global IP (Vlan2)
0/1 - 192.168.1.1 (Vlan10). DHCP is used on this device.
Static route 0.0.0.0 0.0.0.0 (Global IP Gateway).
Router EIGRP 90 (network 172.16.100.0 0.0.0.255)



Connected to port 0/1 of the 5505 is a Cisco 2811 Router
Port 0/0 is assigned 192.168.1.254.
Port 0/1 is assigned 172.16.100.1
Static Route of 0.0.0.0 0.0.0.0 192.168.1.1

Connected to port 0/1 of the 2811 is a Cisco 3550

请参阅下面的配置

我的问题是我可以从 3550 跟踪路由并且只能到达 172.16.100.1 如果我在 2811 上跟踪路由到外部,我可以到达任何我想要的地方。这似乎让我相信 2811 路由器存在问题。我错过了什么?DHCP 是 5505 上的问题吗?

思科 2811

interface FastEthernet0/0  
 ip address 192.168.1.254 255.255.255.0  
 duplex full  
 speed auto  
 no mop enabled  
!  
interface FastEthernet0/1  
 ip address 172.16.100.1 255.255.255.0  
 duplex auto  
 speed auto  
!  
interface Serial0/0/0    
no ip address  
shutdown  
!  
router eigrp 90  
 network 172.16.100.0 0.0.0.255  
!  
ip forward-protocol nd  
!  
no ip http server  
no ip http secure-server  
!  
ip route 0.0.0.0 0.0.0.0 192.168.1.1  

思科 3550

no service pad  
service timestamps debug datetime msec  
service timestamps log datetime msec  
service password-encryption  
!  
hostname Corp3550  
!  
!  
username admin privilege 15 secret 5 $1$2wiI$fG1Ywcao.75bbnacN.REI0  
!  
!  
no aaa new-model  
clock timezone EST -5  
clock summer-time EDT recurring  
authentication mac-move permit  
mls qos  
ip subnet-zero  
ip routing  
!  
!  
spanning-tree mode pvst  
spanning-tree etherchannel guard misconfig  
spanning-tree extend system-id  
!  
vlan internal allocation policy ascending  
!  
interface FastEthernet0/1  
 description Edge Port to Corp-2811  
 switchport access vlan 25  
 switchport mode access  
 spanning-tree portfast  
 spanning-tree bpduguard enable  
!  
interface Vlan1  
 ip address dhcp 
 ip address shutdown   
!  
interface Vlan10  
 description Vuepc Server Network  
 ip address 192.168.100.1 255.255.255.0  
 ip helper-address 192.168.100.3  
!  
interface Vlan25  
 description Transit Network  
 ip address 172.16.100.254 255.255.255.0  
!  
interface Vlan35  
 description Management Network  
 ip address 192.168.102.1 255.255.255.0  
!  
router eigrp 90  
 network 172.16.100.0 0.0.0.255  
 network 192.168.20.0  
 network 192.168.100.0  
 network 192.168.101.0  
 network 192.168.102.0  
 eigrp stub connected summary  
!  
ip classless  
ip route 0.0.0.0 0.0.0.0 172.16.100.1  
ip route 0.0.0.0 0.0.0.0 192.168.1.1 254  
ip http server  
ip http authentication local  
!  
ip radius source-interface Vlan10   
!  
ip sla enable reaction-alerts  
!  
control-plane  
1个回答

5505 对 172.16.100.0/24 一无所知。添加静态路由或修复您的 EIGRP 配置,以便路由器告知它。

IGRP 或 EIGRP 将更新发送到指定网络中的接口。此外,如果未指定接口的网络,则不会在任何 IGRP 或 EIGRP 更新中通告它。

[ EIGRP 命令]