Displaying 1 result from an estimated 1 matches for "server_external_ip".
2007 Feb 12
0
Little problem with ifb. How to catch server traffic on IFB...
...traffic from my router, all with NATed LAN
traffic... And there is no way to filter this traffic:/
$TC qdisc add dev $iface_wan handle ffff: ingress
$TC qdisc add dev $iface_wan root handle 1:0 htb
#Incoming traffic...
$TC filter add dev $iface_wan parent ffff: protocol ip prio 1 u32 match
ip dst $server_external_IP flowid 1:1 action mirred egress redirect dev ifb0
#Outgoing traffic...
$TC filter add dev $iface_wan parent 1:0 protocol ip prio 1 u32 match ip
src $server_external_IP flowid 1:1 action mirred egress redirect dev ifb1
I need some help... Is any possibility to do this? How to catch packets
which is...