Wireless Access

last person joined: 21 hours ago 

Access network design for branch, remote, outdoor, and campus locations with HPE Aruba Networking access points and mobility controllers.
Expand all | Collapse all

S2500 Flow Control on 10GbE ports

This thread has been viewed 2 times
  • 1.  S2500 Flow Control on 10GbE ports

    Posted Apr 05, 2014 11:18 PM

    Is it possible to enable flow control on the 10GbE ports of an S2500?  I've created an enet-link-profile setting flowcontrol to on and assigned to port, however, the show interface command shows that flow control is still disabled.  Assigning the same profile to a 1 gig port seems to work fine.

     

     



  • 2.  RE: S2500 Flow Control on 10GbE ports

    Posted Apr 06, 2014 12:20 AM

     

    Can you dump o/p  for

     "show interface-profile enet-link-profile  <your-profile-name>"

    "show running-config interface gigabitethernet <uplink-intf>"

     "show running-config interface gigabitethernet <uplink-intf> | include flowcontrol

      ex: show running-config interface gigabitethernet 0/1/2 | include flowcontrol

       

     



  • 3.  RE: S2500 Flow Control on 10GbE ports

    Posted Apr 06, 2014 12:47 AM

    #show interface-profile enet-link-profile "EqualLogic-Enet-Profile"

    Ethernet Link "EqualLogic-Enet-Profile"
    ---------------------------------------
    Parameter Value
    --------- -----
    Speed auto
    Duplex auto
    Autonegotiation Enabled
    Flowcontrol on

     

    #show running-config interface gigabitethernet "0/1/1"


    interface-config gigabitethernet "0/1/1" detail
    -----------------------------------------------
    interface-profile mstp-profile default
    point-to-point Disabled
    portfast Disabled trunk Disabled
    rootguard Disabled
    loopguard Disabled
    bpduguard Disabled auto-recovery-time 0
    interface-profile pvst-port-profile default
    point-to-point Disabled
    portfast Disabled trunk Disabled
    rootguard Disabled
    loopguard Disabled
    bpduguard Disabled auto-recovery-time 0
    interface-profile lldp-profile lldp-factory-initial
    lldp transmit Enabled
    lldp receive Enabled
    lldp tlv-select port-description Enabled
    lldp tlv-select system-name Enabled
    lldp tlv-select system-description Enabled
    lldp tlv-select system-capabilities Enabled
    lldp tlv-select management-address Enabled
    lldp tlv-select port-vlan-id Enabled
    lldp tlv-select vlan-name Enabled
    lldp tlv-select aggregation-status Enabled
    lldp tlv-select mac-phy-config Enabled
    lldp tlv-select max-frame-size Enabled
    lldp tlv-select power-management Enabled
    lldp med-tlv-select network-policy Enabled
    lldp med-tlv-select power-management Enabled
    lldp transmit-interval 30
    lldp transmit-hold 4
    lldp fast-transmit-interval 1
    lldp fast-transmit-counter 4
    med enable Enabled
    proprietary-neighbor-discovery Disabled
    interface-profile poe-profile poe-factory-initial
    enable Enabled
    poe-maxpower 30000
    poe-priority low
    interface-profile enet-link-profile EqualLogic-Enet-Profile
    speed auto
    duplex auto
    autonegotiation Enabled
    flowcontrol on
    interface-profile switching-profile EqualLogic10GbE
    switchport-mode access
    access-vlan 30
    native-vlan 30
    storm-control-broadcast Enabled
    storm-control-multicast Disabled
    storm-control-unknown-unicast Enabled
    storm-control-bandwidth 50
    trunk allowed vlan 30
    mtu 9216
    qos trust aruba-device
    description SAN0
    trusted port
    igmp-snooping mrouter-vlan 0
    mld-snooping mrouter-vlan 0

     

    #show running-config interface gigabitethernet "0/1/1" | include flowcontrol
    <blank>

     

    The following also indicates flow control is off, correct?

     

    #show interface gigabitethernet "0/1/1"

    GE0/1/1 is administratively Up, Link is Up, Line protocol is Up

    Hardware is Gigabit Ethernet, Interface is SAN0, Address is 00:0b:86:8d:45:b3
    Encapsulation ARPA, Loopback not set
    Configured: duplex (Full), Speed (10 Gbps), FC (Off), Autoneg (Off)
    Interface index: 130
    MTU 9216 bytes
    Link flaps: 0
    Flags: Access, Trusted
    Link status last changed: 0d 04:15:04 ago
    Last update of counters: 0d 00:00:02 ago
    Last clearing of counters: 0d 07:48:54 ago
    Statistics:
    Received 13797292 frames, 78670244604 octets
    37 pps, 31.788 Kbps
    13796720 unicast, 515 multicast, 57 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 10908549 frames, 20251037718 octets
    43 pps, 1.502 Mbps
    10908032 unicast, 513 multicast, 4 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
    Interface is not PoE capable

     

    Thanks!

     

     

     



  • 4.  RE: S2500 Flow Control on 10GbE ports
    Best Answer

    EMPLOYEE
    Posted Apr 06, 2014 06:50 PM

    Boomboom21,

    I suspect in your system log you have the following error:

     

    Apr 6 14:42:26 :335311:  <WARN> |ChassisManager|  Configuration parameters under enet profile (EqualLogic-Enet-Profile) does not match for interface GE0/1/1, Ignoring the configuration

     

    Try the following enet-link-profile instead:

     

    !

    interface-profile enet-link-profile "10GE-FLOW"
       speed 10000
       duplex full
       flowcontrol on
    !

     

    The reason is that the system is trying to apply "speed auto" and "duplex auto" when a 10G interface can only be speed 10000 and duplex full. If you apply the above profile instead, you should get the following:

     

    (ArubaS2500-48P-US) (config) #show interface gigabitethernet 0/1/0

    GE0/1/0 is administratively Up, Link is Up, Line protocol is Up
    Hardware is Gigabit Ethernet, Interface is GE0/1/0, Address is 00:1a:1e:0a:23:f2
    Encapsulation ARPA, Loopback not set
    Configured: duplex (Full), Speed (10 Gbps), FC (On), Autoneg (On)
    Negotiated: duplex (Full), Speed (10 Gbps)

     

    Best regards,

     

    Madani

     



  • 5.  RE: S2500 Flow Control on 10GbE ports

    Posted Apr 06, 2014 10:24 PM

    That did it!  Thank you!