]> git.llucax.com Git - software/pymin.git/blob - dhcpd/dhcpd.conf
7fe8d65d283cc9dd245fd37b2c08752dfcb0b2e1
[software/pymin.git] / dhcpd / dhcpd.conf
1 ddns-update-style none;
2
3 option domain-name baryon.com.ar;
4 option domain-name-servers my_ns1, my_ns2;
5
6 authoritative;
7
8 log-facility local7;
9
10 subnet 192.168.0.0 netmask 255.255.255.0 {
11   range 192.168.0.100 192.168.0.200;
12   option routers 192.168.0.1;
13 }
14
15 host my_name {
16   fixed-address 192.168.0.192;
17   hardware ethernet 00:12:ff:56;
18 }
19
20 host nico {
21   fixed-address 192.168.0.188;
22   hardware ethernet 00:00:00:00;
23 }