Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need help vlan between cisco and HP 2

Status
Not open for further replies.

tamray

IS-IT--Management
Feb 8, 2005
43
0
0
US
I am working with an older Cisco 2900xl and a HP Procurve 3500yl.

I am trying to pass vlan 106 and 107 traffic from port 4 of the Procurve to port 24 on the Cisco. When things are set up correctly I expect to be able to ping the 10.x addresses from each switch, and other devices on the same subnet when attached to a vlan 106 port, and the same for vlan 107 devices. Ultimately, vlan 106, and 107 devices attached to the Cisco need to communicate to other devices on the same vlans across our WAN. We use port 1 of the Procurves to connect to the WAN. I have messed with the configs enough where they are broke. I would appreciate guidance in configuring each device correctly, so the vlans work properly.



The vlan info on the Cisco is: (procurve info is below)

vlan 106
!
vlan 107
name Codec
interface FastEthernet0/22
switchport access vlan 106
no ip address
!
interface FastEthernet0/23
switchport access vlan 106
no ip address
!
interface FastEthernet0/24
switchport access vlan 106
switchport mode trunk
no ip address
!
interface Vlan1
no ip address
no ip route-cache
shutdown
!
interface Vlan106
ip address 10.10.2.103 255.255.0.0
no ip route-cache

Procurve vlan info is:
vlan 1
name "DEFAULT_VLAN"
untagged 2-3,11-24
ip address Public IP 255.255.255.128
no untagged 1,4-10
exit
vlan 105
name "Router"
untagged 1
ip address 10.200.200.7 255.255.255.0
exit
vlan 106
name "LCTN_Private"
untagged 4-8
ip address 10.10.2.20 255.255.0.0
tagged 1
exit
vlan 107
name "Codec"
untagged 9-10
tagged 1
no ip address
exit
 
- remove the switchport access vlan 106 from f0/24 on the cisco
- on the hp vlan 106 tagged ethernet 4, vlan 107 tagged ethernet 4

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Should I also change the untagged ports for vlan 106 and 107 to tagged?
 
The switchport access command on the cisco should not matter as the port is hardcoded to trunk . The way it is now the cisco will trunk all vlans 1-4094 with a native vlan of 1 . The HP would have to be set as vlan 1 untagged and 106 and 107 as tagged . I don't have any experience with HP but if you set the HP like that it should work.
 
The switchport access command on the cisco should not matter as the port is hardcoded to trunk
you're right, i stated for the OP to remove that line just to clean up the config not necessarily because it is causing any issues.

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Yes, that's how the HP switch will work.

Just remember:

- a Cisco port is either ACCESS *or* TRUNK
- On an ACCESS port, HP "UNTAGGED" = CISCO "ACCESS VLAN"
- On a TRUNK, HP "UNTAGGED" = CISCO "NATIVE VLAN"
- a Cisco TRUNK with no NATIVE VLAN specified has VLAN1 as the NATIVE VLAN

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top