Docly

Docly

Did You Know?

You can create any type of product documentation with Docly

IPtables for routing over OpenVPN on Linux

Enable forwarding: sysctl -w net.ipv4.ip_forward=1 Create this script eg sudo nano iptables.sh eth=$1 proto=$2 port=$3 # OpenVPN iptables -A INPUT -i "$eth" -m state --state NEW -p "$proto" --dport "$port" -j ACCEPT # Allow TUN interface connections to OpenVPN server iptables