However with IPTABLES enabled I am not able to ping 10.0.0.1 from Host B (10.0.0.2)
I have tried a number of rules including:
Code: Select all
#Reject PING
-A INPUT -j REJECT --reject-with icmp-host-prohibited
#Allow PING on vpn0
-A INPUT -i vpn0 -p icmp --icmp-type echo-request -j ACCEPT
-A OUTPUT -o vpn0 -p icmp --icmp-type echo-reply -j ACCEPTI am able to ping other devices on my local network successfully.
Any suggestions are appreciated.

