]> git.llucax.com Git - software/pymin.git/blob - config/dhcp/dhcpd.conf
Se crea el repo del pymin.
[software/pymin.git] / config / dhcp / dhcpd.conf
1
2 Configuracion de dhcp server:
3
4 Variables globales:
5
6 %(domain_name) = Nombre del dominio 
7 %(dns_1) = DNS primario
8 %(dns_2) = DNS secundario
9 %(net_address) = Direccion de la red que se va a servir por DHCP
10 %(net_mask) = Mascara de la red
11 %(net_start) = Direccion inicial del rango de direcciones dinamicas
12 %(net_end) = Direccion final del rango de direcciones dinamicas
13 %(net_gateway) = Puerta de enlace de la red
14
15
16 Y esto es por host:
17
18 %(host1_name) = Nombre del host
19 %(host1_mac) = MAC Address del host (ej. 00:00:12:34:56:78)
20 %(host1_ip) = Direccion IP del host
21
22 ----------------8<----------------------------------------------------
23
24 ddns-update-style none;
25
26 option domain-name %(domain_name);
27 option domain-name-servers %(dns_1), %(dns_2);
28
29 authoritative;
30
31 log-facility local7;
32
33 subnet %(net_address) netmask %(net_mask) {
34   range %(net_start) %(net_end);
35   option routers %(net_gateway);
36 }
37
38 host %(host1_name) {
39   fixed-address %(host1_ip);
40   hardware ethernet %(host1_mac);
41 }