Displaying 1 result from an estimated 1 matches for "forw_fast_out_dst_".
2004 Jun 11
1
R2q stuff
...na2="xxx.xxx.xxx.xxx/27"
/sbin/iptables -t mangle -F
/sbin/iptables -t mangle -X
# ICMP
$iptables -t mangle -A PREROUTING -p icmp -j MARK --set-mark
$fast_mark
# TRAFICO OUT
for i in $average_port
do
$iptables -t mangle -N FORW_FAST_OUT_DST_$i
$iptables -t mangle -A FORWARD -i $interfaz_interna -o
$interfaz_externa -p tcp -m mport --ports $i -j FORW_FAST_OUT_DST_$i
$iptables -t mangle -A FORW_FAST_OUT_DST_$i -j MARK --set-mark
$fast_mark
done
# dns fast
$iptables -t mangle -A FORWARD -p udp -m...