29 lines
1.4 KiB
Bash
Executable File
29 lines
1.4 KiB
Bash
Executable File
#!/bin/sh -e
|
|
# Blocks internet at night using iptables and enables it only upon request
|
|
# REPLACED by netkeeper with nftables
|
|
|
|
# Auto-elevate
|
|
test ${EUID:-0} -eq 0 || exec sudo "$0" "$@"
|
|
|
|
# https://askubuntu.com/a/124512 and https://blog.sleeplessbeastie.eu/2018/06/21/how-to-create-iptables-firewall-using-custom-chains/
|
|
iptables --new-chain chain-times 2>/dev/null || iptables --flush chain-times
|
|
# Always allow local connections - https://serverfault.com/a/550278
|
|
iptables -A chain-times -m owner --uid-owner janek -d 192.168.1.0/24 -j ACCEPT
|
|
iptables -A chain-times -m owner --uid-owner janek -d 127.0.0.0/8 -j ACCEPT
|
|
|
|
time9=$(date -u -d "$(date -d 9:00)" +%k)
|
|
iptables -A chain-times -m owner --uid-owner janek -j DROP -m time \
|
|
--timestart $(date -u -d "$(date -d "${1:-15 min}")" +%k:%M) --timestop $(expr $time9):00
|
|
|
|
# Only allow periodical internet access in the morning
|
|
#iptables -A chain-times -m owner --uid-owner janek -j DROP -m time --weekdays 1-5 \
|
|
# --timestart $time9:20 --timestop $(expr $time9 + 1):00
|
|
#iptables -A chain-times -m owner --uid-owner janek -j DROP -m time --weekdays 1-5 \
|
|
# --timestart $(expr $time9 + 1):20 --timestop $(expr $time9 + 2):00
|
|
|
|
iptables -L OUTPUT | grep -q "^chain-times" || iptables -A OUTPUT -j chain-times
|
|
if test "$2" = "--save"; then
|
|
iptables-save | tee /etc/iptables/walli.rules
|
|
echo "@reboot root $(which iptables-restore) < /etc/iptables/walli.rules" | tee /etc/cron.d/iptables-times
|
|
fi
|