Skip to content

Instantly share code, notes, and snippets.

@p3ngu1n-net
p3ngu1n-net / download-oids-full.sh
Created May 30, 2022 11:53
Downloads & processes OISD Full Domain list for using in Unbound DNS resolver
#!/bin/sh
printf "Downloading OISD Full Domain list... "
curl "https://dbl.oisd.nl/" -o oisd-dbl.txt 2> /dev/null
printf "done\nProcessing list... "
grep -v "#" oisd-dbl.txt | grep "." | awk '{print "local-zone: \""$1"\" always_nxdomain"}' > oisd.conf
rm -f oisd-dbl.txt
printf "done\n"
printf "Moving list to unbound directory... \n"
rm /etc/unbound/oisd.conf
cp oisd.conf /etc/unbound/oisd.conf