Hi there,
on a 3.9 newly installed box I started DHCPD. The clients do obtain an IP
address but cannot go 'out' to the Internet.
Here are the different conf files:
---------------------------------
ifconfig:
vr0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
lladdr x:x:x:x:x:x
media: Ethernet autoselect (100baseTX full-duplex)
status: active
inet 12.0.0.1 netmask 0xff000000 broadcast 12.255.255.255
inet6 fe80::20b:6aff:febb:4022%vr0 prefixlen 64 scopeid 0x2
hostname.vr0:
inet 12.0.0.1 255.0.0.0 NONE
dhcpd.conf:
shared-network MY-NET1 {
option domain-name "my.domain";
option domain-name-servers x1.x1.x1.x1, x2.x2.x2.x2;
subnet 12.0.0.0 netmask 255.0.0.0 {
option routers 12.0.0.1;
range 12.0.0.10 12.0.0.120;
default-lease-time 86400;
max-lease-time 2592000;
}
}
-----------------------------
Thanks
George