Here is the scenario:
I have three locations.
Two of the locations have dual T-1s onsite that are point-to-point. I have a router at each location and the routers talk to each other using Multilink PPP. At one of these locations there is also a fiber connection to a building nearby. So using the 2600 router I have at that location it is plugged into a catalyst 2950 switch. That switch is plugged into the vendor's switch which has the direct fiber link to the other site. Here is the issue: When I am on the 2950 I can ping the other site via the fiber link with no issues. However, I cannot ping the router which I have trunked to the fast ethernet port. I need to have connectivity over this fiber link AND also ping the router plus the other remote site across the T-1s. Here is the config for the 2950 switch:
!
version 12.1
no service pad
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
ip subnet-zero
!
vtp mode transparent
!
spanning-tree mode pvst
no spanning-tree optimize bpdu transmission
spanning-tree extend system-id
!
vlan 300
!
interface FastEthernet0/1
description [Trunk-to-Router]
switchport mode trunk
switchport nonegotiate
duplex full
spanning-tree portfast
!
interface FastEthernet0/2
!
interface FastEthernet0/3
switchport access vlan 300
switchport mode access
!
interface FastEthernet0/4
!
interface FastEthernet0/5
!
interface FastEthernet0/6
!
interface FastEthernet0/7
!
interface FastEthernet0/8
!
interface FastEthernet0/9
!
interface FastEthernet0/10
!
interface FastEthernet0/11
!
interface FastEthernet0/12
!
interface FastEthernet0/13
!
interface FastEthernet0/14
!
interface FastEthernet0/15
!
interface FastEthernet0/16
!
interface FastEthernet0/17
!
interface FastEthernet0/18
!
interface FastEthernet0/19
!
interface FastEthernet0/20
!
interface FastEthernet0/21
!
interface FastEthernet0/22
!
interface FastEthernet0/23
!
interface FastEthernet0/24
!
interface Vlan1
ip address 10.10.10.2 255.255.255.0
no ip route-cache
shutdown
!
interface Vlan300
ip address 192.168.147.250 255.255.255.0
no ip route-cache
!
ip default-gateway 10.10.10.1
ip http server
and here is the config for the 2600 router:
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
ip subnet-zero
!
interface Loopback0
ip address 10.3.3.3 255.255.255.248
!
interface Multilink1
ip address 10.3.1.1 255.255.255.248
ppp multilink
ppp multilink group 1
!
interface FastEthernet0/0
description [Trunk-to-2950]
ip address 10.10.10.1 255.255.255.0
ip route-cache flow
speed auto
full-duplex
!
interface FastEthernet0/0.2
encapsulation dot1Q 2
ip address 10.10.11.1 255.255.255.0
!
interface Serial0/0
no ip address
encapsulation ppp
service-module t1 timeslots 1-24
ppp multilink
ppp multilink group 1
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/1
no ip address
encapsulation ppp
service-module t1 timeslots 1-24
ppp multilink
ppp multilink group 1
!
router eigrp 1
network 10.3.1.0 0.0.0.7
network 10.3.2.0 0.0.0.7
network 10.3.3.0 0.0.0.7
auto-summary
!
ip http server
ip classless
!