How to exclude router in ip address reservation in isc-dhcpd?
host ws11.lan {
hardware ethernet 00:15:5D:07:B3:09;
fixed-address 192.168.0.11;
option routers NONE;
}
the gateway is registered globally, and for reservation it is necessary to exclude it in the reservation section
option routers ;
option routers "";
does not roll unfortunately
how to specify an option - but for it to be empty, none, null etc.?
How to make it so that the address was issued without a router / router?
As in Windows:
host ws11.lan {
hardware ethernet 00:15:5D:07:B3:09;
fixed-address 192.168.0.11;
option routers NONE;
}
the gateway is registered globally, and for reservation it is necessary to exclude it in the reservation section
option routers ;
option routers "";
does not roll unfortunately
how to specify an option - but for it to be empty, none, null etc.?
How to make it so that the address was issued without a router / router?
As in Windows: