Hi,
Help me please to translate this simple dhcpd.conf to dnsmasq:
subnet 192.168.1.0 netmask 255.255.255.0 {
option routers 192.168.1.1;
option domain-name "mydomain.ru";
option domain-name-servers 192.168.1.1;
host P12 {
hardware ethernet 00:01:80:0E:2F:8C;
fixed-address 192.168.1.2;
}
}
subnet 192.168.2.0 netmask 255.255.255.0 {
option routers 192.168.2.1;
option domain-name "mydomain.ru";
option domain-name-servers 192.168.2.1;
host P22 {
hardware ethernet 00:01:80:0E:2F:8C;
fixed-address 192.168.2.2;
}
}
--
Thanks,
Eugene Prokopiev