Quoting David Walser <[EMAIL PROTECTED]>:
> I would just make sure you:
> 1) Don't have any IP set as a GATEWAY
> 2) are only running the dhcp server on the ethernet interface
Thanks David.
For 1), I do not think so.
For 2) how can I check it ?
I had a look to /etc/dhcpd.conf
here it is :
[EMAIL PROTECTED] zeb]$ cat /etc/dhcpd.conf
# default file for dhcpd
# replace 192.168.1.101 by the IP adress of the server (same server for
# all services in this config file)
default-lease-time 36000;
max-lease-time 144000;
ddns-update-style ad-hoc;
not authoritative;
subnet 192.168.1.0 netmask 255.255.255.0{
range 192.168.1.102 192.168.1.254;
option domain-name "zebdomain";
option domain-name-servers 192.168.1.101;
option routers 192.168.1.1;
option subnet-mask 255.255.255.0;
ddns-updates on;
ddns-domainname "zebdomain";
ddns-rev-domainname "in-addr.arpa";
}
Starngely, this does occur only when I plug B. If no other machine is plugged to
A it works, even if dhcpd is loaded.
Cheers
Eric