I'm trying to setup openvpn and I need to add the following rule among others:
iptables -A FORWARD -s 10.8.0.0/24 -d 0/0 -j ACCEPT
but, after adding this rule and running iptables -L I get the following output:
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere
Chain FORWARD (policy ACCEPT)
target prot opt source destination
ACCEPT all -- server.hosting.invalid/24 anywhere
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
which clearly states that there is an error in adding that rule or something. It must be a message from my hosting provider. Any idea how can I make that rule working?
Thank you.