1
ewconfig/scripts/rebuild-udm-dns
2024-06-25 15:50:29 -04:00

12 lines
393 B
Bash
Executable File

#! /bin/bash
# Home router gives up on custom DNS configs sometimes. This script rebuilds them
set -e
echo "SSH-ing into the router to make changes.."
ssh root@10.80.0.1 <<EOF
echo "server=/vpn/10.10.0.1" > /run/dnsmasq.conf.d/local_custom_dns.conf;
echo "server=/0.10.10.in-addr.arpa/10.10.0.1" >> /run/dnsmasq.conf.d/local_custom_dns.conf;
kill \$(cat /run/dnsmasq.pid)
dig gateway.vpn
EOF