- Posts: 1
- Thank you received: 0
3550 questions
- jdholbrook
- Topic Author
- Offline
- New Member
I've come upon a problem that needs more smarts that I posses.
I'm the ET (Electronic Tech) here on an oil rig off the coast of Africa.
I've got a pretty good understanding of networks and computers (MCSE) but am very weak on Cisco and complex routing.
My situation is that we've just left the shipyard and all our equipment has been upgraded. I've laid in some fiber to various places and have a 4 vlans setup and all feeding into our satellite modem.
What I want to do is use an old 3550 to setup a network for some IPX applications we have. Yes IPX!! These are dos based applications even! Anyway.. I want to set the 3550 up as an IPX switch basically.
Overkill I know but when your orders take 6 months to a year to be delivered you have to improvise. The 3550 is the only thing I've got left with multiple ports in it.
I've gone in and cleared the config.text and have the router set to factory defaults.
Is there a way to turn the 3550 into a switch capable of passing IPX?
This will be temporary until I can get home and pick up a $30 switch to bring back.
Thanks for any and all help
James
- broadcaststorm
- Offline
- Junior Member
- Posts: 79
- Thank you received: 0
To turn a 3550 interface from a switch interface to a routing interface, go to the interface command and simply type no switchport. This turns the interface in to a router interface.
Below is the show run output from a 3560 which has had no switchport configured on int fa 0/1...
Cisco_3560#sho run
Building configuration...
Current configuration : 1102 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Cisco_3560
!
interface FastEthernet0/1
no switchport
no ip address
duplex auto
speed auto
!
Now you can add an IP address to the interface, switch on IP routing (at global config) and configure EIGRP.
- broadcaststorm
- Offline
- Junior Member
- Posts: 79
- Thank you received: 0
Cisco_3560#sho run
Building configuration...
Current configuration : 1115 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Cisco_3560
!
!
ip routing
!
!
interface FastEthernet0/1
no switchport
no ip address
duplex auto
speed auto
!
Don't forget to do that IF you want to use the switch as a router as well as a switch
- broadcaststorm
- Offline
- Junior Member
- Posts: 79
- Thank you received: 0
Cisco_3560#sho run
Building configuration...
Current configuration : 1197 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Cisco_3560
!
ip routing
!
!
interface FastEthernet0/1
no switchport
ip address 192.168.10.1 255.255.255.0
duplex auto
speed auto
!
<output truncated>
!
router eigrp 100
network 192.168.10.0
no auto-summary
!
ip classless
!
line con 0
line vty 0 4
login
!
end