Add scuttlebot to mesh firewall
This commit is contained in:
parent
fe6495c2a2
commit
3d8b46f0c1
|
@ -158,6 +158,8 @@ function stop {
|
||||||
# SSB/Scuttlebot/Patchwork
|
# SSB/Scuttlebot/Patchwork
|
||||||
iptables -D INPUT -p udp --dport 8008 -j ACCEPT
|
iptables -D INPUT -p udp --dport 8008 -j ACCEPT
|
||||||
iptables -D INPUT -p tcp --dport 8008 -j ACCEPT
|
iptables -D INPUT -p tcp --dport 8008 -j ACCEPT
|
||||||
|
iptables -D INPUT -p udp --dport 8010 -j ACCEPT
|
||||||
|
iptables -D INPUT -p tcp --dport 8010 -j ACCEPT
|
||||||
# vpn over the internet
|
# vpn over the internet
|
||||||
iptables -D INPUT -p tcp --dport 653 -j ACCEPT
|
iptables -D INPUT -p tcp --dport 653 -j ACCEPT
|
||||||
iptables -D INPUT -p udp --dport 653 -j ACCEPT
|
iptables -D INPUT -p udp --dport 653 -j ACCEPT
|
||||||
|
@ -328,6 +330,8 @@ function start {
|
||||||
# SSB/Scuttlebot/Patchwork
|
# SSB/Scuttlebot/Patchwork
|
||||||
iptables -A INPUT -p udp --dport 8008 -j ACCEPT
|
iptables -A INPUT -p udp --dport 8008 -j ACCEPT
|
||||||
iptables -A INPUT -p tcp --dport 8008 -j ACCEPT
|
iptables -A INPUT -p tcp --dport 8008 -j ACCEPT
|
||||||
|
iptables -A INPUT -p udp --dport 8010 -j ACCEPT
|
||||||
|
iptables -A INPUT -p tcp --dport 8010 -j ACCEPT
|
||||||
# vpn over the internet
|
# vpn over the internet
|
||||||
iptables -A INPUT -p tcp --dport 653 -j ACCEPT
|
iptables -A INPUT -p tcp --dport 653 -j ACCEPT
|
||||||
iptables -A INPUT -p udp --dport 653 -j ACCEPT
|
iptables -A INPUT -p udp --dport 653 -j ACCEPT
|
||||||
|
|
Loading…
Reference in New Issue