HPE Aruba Networking & ProVision-based
1827294 Members
1268 Online
109960 Solutions
New Discussion

Procurve 2910al-24G - Link Aggregation

 
SOLVED
Go to solution
greatbaybud
Occasional Advisor

Procurve 2910al-24G - Link Aggregation

In my Cisco switch 2960S-48TS-L here's my config:
==--==
TELNET 192.168.1.247
Ports 25, 26, 27, 28
config t
vlan 15
name vlan15

vlan 16
name vlan16
interface Vlan15
description iSCSI for NetApp
ip address 10.10.15.10 255.255.255.0

interface Vlan16
description nfs for NetApp
ip address 10.10.16.10 255.255.255.0
exit

config t
int Port-channel1
switchport mode trunk

interface GigabitEthernet1/0/25
description NetApp e0a Trunk
switchport mode trunk
channel-group 1 mode active
exit

interface GigabitEthernet1/0/26
description NetApp e0a Trunk
switchport mode trunk
channel-group 1 mode active
exit

interface GigabitEthernet1/0/27
description NetApp e0a Trunk
switchport mode trunk
channel-group 1 mode active
exit

interface GigabitEthernet1/0/28
description NetApp e0a Trunk
switchport mode trunk
channel-group 1 mode active
end
==--==
IT WORKS! In cisco.

However, we just purhcased two HP 2910al-24 switches.

How do I do the same in these switches? It just not working.

How does VLAN work in HP switches.
Tagged, untagged works differently in HP. It's like the opposite.


Any help would be appreciated.

7 REPLIES 7
Peter_Debruyne
Honored Contributor
Solution

Re: Procurve 2910al-24G - Link Aggregation

Hi,

 

cisco trunk = procurve tagged link

cisco port channel = procurve trunk

 

1/ link-aggregation

 # define port channel (trk1 is channel id, locally significant, does not need to match remote side), use lacp (cisco mode active)

trunk 1,2 trk1 lacp

 # verify config

show trunk

 # verify lacp status (success)

show lacp

 

2/ vlans

 # ports must be added to vlan (vlans not configured on port). Cisco native vlan = Procurve untagged vlan

 # no need to add physical members of trk1, procurve only allows you to add trk interface to vlans (so no mismatch possible between physical port and channel port vlan config)

# by default trk1 is a NEW interface, so untagged in vlan 1:

show vlan port trk1 detail

 

# add tagged vlans (like cisco permit vlan list)

vlan 15

 name xxx

 tag trk1

vlan 16

 name xxx

 tag trk1

 

# verify

show vlan port trk1 detail

 

# once vlans have been added, the untagged can be removed if you want (not recommended with cisco)

vlan 1

 no untag trk1

 

# remember basic vlan rules per port (on procurve):

* port must have minimum 1 vlan (either tagged or untagged)

* port can have at most 1 untagged vlan

 

Hope this works for you,

 

Best regards,Peter

 

 

 

greatbaybud
Occasional Advisor

Re: Procurve 2910al-24G - Link Aggregation

Still not working

Switch #2 - 192.168.1.91 - gbnetapp01b
iSCSI - VLAN15, management port 47
VLAN2 - cifs (192.168.2.0/24) (192.168.2.10 gateway) 192.168.2.132
VLAN15 - iscsi (10.10.15.0/24) no gateway (non-routable) 10.10.15.132
VLAN16 - nfs (10.10.16.0/24) no gateway (non-routable) 10.10.16.132

TELNET 192.168.1.106 (HP 2910al-24G)
Ports 7, 8, 9, 10 (grouped or trunked)
Ports 11 (test port - vlan 15 - 10.10.15.209)

I did the following:

config t
trunk 7-10 trk1 lacp
exit

config t
vlan 15
 name vlan15
 tag trk1
vlan 16
 name vlan16
 tag trk1
exit

config t
vlan 1
no untag trk1
exit


HP2910al106# sh trunk
 Load Balancing
  Port | Name                             Type      | Group Type
  ---- + -------------------------------- --------- + ----- --------
  7    |                                  100/1000T | Trk1  LACP
  8    |                                  100/1000T | Trk1  LACP
  9    |                                  100/1000T | Trk1  LACP
  10   |                                  100/1000T | Trk1  LACP

