cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
678
Views
0
Helpful
1
Replies

different vlans

maximusadonis
Level 1
Level 1

Hi,

i need to create two different vlans on my 4506 switch(ios based)....one will vlan dedicated for ipx traffic and one for ip traffic...<ipx for novell machines>, how do i do this..pls help.

Thanks & Regards

Max

1 Reply 1

paddyxdoyle
Level 6
Level 6

Hi Max,

I think it will be something like:

interface vlan 100

description IPX Traffic Only

no ip address

ipx encapsulation SAP

ipx network

no shutdown

interface vlan 101

description IP Traffic Only

ip address

no shutdown

Or you could have both IPX and IP running on a single interface:

interface vlan 100

description IPX/IP Traffic

ip address 10.0.0.1 255.255.255.0

ipx enapsulation SAP

ipx network 100001

no shutdown

You also need to create the layer 2 VLANs for your edge devices.

Can't remeber if you need to use the VLAN database command for this or whether its been depricated:

Try:

#vlan database

(vlan)# vlan 100 name IPX

(vlan)# vlan 101 name IP

(vlan)# apply

(vlan)# exit

#

if not its

(config)# vlan 100

(config-vlan)# name IPX

(config-vlan)# exit

(config)# vlan 101

(config-vlan)# name IP

(config-vlan)# exit

HTH

Paddy