[PLUTO-help] DHCP reservation

stefano a sherwood.it stefano a sherwood.it
Dom 30 Maggio 2004 00:36:50 CEST


> Provo a rispondermi da solo:
>
> In dhcpd.conf
> host nomehost {
> 	fixed-address ip.add.re.ss;
> 	hardware ethernet ma:c:ad:dr:es:s?;
> }
>
> Dovrebbe andare bene?
>

va abbastanza bene ti invio quello che uso io in una rete di classe c con
un centinaio di pc win e linux con un server samba che genera dominio NT e
serner NIS per dominio NIS per la copresenza di pc linux e winzozz:
############################################################################
ddns-update-style none;
authoritative;
log-facility local7;
option domain-name "nome_dominio";
option domain-name-servers 10.0.0.1;#esempio#
option netbios-name-servers 10.0.0.1;#esempio#
option subnet-mask 255.255.255.0;#esempio#
option host-name "configurami";
option routers 10.0.0.10;#esempio#
option nis-domain "nome_dominio";#esempio#
option nis-servers 10.0.0.1;#esempio#
default-lease-time 600;
max-lease-time 7200;


subnet 10.0.0.0 netmask 255.255.255.0 {


        # server1
        host SERVER1 {
                hardware ethernet 00:85:d8:56:e0:81;
                fixed-address 10.0.0.1;
                }


         # server2
        host SERVER1 {
                hardware ethernet 00:80:c8:57:d0:81;
                fixed-address 10.0.0.2;
                }

#aggiungi altre machine

}

#########################################################################

stefano


More information about the pluto-help mailing list