Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: cscocscoPosted on 2008-03-21 at 17:13:19ID: 21184117
Hi!
--- ---------- ---
Routing should be done in the HP3500. Be sure the interfaces on the 2626 switches that are connected to the 3500 are tagged for voice VLAN. The same for the interfaces on the 3500 that connect to your 2626's. The 2626's are not routing. The default gateway for the voice VLAN should be the IP address you setup for the Voice VLAN on the 3500. The default gateway for the 10.x.x.x network should be the IP address you setup for the other network in the 3500.
Here's an example for an HP switch set up for routing between 802.1q VLAN's.
--------------------------
ip routing
vlan 1 <<connection to router>>
name "Router"
ip address 10.20.108.2 255.255.255.252
tagged 1-3,7-8
no untagged 4-6
ip proxy-arp
exit
vlan 2 <<Voice Network>>
name "Voice"
ip address 10.200.108.1 255.255.255.0
ip helper-address 10.20.108.1 <<address of the device providing DHCP for VoIP>>
tagged 1-3,7-8
ip proxy-arp
exit
vlan 3 <<Main Network>>
name "Main"
untagged 1-8
ip address 10.108.1.1 255.255.0.0
ip helper-address 10.108.1.10 <<address of the device providing DHCP for the regular network>>
ip proxy-arp
exit
--------------------------
Hope this helps...