Estoy configurando el servidor isc-dhcp en Ubuntu 12.04
Mi adaptador eth0 tiene una ip estática
los /etc/default/isc-dhcp-server
INTERFACES="eth0"
los /etc/dhcp/dhcpd.conf
ddns-update-style none;
option domain-name-servers 192.168.100.100;
option domain-name "cauir.upv.es";
default-lease-time 3600;
max-lease-time 4000;
authoritative;
subnet 192.168.100.0 netmask 255.255.255.0{
option broadcast-address 192.168.100.255;
option routers 192.168.100.100;
host ubuntu{
hardware eth0:02:03:04:05:ff;
fixed-address 192.168.100.120;
}
host windows7{
hardware eth0:02:03:04:ff:02;
fixed-address 192.168.100.130;
}
}
Estoy usando service isc-dhcp-server start
y obtuve:start: Job failed to start
Si uso initctl restart isc-dhcp-server
tengoinitctl: Unknown instance:
¿Qué estoy haciendo mal?
networking
server
dhcp
Juanker
fuente
fuente
Respuestas:
Debe usar ethernet antes de la dirección mac
fuente