mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
16 lines
891 B
Dns
16 lines
891 B
Dns
|
;
|
||
|
; BIND data file for example.local
|
||
|
;
|
||
|
$TTL 3600
|
||
|
@ IN SOA ns1.example.local. info.example.local. (
|
||
|
2022092600 ; Serial
|
||
|
7200 ; Refresh
|
||
|
120 ; Retry
|
||
|
2419200 ; Expire
|
||
|
3600) ; Default TTL
|
||
|
;
|
||
|
A 10.64.2.1 ; This means that naughydomain.com gets directed to the designated address
|
||
|
* IN A 10.64.2.1 ; This wildcard entry means that any permutation of xxx.naughtydomain.com gets directed to the designated address
|
||
|
AAAA ::1 ; This means that naughydomain.com gets directed to IPv6 localhost
|
||
|
* IN AAAA ::1 ; This wildcard entry means that any permutation of xxx.naughtydomain.com gets directed to IPv6 localhost
|