Browse Source

Port used for SSB udp broadcasts on lan

Bob Mottram 7 years ago
parent
commit
3ebd4d372d
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      src/freedombone-mesh-batman

+ 4
- 0
src/freedombone-mesh-batman View File

155
     iptables -D INPUT -p tcp --dport $LIBREVAULT_PORT -j ACCEPT
155
     iptables -D INPUT -p tcp --dport $LIBREVAULT_PORT -j ACCEPT
156
     iptables -D INPUT -p udp --dport $LIBREVAULT_PORT -j ACCEPT
156
     iptables -D INPUT -p udp --dport $LIBREVAULT_PORT -j ACCEPT
157
     iptables -D INPUT -p tcp --dport $TAHOELAFS_PORT -j ACCEPT
157
     iptables -D INPUT -p tcp --dport $TAHOELAFS_PORT -j ACCEPT
158
+    # SSB/Patchwork
159
+    iptables -D INPUT -p udp --dport 8008 -j ACCEPT
158
 
160
 
159
     systemctl restart network-manager
161
     systemctl restart network-manager
160
 }
162
 }
307
     iptables -A INPUT -p tcp --dport $LIBREVAULT_PORT -j ACCEPT
309
     iptables -A INPUT -p tcp --dport $LIBREVAULT_PORT -j ACCEPT
308
     iptables -A INPUT -p udp --dport $LIBREVAULT_PORT -j ACCEPT
310
     iptables -A INPUT -p udp --dport $LIBREVAULT_PORT -j ACCEPT
309
     iptables -A INPUT -p tcp --dport $TAHOELAFS_PORT -j ACCEPT
311
     iptables -A INPUT -p tcp --dport $TAHOELAFS_PORT -j ACCEPT
312
+    # SSB/Patchwork
313
+    iptables -A INPUT -p udp --dport 8008 -j ACCEPT
310
 
314
 
311
     systemctl restart avahi-daemon
315
     systemctl restart avahi-daemon
312
 
316