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