HP2910al106# show lacp
                           LACP
   PORT   LACP      TRUNK     PORT      LACP      LACP
   NUMB   ENABLED   GROUP     STATUS    PARTNER   STATUS
   ----   -------   -------   -------   -------   -------
   7      Active    Trk1      Up        Yes       Success
   8      Active    Trk1      Up        Yes       Success
   9      Active    Trk1      Up        Yes       Success
   10     Active    Trk1      Up        Yes       Success


HP2910al106# show vlan port trk1 detail
 Status and Counters - VLAN Information - for ports Trk1
  VLAN ID Name                 | Status     Voice Jumbo Mode
  ------- -------------------- + ---------- ----- ----- --------
  1       DEFAULT_VLAN         | Port-based No    No    Untagged
  15      vlan15               | Port-based No    No    Tagged


HP2910al106# show vlan port trk1 detail
 Status and Counters - VLAN Information - for ports Trk1
  VLAN ID Name                 | Status     Voice Jumbo Mode
  ------- -------------------- + ---------- ----- ----- --------
  1       DEFAULT_VLAN         | Port-based No    No    Untagged
  15      vlan15               | Port-based No    No    Tagged
  16      vlan16               | Port-based No    No    Tagged

HP2910al106# sh run

Running configuration:

; J9145A Configuration Editor; Created on release #W.14.38

hostname "HP2910al106"
time timezone -300
module 1 type J9145A
module 2 type J9165A
module 3 type J9165A
trunk 7-10 Trk1 LACP
ip default-gateway 192.168.1.9
vlan 1
   name "DEFAULT_VLAN"
   untagged 1-6,12-16,22-24,A1,B1
   ip address 192.168.1.106 255.255.255.0
   no untagged 11,17-21,Trk1
   exit
vlan 15
   name "vlan15"
   untagged 11
   ip address 10.10.15.10 255.255.255.0
   tagged 1-2,12-24,A1,B1,Trk1
   exit
vlan 16
   name "vlan16"
   ip address 10.10.16.10 255.255.255.0
   tagged 1,11-24,A1,B1,Trk1
   exit
vlan 19
   name "vlan19"
   untagged 17-21
   ip address 192.168.19.11 255.255.255.0
   tagged 1-2,11-16,22-24,A1,B1
   exit
timesync sntp
sntp unicast
sntp server priority 1 192.168.1.10 3
snmp-server community "public" unrestricted
snmp-server contact "Phil Vassall" location "Computer Room"
spanning-tree Trk1 priority 4
password manager

HP2910al106#

HP2910al106# ping 192.168.1.91
192.168.1.91 is alive, time = 3 ms
HP2910al106# ping 10.10.15.209
Request timed out.
HP2910al106# ping 10.10.15.132
Request timed out.
HP2910al106#



I feel that we're so close, what can I do?

greatbaybud
Occasional Advisor

Re: Procurve 2910al-24G - Link Aggregation

oops,
HP2910al106# show vlan port trk1 detail
 Status and Counters - VLAN Information - for ports Trk1
  VLAN ID Name                 | Status     Voice Jumbo Mode
  ------- -------------------- + ---------- ----- ----- --------
  15      vlan15               | Port-based No    No    Tagged
  16      vlan16               | Port-based No    No    Tagged

vlan1 has been untagged from trk1.
I can't ping 10.10.15.132

Peter_Debruyne
Honored Contributor

Re: Procurve 2910al-24G - Link Aggregation

ok, hold on. I have the impression there is a mix of L2 and L3 issues.

It seems the link-agg is working fine, but when you test from the switch, it requires IP interfaces or IP routes to the destinations.

 

So from the last message it is difficult to understand which device/ip is located on which switch/side in your network.

 

Questions I would have would be :

* is this trunk used between the switches or between the switch and the netapp ?

* have you placed end-points in the vlan 15 to test the pings ?

vlan 15

 untag testport


 # configure pc with fixed IP in subnet and test destination

 # ping to both switch ips

 

 

 

 

greatbaybud
Occasional Advisor

Re: Procurve 2910al-24G - Link Aggregation

Questions I would have would be :

* is this trunk used between the switches or between the switch and the netapp ?
This trunk is directly connected to the NetApp device (Storage Controller). The way I had it with the Cisco 2960 switch.
NetApp Storage Controller Ports e0a, e0b, e0c, e0d (10.10.15.132)
Hp 2910al-24G Port 7, 8, 9, 10 (vlan 15 - 10.10.15.10)
Hp 2910al-24G Port 7, 8, 9, 10 (vlan 16 - 10.10.16.10)

