On 2007/10/05 14:48, a.padilla wrote:
> dc0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
>       inet 10.0.0.0 netmask 0xff000000 broadcast 255.255.255.0

10.0.0.0 is not valid with a 255.0.0.0 netmask, it's reserved as the
network address and shouldn't be used by a host. You could use 10.0.0.1.

255.255.255.0 is not a sensible broadcast address for the configured
network. For 10.xxx with a 255.0.0.0 netmask, the normal broadcast
address is 10.255.255.255. For 10.0.0.x with a 255.255.255.0 netmask,
the normal broadcast address is 10.0.0.255.

Try it with just 'inet 10.0.0.1 255.255.255.0' in hostname.dc0,
adjust dhcpd.conf as necessary, and reboot. (you could do this on
a running box, but this way you'll know it will come back up
correctly next reboot).

Note that the format of hostname.if(5) is different to that of the
ifconfig(8) command line.

Reply via email to