Initial commit

This commit is contained in:
Maurice
2025-08-20 17:11:32 +02:00
commit 8c2f438749
21 changed files with 392 additions and 0 deletions

14
installation/firewall.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
echo "Setting up firewall..."
apk add -u awall # important -u flag!
apk add ip6tables iptables
modprobe -v ip_tables
modprobe -v ip6_tables
modprobe -v iptable_nat #if NAT is used
# Register services
rc-update add iptables
rc-update add ip6tables
rc-service iptables start
rc-service ip6tables start