preparation-scripts/installation/dns.sh

13 lines
294 B
Bash
Raw Permalink Normal View History

2024-11-18 21:21:18 +01:00
#!/bin/bash
2024-11-23 15:16:52 +01:00
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Interstellar Development
2024-11-18 21:21:18 +01:00
sudo apt update
2024-11-19 20:30:12 +01:00
sudo apt install -y bind9 bind9utils bind9-doc
2024-11-21 17:18:04 +01:00
echo "nameserver 192.168.16.1" >/etc/resolv.conf
sudo chattr +i /etc/resolv.conf
2024-11-18 21:21:18 +01:00
systemctl start named
systemctl enable named