e una scheda wi-fi :
il problema e' che vorrei attivare un server dhcp con la scheda wi-fi .
la sheda wi-fi e attiva :
ifconfig
ath0 Link encap:Ethernet HWaddr 00:14:78:10:C7:40
inet6 addr: fe80::214:78ff:fe10:c740/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1.. ecc
mentre dhcpd.conf:
# dhcpd.conf
#
# Configuration file for ISC dhcpd (see 'man dhcpd
# My /etc/dhcpd.conf
ddns-update-style ad-hoc;
default-lease-time 1200;
max-lease-time 9200;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
# The Default Gateway
option routers 192.168.0.2;
option domain-name-servers 192.168.0.2;
option domain-name "MY_LINUX_LAN";
subnet 192.168.0.0 netmask 255.255.255.0 {
# For Mobile Host
range 192.168.0.10 192.168.0.100;
range 192.168.0.150 192.168.0.200;
}
# For Fixed Host
host MyFixHost1 {
hardware ethernet 00:14:78:10:C7:40;
fixed-address 192.168.0.3;
option host-name "MyFixHost1";
}
.....ho provato a dare dhcpd restart
ma non si attiva niente...
mi potete aiutare a tirar su un server dhcp che funzioni ?

