Hello
I'm running several jails with common internal interface and DHCP on it. Some jails has direct access from internet and default routing points to real interface, some do not and default routing points to internal one.
dhclient.conf
does not prevent dhclient from setting default routing; replacement of router options by real routing does. I'd like to just disable setting default route for dhclient, how can I do it?
I'm running several jails with common internal interface and DHCP on it. Some jails has direct access from internet and default routing points to real interface, some do not and default routing points to internal one.
dhclient.conf
Code:
interface "eth1" {
request subnet-mask, broadcast-address, interface-mtu;
}
does not prevent dhclient from setting default routing; replacement of router options by real routing does. I'd like to just disable setting default route for dhclient, how can I do it?