Switches, Hubs, and Modems
1753485 Members
4728 Online
108794 Solutions
New Discussion

Hp A5500 and procurve 2610

 
oscarfourie
Occasional Contributor

Hp A5500 and procurve 2610

I am trying to set up vlans between HP a5500 and a hp procurve 2610. i am going to use the a5500 as the core switch and the procurve 2610 as the access switch. i am not too sure how to do the vlan or the intervlan routing.

there is going to be 10 vlans tat will be in use.

 

can anybody help?

4 REPLIES 4
Fredrik Lönnman
Honored Contributor

Re: Hp A5500 and procurve 2610

Set ut the vlan and SVIs on the 5500 and trunk the VLANs to the 2610.

---
CCIE Service Provider
MASE Network Infrastructure [2011]
H3CSE
CCNP R&S

oscarfourie
Occasional Contributor

Re: Hp A5500 and procurve 2610

ok but what would the config look like? is ther any configuration guides for this?

Fredrik Lönnman
Honored Contributor

Re: Hp A5500 and procurve 2610

Vince_Whirlwind
Trusted Contributor

Re: Hp A5500 and procurve 2610

vlan 100

   name DATA

vlan 200

   description VOICE

vlan 250

   description ADMIN

 

interface Vlan-interface100
   ip address 10.1.100.0 24
interface Vlan-interface200
   ip address 10.1.200.0 24
interface Vlan-interface250
   ip address 10.1.250.0 24


interface Bridge-Aggregation10
 description Trunk_to_Access
 port link-type trunk
 port trunk permit vlan all
 link-aggregation mode dynamic

interface Ten-GigabitEthernet1/0/1
 description Downlink#1
 port link-type trunk
 port trunk permit vlan all
 port link-aggregation group 1
 
interface Ten-GigabitEthernet1/0/2
 description Downlink#2
 port link-type trunk
 port trunk permit vlan all
 port link-aggregation group 1

 

The procurve is similar, minus the IPs on the VLAN interfaces, and you create the trunk by doing:

   trunk 23 trk1 lacp

   trunk 24 trk1 lacp

   vlan 100 tagged trk1

   vlan 200 tagged trk1

   vlan 250 tagged trk1

 

 

If the link-aggregation doesn't work, change the H3C side to "static" in stead of dynamic, and the Procurve side to "trunk" instead of lacp.