From b6ebaf7d7d31ff7d44e7b8660e306dd58c127df8 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Aug 2015 12:07:14 +0300 Subject: [PATCH] blog/ufw: add transmission-daemon --- _posts/2015-06-12-ufw.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_posts/2015-06-12-ufw.md b/_posts/2015-06-12-ufw.md index 055fa11..a40abb2 100644 --- a/_posts/2015-06-12-ufw.md +++ b/_posts/2015-06-12-ufw.md @@ -25,6 +25,7 @@ ufw enable ufw reject 113 ufw allow from 172.16.0.0/16 to any port 631 ufw allow from 172.16.0.0/16 to any port 5353 +ufw allow from 172.16.0.0/16 to any port 9091 ufw allow 17500/tcp ufw allow 60000:61000/udp ``` @@ -45,6 +46,8 @@ ufw allow 60000:61000/udp * 631/cups — Allow access to cups for printer sharing from local network * 5353/mdns/Avahi — used for `.local` addresses and probably not needed outside local network +* 9091/transmission web interface — also something I want to access from + LAN. * 17500/Dropbox — which I use everywhere * 60000:61000/mosh — I feel this is the most insecure part of this setup and there should be something bettter instead of this.