-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fait le même formatage qu'effectué par le DNS pour l'enregistrement via DHCP. - dns/install/config_template/named.domain.template - dns/install/config_template/reverse.domain.template - dns/add_server_2_dns.sh - dns/remove_server.sh - dns/remove_db_from_dns.sh - dns/show_dns.sh
- Loading branch information
1 parent
560f2d8
commit 334bc43
Showing
6 changed files
with
79 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
; vim:ts=8:sw=8 | ||
$TTL 86400 | ||
@ IN SOA localhost root.localhost ( | ||
42 ; serial (d. adams) | ||
3H ; refresh | ||
15M ; retry | ||
1W ; expiry | ||
1D ) ; minimum | ||
IN NS localhost | ||
localhost IN A 127.0.0.1 | ||
DNS_NAME IN A DNS_IP | ||
@ IN SOA localhost root.localhost ( | ||
46 ; serial (d. adams) | ||
3H ; refresh | ||
15M ; retry | ||
1W ; expiry | ||
1D ) ; minimum | ||
NS localhost | ||
localhost A 127.0.0.1 | ||
DNS_NAME A DNS_IP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
; vim:ts=8:sw=8 | ||
$ORIGIN REVERSED_NETWORK.in-addr.arpa. | ||
$TTL 1H | ||
@ IN SOA DNS_NAME.DOMAIN_NAME. root.DNS_NAME.DOMAIN_NAME. ( 2 | ||
3H | ||
1H | ||
1W | ||
1H ) | ||
REVERSED_NETWORK.in-addr.arpa. IN NS DNS_NAME.DOMAIN_NAME. | ||
@ IN SOA DNS_NAME.DOMAIN_NAME. root.DNS_NAME.DOMAIN_NAME. ( | ||
6 | ||
3H | ||
1H | ||
1W | ||
1H | ||
) | ||
$ORIGIN REVERSED_NETWORK.in-addr.arpa. | ||
|
||
DNS_IP_NODE IN PTR DNS_NAME.DOMAIN_NAME. | ||
DNS_IP_NODE PTR DNS_NAME.DOMAIN_NAME. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters