Displaying 1 result from an estimated 1 matches for "iface_wan".
Did you mean:
iface_lan
2007 Feb 12
0
Little problem with ifb. How to catch server traffic on IFB...
...ocol ip prio 1 u32 match
ip src 192.168.0.0/16 flowid 1:1 action mirred egress redirect dev ifb1
I need some rules to throw all traffic from my server to ifb.
This rules throw all 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...