unique root path for each IP?

Simon Hobson dhcp1 at thehobsons.co.uk
Sat Jul 19 10:02:39 UTC 2014


"Gruher, Joseph R" <joseph.r.gruher at intel.com> wrote:

> Ideally I would just like to pair the IPs and targets, since the DHCP server already handles keeping IPs unique a 1:1 pairing with targets will also ensure targets are unique.  Is it possible to set up dhcpd.conf to do something like this:
>  
> When issuing 10.0.0.10 issue root path "iscsi:initiator1.example.com::::target10"
> When issuing 10.0.0.11 issue root path "iscsi:initiator1.example.com::::target11"
>> When issuing 10.0.0.95 issue root path "iscsi:initiator1.example.com::::target95"

How about a pool per IP, along the lines of :

subnet ....
  pool {
    range 10.0.0.1;
    option root-path "iscsi:initiator1.example.com::::target00";
  }
subnet ....
  pool {
    range 10.0.0.2;
    option root-path "iscsi:initiator1.example.com::::target01";
  }

and so on.



More information about the dhcp-users mailing list