This will output the zones on STDOUT. If you want to save this to a zonefile, you can use this example:
./generate_v6_ptr.sh /path/to/zonefile.zone > /etc/bind/ip6.arpa.zone
cryptsetup
This will output the zones on STDOUT. If you want to save this to a zonefile, you can use this example:
./generate_v6_ptr.sh /path/to/zonefile.zone > /etc/bind/ip6.arpa.zone
cryptsetup
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -9,3 +9,5 @@ What you need to do: | ||
|
||
This will output the zones on STDOUT. If you want to save this to a zonefile, you can use this example: | ||
`./generate_v6_ptr.sh /path/to/zonefile.zone > /etc/bind/ip6.arpa.zone` | ||
|
||
cryptsetup |
Sorry... we’re unable to render the document prior to diffing.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/bin/bash | ||
|
||
read -r -d '' ZONEHEADER <<- EOM | ||
$TTL 1h ; Default TTL | ||
@ IN SOA <NAMESERVER 1>. <ABUSE EMAIL>. ( | ||
2019071201 ; serial | ||
1h ; slave refresh interval | ||
15m ; slave retry interval | ||
1w ; slave copy expire time | ||
1h ; NXDOMAIN cache time | ||
) | ||
; | ||
; domain name servers | ||
; | ||
@ IN NS <NAMESERVER 1>. | ||
@ IN NS <NAMESERVER 2>. | ||
; IPv6 PTR entries | ||
EOM | ||
|
||
# Script: | ||
|
||
function reverseIp6 { | ||
echo "$1" | awk -F: 'BEGIN {OFS=""; }{addCount = 9 - NF; for(i=1; i<=NF;i++){if(length($i) == 0){ for(j=1;j<=addCount;j++){$i = ($i "0000");} } else { $i = substr(("0000" $i), length($i)+5-4);}}; print}' | rev | sed -e "s/./&./g" | ||
} | ||
|
||
|
||
if [ -z "$1" ] | ||
then | ||
echo "Usage: $0 <zonefile>" | ||
exit 1 | ||
fi | ||
|
||
RECORD=(`cat $1 | grep AAAA | awk -v'OFS=,' '$2 == "IN" {print $4}'`) | ||
HOST=(`cat $1 | grep AAAA | awk -v'OFS=,' '$2 == "IN" {print $1}'`) | ||
|
||
echo "$ZONEHEADER" | ||
for (( i=0; i<${#RECORD[@]}; i++ )); do | ||
echo "$(reverseIp6 ${RECORD[i]})ip6.arpa. IN PTR ${HOST[i]}"; | ||
done |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Generating IPv6 PTR records from a Bind9 Zonefile using Bash. | ||
===== | ||
|
||
The following script takes a Bind9 zonefile, gets all AAAA records from it and generated PTR records based on them. | ||
|
||
What you need to do: | ||
1. Edit the Zone header in the script. | ||
2. Run the script with `./generate_v6_ptr.sh /path/to/zonefile.zone` | ||
|
||
This will output the zones on STDOUT. If you want to save this to a zonefile, you can use this example: | ||
`./generate_v6_ptr.sh /path/to/zonefile.zone > /etc/bind/ip6.arpa.zone` |