Link to home
Start Free TrialLog in
Avatar of e_miller53
e_miller53

asked on

Cisco Routing

I currently am using a 2621 cisco router to route traffice for two lans connected via fiber.  Currently the 2621 is configured with a fastethernet port for each lan.  Each of these ports is in turn connected to a 2950 which recieves the fiber from one lan and is dirrectly connected to the other.  My problem is I would like to free up one of the fastethernet ports for something else.  I attempted to create two subinterfaces on one of the fastethernet ports two accomidate both of the lans.  Problem is once i did this the lan connected via fiber is unreachable.  My cisco knowledge is limited and I'm not sure where I am going wrong.  Below is the config for the two ports on the 2621 as is.


Building configuration...

Current configuration : 3229 bytes
!
version 12.2
service timestamps debug datetime msec localtime
service timestamps log datetime msec localtime
service password-encryption
!
hostname r1.ECB.Ewald
!
logging buffered 16000 debugging!
ip subnet-zero
!
!
ip dhcp excluded-address 192.168.3.1 192.168.3.59
ip dhcp excluded-address 192.168.3.210 192.168.3.254
ip dhcp excluded-address 192.168.3.119 192.168.3.189
!
ip dhcp pool CLIENT
   network 192.168.3.0 255.255.255.0
   default-router 192.168.3.1
   netbios-name-server 192.168.1.26
   dns-server 69.130.45.228
   lease 2
!
frame-relay switching
call rsvp-sync
!
!
!
!
!
!
!
!
interface FastEthernet0/0
 description Ewald Chevy Buick Local LAN
 ip address 192.168.3.1 255.255.255.0
 duplex auto
 speed auto
!
!
interface FastEthernet0/1
 description Ewald C/P VLAN
 ip address 192.168.4.1 255.255.255.0
 no ip redirects
 duplex auto
 speed auto
!
router eigrp 1
 passive-interface FastEthernet0/1
 network 10.0.0.0
 network 192.168.3.0
 network 192.168.4.0
 network 192.168.255.0
 no auto-summary
 no eigrp log-neighbor-changes
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.255.5
ip route 10.227.35.0 255.255.255.0 10.230.108.252
ip route 10.230.108.0 255.255.255.0 192.168.3.10
ip route 172.16.5.0 255.255.255.0 192.168.3.10
ip route 192.168.4.0 255.255.255.0 192.168.3.16
ip route 192.168.10.1 255.255.255.255 192.168.255.5
ip route 198.208.187.154 255.255.255.255 192.168.255.5
no ip http server
!
!
dial-peer cor custom
!

r1.ECB.Ewald#

And the configuration of the two ports on the 2950 that are connected to the 2621


interface FastEthernet0/1
 description to F0/1 Ewald Chev c2621
 no ip address
 spanning-tree portfast
!
interface FastEthernet0/2
 description to F0/0 Ewald Chev c2621
 no ip address
 spanning-tree portfast
!

Any suggestions would be greatly appreciated.  Please let me know if more information is needed.
 
Avatar of Les Moore
Les Moore
Flag of United States of America image

Well, you're pretty much stuck with the working config.
The switches need to be a  trunk port to connect to sub-interfaces of the router, and so you need to create separate vlans for each of the connected networks/2950 switches, then connect them together over a trunk port...
Avatar of e_miller53
e_miller53

ASKER

I apoloigize ahead of time agiain my cisco knowledge is very limited.  This can or can't be done with the equipment I am currently using?  Could i create two vlans on the 2950 and then use one port as a trunk port like you mentioned to connect to the 2621 and carry the traffice for both LANS?  If so can you give some info on how to configure that.
ASKER CERTIFIED SOLUTION
Avatar of gcl_hk
gcl_hk

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I'm with you on creating the subinterfaces, assigning a vlan to the 2950 switch, and setting the port on the 2950 switch that connects to the 2621 router to trunk.  All of the traffic from the 4 subnet comes across fiber on port 25 of the 2950, so that would be the only port i need to set for switchport access vlan 2 correct?