Skip to content
Snippets Groups Projects
Commit 3e4e0c30 authored by Bob Mottram's avatar Bob Mottram
Browse files

SSB also needs tcp for posts

parent 3ebd4d37
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment