Implement DNS (bind9) and DHCP (isc-dhcp-server) and TFTP (tftpd-hpa).
This commit is contained in:
parent
ebcfd88ef4
commit
d8366d2ca2
9 changed files with 279 additions and 1 deletions
13
roles/dns-dhcp-tftp/templates/localzones.j2
Normal file
13
roles/dns-dhcp-tftp/templates/localzones.j2
Normal file
|
@ -0,0 +1,13 @@
|
|||
zone "0.168.192.in-addr.arpa" {
|
||||
type master;
|
||||
notify no;
|
||||
file "/etc/bind/db.192.168.0";
|
||||
journal "/var/lib/bind/db.192.168.0.jnl";
|
||||
};
|
||||
|
||||
zone "intern" {
|
||||
type master;
|
||||
notify no;
|
||||
file "/etc/bind/db.intern";
|
||||
journal "/var/lib/bind/db.intern.jnl";
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue