Ciao a tutti
sto cercando di attivare un serverino DHCP per la mia rete aziendale utilizzando una Ubuntu 9.04
Il file che ho configurato è:
/etc/dhcp3/dhcpd.conf
e questo è il suo contenuto:
# /etc/dhcpd.conf
authoritative;
subnet 90.0.0.0 netmask 255.255.0.0
{
default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.0.0;
option broadcast-address 90.0.0.255;
option routers 90.0.0.71;
option domain-name-servers 90.0.0.1;
option domain-name "comune";
range 90.0.60.60 90.0.60.70;
}
Tentando un avvio lanciando:
/etc/init.d/dhcp3-server start
Ottengo:
* Starting DHCP server dhcpd3
* check syslog for diagnostics.
[fail]
Guardando dentro syslog ho trovato:
Aug 5 09:53:17 LBU904 dhcpd: Internet Systems Consortium DHCP Server V3.1.1
Aug 5 09:53:17 LBU904 dhcpd: Copyright 2004-2008 Internet Systems Consortium.
Aug 5 09:53:17 LBU904 dhcpd: All rights reserved.
Aug 5 09:53:17 LBU904 dhcpd: For info, please visit http://www.isc.org/sw/dhcp/
Aug 5 09:53:17 LBU904 dhcpd: Wrote 0 leases to leases file.
Aug 5 09:53:17 LBU904 dhcpd:
Aug 5 09:53:17 LBU904 dhcpd: No subnet declaration for eth0 (90.0.0.76).
Aug 5 09:53:17 LBU904 dhcpd: ** Ignoring requests on eth0. If this is not what
Aug 5 09:53:17 LBU904 dhcpd: you want, please write a subnet declaration
Aug 5 09:53:17 LBU904 dhcpd: in your dhcpd.conf file for the network segment
Aug 5 09:53:17 LBU904 dhcpd: to which interface eth0 is attached. **
Aug 5 09:53:17 LBU904 dhcpd:
Aug 5 09:53:17 LBU904 dhcpd:
Aug 5 09:53:17 LBU904 dhcpd: Not configured to listen on any interfaces!
Mi sembra di capire che lamenta il fatto che non ho indicato su quale scheda di rete mettersi in ascolto ... ma non ho capito come dirglielo
Qualcuno mi può aiutare ?
Grazie
Frank