vpn firewall settings appear to be needed for Patchwork to discover local peers
This commit is contained in:
parent
df33a12702
commit
c9189104d5
|
@ -454,22 +454,22 @@ function start {
|
||||||
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 udp --dport 8010 -j ACCEPT
|
||||||
iptables -A INPUT -p tcp --dport 8010 -j ACCEPT
|
iptables -A INPUT -p tcp --dport 8010 -j ACCEPT
|
||||||
if [[ "$ethernet_connected" != "0" ]]; then
|
# vpn over the internet
|
||||||
# vpn over the internet
|
# Note: the vpn firewall settings are needed in order for Patchwork
|
||||||
iptables -A INPUT -p tcp --dport 653 -j ACCEPT
|
# to discover local peers
|
||||||
iptables -A INPUT -p udp --dport 653 -j ACCEPT
|
iptables -A INPUT -p tcp --dport 653 -j ACCEPT
|
||||||
iptables -A INPUT -i ${EIFACE} -m state --state NEW -p tcp --dport 1194 -j ACCEPT
|
iptables -A INPUT -p udp --dport 653 -j ACCEPT
|
||||||
iptables -A INPUT -i tun+ -j ACCEPT
|
iptables -A INPUT -i ${EIFACE} -m state --state NEW -p tcp --dport 1194 -j ACCEPT
|
||||||
iptables -A FORWARD -i tun+ -j ACCEPT
|
iptables -A INPUT -i tun+ -j ACCEPT
|
||||||
iptables -A FORWARD -i tun+ -o ${EIFACE} -m state --state RELATED,ESTABLISHED -j ACCEPT
|
iptables -A FORWARD -i tun+ -j ACCEPT
|
||||||
iptables -A FORWARD -i ${EIFACE} -o tun+ -m state --state RELATED,ESTABLISHED -j ACCEPT
|
iptables -A FORWARD -i tun+ -o ${EIFACE} -m state --state RELATED,ESTABLISHED -j ACCEPT
|
||||||
iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o ${EIFACE} -j MASQUERADE
|
iptables -A FORWARD -i ${EIFACE} -o tun+ -m state --state RELATED,ESTABLISHED -j ACCEPT
|
||||||
iptables -A OUTPUT -o tun+ -j ACCEPT
|
iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o ${EIFACE} -j MASQUERADE
|
||||||
echo 1 > /proc/sys/net/ipv4/ip_forward
|
iptables -A OUTPUT -o tun+ -j ACCEPT
|
||||||
sed -i 's|# net.ipv4.ip_forward|net.ipv4.ip_forward|g' /etc/sysctl.conf
|
echo 1 > /proc/sys/net/ipv4/ip_forward
|
||||||
sed -i 's|#net.ipv4.ip_forward|net.ipv4.ip_forward|g' /etc/sysctl.conf
|
sed -i 's|# net.ipv4.ip_forward|net.ipv4.ip_forward|g' /etc/sysctl.conf
|
||||||
sed -i 's|net.ipv4.ip_forward.*|net.ipv4.ip_forward=1|g' /etc/sysctl.conf
|
sed -i 's|#net.ipv4.ip_forward|net.ipv4.ip_forward|g' /etc/sysctl.conf
|
||||||
fi
|
sed -i 's|net.ipv4.ip_forward.*|net.ipv4.ip_forward=1|g' /etc/sysctl.conf
|
||||||
|
|
||||||
systemctl restart avahi-daemon
|
systemctl restart avahi-daemon
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue