chrisstyles
MIS
- Sep 6, 2000
- 183
Just though I would share this..
Mitel preferred setup for Cisco Switches, is to set the ports up as such..
Taken from a Cisco 6500 but works with most. In this example Vlan 50 is the Data and 60 is the voice.
interface FastEthernet2/1
no ip address
mls qos trust cos
switchport
switchport mode trunk
switchport trunk native vlan 50
spanning-tree portfast
HOWEVER, the following works better.
interface FastEthernet2/1
no ip address
mls qos trust cos
switchport
switchport access vlan 50
switchport voice vlan 60
spanning-tree portfast
Explanation..
In the first example (Mitel Preferred) we set the port into trunk mode and tell the switch that any untagged traffic is to be placed on the (native) vlan 50. Tagged traffic will be placed on the vlan for which it already has a vlan tag. This is set by the phones DHCP option.
In the second example we set the port up to only allow traffic on Vlan 50 (data) unless it is tagged as voice. Then it is to be placced on the voice vlan 60.
The dirrence is that Cisco reccomeend minimising of the number of Trunk ports. They are only supposed to be used for uplink and servers etc. Setting every port in a large chassis to trunk casues problems on the backplane and in our case caused the switch to disconnect its fabric module EVERY time a phone was plugged in. We had 368 ports in the same chassis set to trunk.
Changing this config also caused an increase in the speed the phone booted.
Has anyone else got experience of a 3300 over a large chassis switch?
Chris Styles
NT4/2000 MCSE
Mitel preferred setup for Cisco Switches, is to set the ports up as such..
Taken from a Cisco 6500 but works with most. In this example Vlan 50 is the Data and 60 is the voice.
interface FastEthernet2/1
no ip address
mls qos trust cos
switchport
switchport mode trunk
switchport trunk native vlan 50
spanning-tree portfast
HOWEVER, the following works better.
interface FastEthernet2/1
no ip address
mls qos trust cos
switchport
switchport access vlan 50
switchport voice vlan 60
spanning-tree portfast
Explanation..
In the first example (Mitel Preferred) we set the port into trunk mode and tell the switch that any untagged traffic is to be placed on the (native) vlan 50. Tagged traffic will be placed on the vlan for which it already has a vlan tag. This is set by the phones DHCP option.
In the second example we set the port up to only allow traffic on Vlan 50 (data) unless it is tagged as voice. Then it is to be placced on the voice vlan 60.
The dirrence is that Cisco reccomeend minimising of the number of Trunk ports. They are only supposed to be used for uplink and servers etc. Setting every port in a large chassis to trunk casues problems on the backplane and in our case caused the switch to disconnect its fabric module EVERY time a phone was plugged in. We had 368 ports in the same chassis set to trunk.
Changing this config also caused an increase in the speed the phone booted.
Has anyone else got experience of a 3300 over a large chassis switch?
Chris Styles
NT4/2000 MCSE