Archived
1
0
Fork 0

Desktop: Add KDE Connect firewall rules

This commit is contained in:
Casper V. Kristensen 2022-05-21 22:05:13 +02:00
parent 66e29e862b
commit 67d60cde75

View file

@ -26,9 +26,16 @@ sudo rm /etc/resolv.conf # clear potential symlink
echo "nameserver 159.69.4.2" | sudo tee /etc/resolv.conf echo "nameserver 159.69.4.2" | sudo tee /etc/resolv.conf
# KDE Connect
sudo ufw allow 1714:1764/udp
sudo ufw allow 1714:1764/tcp
sudo ufw reload
# Syncthing # Syncthing
sudo apt install -y syncthing sudo apt install -y syncthing
sudo ufw allow syncthing sudo ufw allow syncthing
sudo ufw reload
systemctl --user enable syncthing.service systemctl --user enable syncthing.service
systemctl --user start syncthing.service systemctl --user start syncthing.service
systemctl --user status syncthing.service systemctl --user status syncthing.service