#/00510
##########################################################################
#    ping     
##########################################################################

$IPTABLES -t filter -A FORWARD -o $INTERFACE -p icmp --icmp-type 8 --src $PARAM1 --dst $PARAM2 -j ACCEPT
$IPTABLES -t filter -A FORWARD -i $INTERFACE -p icmp --icmp-type 0 -m state --state RELATED,ESTABLISHED --src $PARAM2 --dst $PARAM1 -j ACCEPT


