From 3e4e0c3007a0f0ce7e90b89e51e662b4d0be5164 Mon Sep 17 00:00:00 2001
From: Bob Mottram <bob@freedombone.net>
Date: Sun, 17 Sep 2017 11:23:41 +0100
Subject: [PATCH] SSB also needs tcp for posts

---
 src/freedombone-mesh-batman | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/freedombone-mesh-batman b/src/freedombone-mesh-batman
index 796e73dc1..83981c3a6 100755
--- a/src/freedombone-mesh-batman
+++ b/src/freedombone-mesh-batman
@@ -157,6 +157,7 @@ function stop {
     iptables -D INPUT -p tcp --dport $TAHOELAFS_PORT -j ACCEPT
     # SSB/Patchwork
     iptables -D INPUT -p udp --dport 8008 -j ACCEPT
+    iptables -D INPUT -p tcp --dport 8008 -j ACCEPT
 
     systemctl restart network-manager
 }
@@ -311,6 +312,7 @@ function start {
     iptables -A INPUT -p tcp --dport $TAHOELAFS_PORT -j ACCEPT
     # SSB/Patchwork
     iptables -A INPUT -p udp --dport 8008 -j ACCEPT
+    iptables -A INPUT -p tcp --dport 8008 -j ACCEPT
 
     systemctl restart avahi-daemon
 
-- 
GitLab