On Mon, Mar 1, 2010 at 14:06, Rob Simmons <[email protected]> wrote: > Joe, > Thanks for looking into this. Normally I wouldve just created a trunk port > and called it a day, but that was against the requirement and I've not used > a voice port in this way so I was confused. It'd be good to know if this was > IOS related or does this particular task need to be revised.
Hi Rob, I agree with you. This is pretty weird usage of voice VLAN feature, but... it works. Here is the example (done on ProctorLabs): Cat2: ! vlan 100 name VLAN-100 ! vlan 200 name VLAN-200 ! interface Vlan100 ip address 100.100.100.100 255.255.255.0 ! interface Vlan200 ip address 200.200.200.200 255.255.255.0 ! interface FastEthernet0/1 description R1 Fa0/1 switchport access vlan 100 switchport mode access switchport voice vlan 200 spanning-tree portfast trunk ! interface FastEthernet0/2 description R2 Gi0/1 switchport trunk encapsulation dot1q switchport trunk allowed vlan 100,200 switchport mode trunk spanning-tree portfast trunk ! R1: ! interface FastEthernet0/1 no ip address no shutdown ! interface FastEthernet0/1.100 encapsulation dot1Q 100 native ip address 100.100.100.1 255.255.255.0 ! interface FastEthernet0/1.200 encapsulation dot1Q 200 ip address 200.200.200.1 255.255.255.0 ! R2: ! interface GigabitEthernet0/1 no ip address no shutdown ! interface GigabitEthernet0/1.100 encapsulation dot1Q 100 ip address 100.100.100.2 255.255.255.0 ! interface GigabitEthernet0/1.200 encapsulation dot1Q 200 ip address 200.200.200.2 255.255.255.0 ! Test from R1: R1#ping 100.100.100.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 100.100.100.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms R1#ping 100.100.100.100 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 100.100.100.100, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms R1#ping 100.100.100.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 100.100.100.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms R1#ping 200.200.200.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 200.200.200.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms R1#ping 200.200.200.200 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 200.200.200.200, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms R1#ping 200.200.200.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 200.200.200.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms Test from R2: R2#ping 100.100.100.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 100.100.100.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms R2#ping 100.100.100.100 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 100.100.100.100, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms R2#ping 100.100.100.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 100.100.100.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms R2#ping 200.200.200.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 200.200.200.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms R2#ping 200.200.200.200 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 200.200.200.200, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms R2#ping 200.200.200.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 200.200.200.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms -- Marko Milivojevic - CCIE #18427 Senior Technical Instructor - IPexpert Mailto: [email protected] Telephone: +1.810.326.1444 Fax: +1.810.454.0130 R&S Video on Demand Demo: http://bit.ly/aFyrU4 _______________________________________________ For more information regarding industry leading CCIE Lab training, please visit www.ipexpert.com
