preparation-scripts/installation/dns.sh
2024-11-23 15:16:52 +01:00

12 lines
294 B
Bash
Executable file

#!/bin/bash
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Interstellar Development
sudo apt update
sudo apt install -y bind9 bind9utils bind9-doc
echo "nameserver 192.168.16.1" >/etc/resolv.conf
sudo chattr +i /etc/resolv.conf
systemctl start named
systemctl enable named