* have you placed end-points in the vlan 15 to test the pings ?
Yes, I have. A laptop on port 11 with IP address 10.10.15.209
HP2910al106# config t
HP2910al106(config)# vlan 15
HP2910al106(vlan-15)# untag 11
HP2910al106(vlan-15)# exit
HP2910al106(config)#
HP2910al106# ping 10.10.15.209
10.10.15.209 is alive, time = 3 ms
HP2910al106#


vlan 15
 untag testport

 # configure pc with fixed IP in subnet and test destination
 # ping to both switch ips

HP2910al106# ping 10.10.15.132
Request timed out.
HP2910al106#

However, I still can not ping 10.10.15.132 (VLAN15 - netapp iscsi)
HP2910al106# ping 10.10.15.209
Request timed out.
HP2910al106#

Now it's timing out. Very strange.

 

OK, wait a minute. From the laptop (10.10.15.209) I can ping vlan 15 (10.10.15.10)

 

Very strange.

 

Anyways, I first want to get the link aggregation to work on ports 7, 8, 9 and 10.

 

Phil V.

 

greatbaybud
Occasional Advisor

Re: Procurve 2910al-24G - Link Aggregation

Ok, here's what I did:

config t
vlan 2
name "vlan2"
ip helper-address 192.168.1.14
tagged 24-A1,B1,Trk1
no ip address
exit

I plugged in the same laptop, this time 192.168.2.249.

Vlan2 is on my production network.

I'm able to ping the laptop anywhere on the network. This is good:)

However, from within the switch I'm unable to ping 10.10.15.132

I need Vlan2, 15 and 16 in the trunk group.

HP2910al106# sh vlan port trk1
 Status and Counters - VLAN Information - for ports Trk1
  VLAN ID Name                 | Status     Voice Jumbo
  ------- -------------------- + ---------- ----- -----
  1       DEFAULT_VLAN         | Port-based No    No
  2       vlan2                | Port-based No    No
  15      vlan15               | Port-based No    No
  16      vlan16               | Port-based No    No

HP2910al106# sh trunk
 Load Balancing
  Port | Name                             Type      | Group Type
  ---- + -------------------------------- --------- + ----- --------
  7    |                                  100/1000T | Trk1  LACP
  8    |                                  100/1000T | Trk1  LACP
  9    |                                  100/1000T | Trk1  LACP
  10   |                                  100/1000T | Trk1  LACP

HP2910al106# sh lacp
                           LACP
   PORT   LACP      TRUNK     PORT      LACP      LACP
   NUMB   ENABLED   GROUP     STATUS    PARTNER   STATUS
   ----    -------   -------   -------   -------   -------
   7        Active    Trk1      Up        Yes       Success
   8        Active    Trk1      Up        Yes       Success
   9        Active    Trk1      Up        Yes       Success
   10     Active    Trk1      Up        Yes       Success

 

 

HP2910al106# sh run

Running configuration:

; J9145A Configuration Editor; Created on release #W.14.38

hostname "HP2910al106"
time timezone -300
module 1 type J9145A
module 2 type J9165A
module 3 type J9165A
trunk 7-10 Trk1 LACP
ip default-gateway 192.168.1.9
vlan 1
   name "DEFAULT_VLAN"
   untagged 1-6,11-24,A1,B1,Trk1
   ip address 192.168.1.106 255.255.255.0
   exit
vlan 15
   name "vlan15"
   ip address 10.10.15.10 255.255.255.0
   tagged 1-2,12-24,A1,B1,Trk1
   exit
vlan 16
   name "vlan16"
   ip address 10.10.16.10 255.255.255.0
   tagged 1,11-24,A1,B1,Trk1
   exit
vlan 19
   name "vlan19"
   ip address 192.168.19.11 255.255.255.0
   tagged 1-2,11-16,22-24,A1,B1
   exit
vlan 2
   name "vlan2"
   ip helper-address 192.168.1.14
   tagged 24-A1,B1,Trk1
   no ip address
   exit
timesync sntp
sntp unicast
sntp server priority 1 192.168.1.10 3
snmp-server community "public" unrestricted
snmp-server contact "Phil Vassall" location "Computer Room"
spanning-tree Trk1 priority 4
password manager

HP2910al106#



