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?
¿Qué se registra durante el intento fallido de iniciar en * / var / log / syslog`? También debe considerar actualizar a una versión más nueva de Ubuntu.
—
Thomas
/etc/dhcp/dhcpd.conf línea 15: esperando un tipo de hardware de red # 011 # 011 hardware eth0:
—
Juanker
Resuelto cambiar eth0 a ethernet y agregar un espacio ...
—
Juanker
@Juanker Recomiendo publicar una respuesta al respecto .
—
Eliah Kagan