Hello All,
Im creating a subnet in dhcpd.conf with the following content, which seems to work:
Code:
subnet 10.0.0.0 netmask 255.0.0.0 {
option domain-name "deed.lan";
option broadcast-address 10.255.255.255;
range 10.5.1.1 10.5.1.254;
option routers 10.2.0.2;
default-lease-time 600;
max-lease-time 7200;
}
My problem is that the field:
Code:
option routers 10.2.0.2;
May change over time, so I would rather say:
"Use the ip given my eth1 interface"
Is this possible ??
Thanks,
Troels