I can NOT ping 10.10.15.132. HOWEVER, they CAN ping the switch 10.10.15.10.
I can NOT ping 10.10.15.133. HOWEVER, they CAN ping the switch 10.10.15.10.
I can NOT ping 10.10.16.132. HOWEVER, they CAN ping the switch 10.10.16.10.
I can NOT ping 10.10.16.133. HOWEVER, they CAN ping the switch 10.10.16.10.

IT WORKING!!!

THANKS PETE :)

I have two HP switches for high availablity.

HP2910al108# sh vlan
 Status and Counters - VLAN Information
  Maximum VLANs to support : 256
  Primary VLAN : DEFAULT_VLAN
  Management VLAN :
  VLAN ID Name                 | Status     Voice Jumbo
  ------- -------------------- + ---------- ----- -----
  1       DEFAULT_VLAN         | Port-based No    No
  2       vlan2                | Port-based No    No
  15      vlan15               | Port-based No    No
  16      vlan16               | Port-based No    No


HP2910al108# sh trunk
 Load Balancing
  Port | Name                             Type      | Group Type
  ---- + -------------------------------- --------- + ----- --------
  3    |                                  100/1000T | Trk2  LACP
  4    |                                  100/1000T | Trk2  LACP
  5    |                                  100/1000T | Trk2  LACP
  6    |                                  100/1000T | Trk2  LACP

HP2910al108# show vlan port trk2 detail
 Status and Counters - VLAN Information - for ports Trk2
  VLAN ID Name                 | Status     Voice Jumbo Mode
  ------- -------------------- + ---------- ----- ----- --------
  1       DEFAULT_VLAN         | Port-based No    No    Untagged
  2       vlan2                | Port-based No    No    Tagged
  15      vlan15               | Port-based No    No    Tagged
  16      vlan16               | Port-based No    No    Tagged

HP2910al108# sh lacp
                           LACP
   PORT   LACP      TRUNK     PORT      LACP      LACP
   NUMB   ENABLED   GROUP     STATUS    PARTNER   STATUS
   ----   -------   -------   -------   -------   -------
   3      Active    Trk2      Up        Yes       Success
   4      Active    Trk2      Up        Yes       Success
   5      Active    Trk2      Up        Yes       Success
   6      Active    Trk2      Up        Yes       Success

HP2910al108# ping 10.10.15.11
10.10.15.11 is alive, time = 2 ms
HP2910al108# ping 10.10.15.132
10.10.15.132 is alive, time = 4 ms
HP2910al108# ping 10.10.15.133
10.10.15.133 is alive, time = 4 ms
HP2910al108# ping 192.168.2.132
192.168.2.132 is alive, time = 2 ms
HP2910al108# ping 192.168.2.133
192.168.2.133 is alive, time = 3 ms
HP2910al108#

HP2910al108# sh run

Running configuration:

; J9145A Configuration Editor; Created on release #W.14.38

hostname "HP2910al108"
time timezone -300
module 1 type J9145A
module 2 type J9165A
module 3 type J9165A
trunk 3-6 Trk2 LACP
ip default-gateway 192.168.1.9
vlan 1
   name "DEFAULT_VLAN"
   untagged 1-2,7-24,A1,B1,Trk2
   ip address 192.168.1.108 255.255.255.0
   exit
vlan 15
   name "vlan15"
   ip address 10.10.15.11 255.255.255.0
   tagged 1,7-14,17-24,A1,B1,Trk2
   exit
vlan 16
   name "vlan16"
   ip address 10.10.16.11 255.255.255.0
   tagged 1,9-14,17-24,A1,B1,Trk2
   exit
vlan 2
   name "vlan2"
   ip helper-address 192.168.1.14
   tagged 23-24,A1,B1,Trk2
   no ip address
   exit
gvrp
timesync sntp
sntp unicast
sntp server priority 1 192.168.1.10 3
snmp-server community "public" unrestricted
snmp-server contact "Phil Vassall" location "Computer Room"
spanning-tree Trk2 priority 4
password manager

HP2910al108#

EVERYTHING SEEMS TO BE WORKING!!!

THANKS FOR ALL YOUR HELP PETE.

yunkyguy
Visitor

Re: Procurve 2910al-24G - Link Aggregation

Hi Team,

 

I have a L3 2910al switch installed on production. Having 4-5 ports are free. Can you please help to enable LACP on the same.

 

Briefing : I have to enable Lacp and configure two ports with same IP address so ease to load split and work in active active as one port failure.

 

For further assistance can you please reach me @9654823451 so ease to explain in detail iff feasible

 

Thanks in advance!

Jitender Bansal

09654823451