Wireless

 View Only
last person joined: yesterday 

Expand all | Collapse all

ip authorized manager

This thread has been viewed 12 times
  • 1.  ip authorized manager

    Posted Feb 09, 2023 08:47 AM

    Hi All 

    i want to config ip range to manage  my aruba controller  , how /where can i config that  ? 

    the ip that i want to allowed need access via ssh and http . 

    if someone  can  paste example its great!!

    Br Avi 



  • 2.  RE: ip authorized manager
    Best Answer

    EMPLOYEE
    Posted Feb 14, 2023 11:06 AM

    Check the ArubaOS 8 Hardening Guide, page 25:

    (Hostname) # configure terminal
    Enter Configuration commands, one per line. End with CNTL/Z
    (Hostname) (config) #firewall cp
    (Hostname) (config-fw-cp) #ipv4 permit 10.2.14.0 255.255.255.0 proto ssh
    (Hostname) (config-fw-cp) #ipv4 deny any proto ssh
    (Hostname)(config-fw-cp) #show firewall-cp
    CP firewall policies
    --------------------
    IP Version  SourceIP  Source Mask    Protocol  Start Port  End Port  Permit/Deny  hits  contract 
    -------------------------------------------------------------------------------
    ipv4        10.2.14.0  255.255.255.0  6         22          22        Permit  0
    ipv4        any                       6         22          22        Deny         0

    Then do the same for the other management protocols, like port 4343, for example:

    ipv4 permit 10.2.14.0 255.255.255.0 proto 6 ports 4343


    ------------------------------
    Herman Robers
    ------------------------
    If you have urgent issues, always contact your Aruba partner, distributor, or Aruba TAC Support. Check https://www.arubanetworks.com/support-services/contact-support/ for how to contact Aruba TAC. Any opinions expressed here are solely my own and not necessarily that of Hewlett Packard Enterprise or Aruba Networks.

    In case your problem is solved, please invest the time to post a follow-up with the information on how you solved it. Others can benefit from that.
    ------------------------------



  • 3.  RE: ip authorized manager

    Posted Feb 20, 2023 07:12 AM

    Thanks Herman.