#/03000
#######################################################################
#   traceroute-   
#  traceroute  -S 32769:65535 -D 33434:33523
#######################################################################

$IPTABLES -t filter -A FORWARD -o $INTERFACE -p udp --src $PARAM1 --sport 32769:65535 --dst $PARAM2 --dport 33434:33523 -j ACCEPT
$IPTABLES -t nat -A POSTROUTING -o $INTERFACE -p udp --src $PARAM1 --sport 32769:65535 --dst $PARAM2 --dport 33434:33523 -j MASQUERADE

$IPTABLES -t filter -A FORWARD -i $INTERFACE -p icmp --icmp-type 11 --src $PARAM2 --dst $PARAM1 -j ACCEPT
$IPTABLES -t filter -A FORWARD -i $INTERFACE -p icmp --icmp-type 3 --src $PARAM2 --dst $PARAM1 -j ACCEPT
