Wired Intelligent Edge

last person joined: 21 hours ago 

Bring performance and reliability to your network with the HPE Aruba Networking Core, Aggregation, and Access layer switches. Discuss the latest features and functionality of your switching devices, and find ways to improve security across your network to bring together a mobile-first solution
Expand all | Collapse all

Configure Interface IP on Aruba 2930F

This thread has been viewed 39 times
  • 1.  Configure Interface IP on Aruba 2930F

    Posted Apr 04, 2017 05:47 AM

    Hi, need some help on Aruba switch as this is first time using Aruba switch.

    Want to configure something like Cisco command in Aruba Switch 2030F but cant get it right...as I can only see VLAN configuration.

     

    Cisco(config)#interface fastEthernet 0

    Cisco(config-if)#ip address 10.199.111.41 255.255.255.0

     

    Or this Aruba switch does not support Interface IP for L3 purpose?



  • 2.  RE: Configure Interface IP on Aruba 2930F

    EMPLOYEE
    Posted Apr 04, 2017 05:52 AM
    You can only add an IP address to a VLAN. A switchport is an L2 construct.


  • 3.  RE: Configure Interface IP on Aruba 2930F

    Posted Apr 04, 2017 07:42 AM

    This is the feature in 2930F series? 

    How can i find the one which allows me to define L3 interface as what Cisco switch capable of?

    I have some STP bpdu issue with Cisco switch, and would think a router port configuration would eliminate this problem.

     



  • 4.  RE: Configure Interface IP on Aruba 2930F

    EMPLOYEE
    Posted Apr 04, 2017 09:10 AM
    They are switchports. You cannot directly assign an IP address.


  • 5.  RE: Configure Interface IP on Aruba 2930F

    EMPLOYEE
    Posted Apr 04, 2017 11:22 AM

    Hi,

     

    In ArubaOS Switch you can´t put a physical interface in route mode.

     

    #You have to create an L3 vlan interface

    conf t

    interface vlan XX

      ip address 10.10.10.1 255.255.255.252

      exit

    #Then you have to untag that vlan on the interface connected to the other device

    interface 24

      untag vlan XX

    exit

     



  • 6.  RE: Configure Interface IP on Aruba 2930F

    EMPLOYEE
    Posted Apr 13, 2017 04:33 PM

    To clarify a bit on the syntax for ArubaOS-Switch: there is only one VLAN context (as opposed to the split 'VLAN' and 'VLAN interface' used by Cisco, Comware, etc); this context is used for both L3 configuration as well as assigning the VLAN to ports.

     

     

    switch# configure
    switch(config)# vlan 10
    switch(vlan-10)# ip address 172.16.0.1/16
    switch(vlan-10)# untag 1
    switch(vlan-10)# tag 24
    switch(vlan-10)# exit
    switch(config)#