preparation-scripts/installation/dns.sh

9 lines
173 B
Bash
Raw Normal View History

2024-11-18 21:21:18 +01:00
#!/bin/bash
sudo apt update
2024-11-19 20:30:12 +01:00
sudo apt install -y bind9 bind9utils bind9-doc
2024-11-21 17:17:13 +01:00
echo "nameserver 192.168.16.177" >/etc/resolv.conf
2024-11-18 21:21:18 +01:00
systemctl start named
systemctl enable named