Comware

 View Only
last person joined: yesterday 

Expand all | Collapse all

Hp 5500 Dhcp by Port?

This thread has been viewed 0 times
  • 1.  Hp 5500 Dhcp by Port?

    Posted Nov 26, 2018 01:48 PM

    hello word! 

    i need to configure device that requerd dhcp, but in my case i need that if some device connect to port it always taking that ip addres that i config

    example:

    in port 1/0/1-  that ip will be 192.168.1.1

    in port 1/0/2-  that ip will be 192.168.1.2

    (dhcp static in not a reallty option)  , i usead Hp 5500 comware 7 

    thanks for help (:


    #DHCP


  • 2.  RE: Hp 5500 Dhcp by Port?

    MVP GURU
    Posted Nov 26, 2018 05:13 PM

    Since (MAC Address) DHCP Static Binding is out of question...a way to apply a dynamic (but which doesn't change over time) IP Address allocation on a Interface is to do a trick: probably two different IP Pools (each one with just one IP Address, respectively, 192.168.1.1 and 192.168.1.2 referenced by two differents DHCP IP Pools) assigned, each one, to required interface.

    interface 1/0/1

    dhcp server apply ip-pool pool-for-1-0-1

    interface 1/0/2

    dhcp server apply ip-pool pool-for-1-0-2

    where pool-for-1-0-1 and pool-for-1-0-2 have two differents one-IP-Address addresses ranges (if possible):

    pool-for-1-0-1: address range 192.168.1.1 192.168.1.1

    pool-for-1-0-2: address range 192.168.1.2 192.168.1.2

    That's teorethical...to be verified.