Mirror/redirect action in tc(8) | Linux | Mirror/redirect action in tc(8) |
mirred - mirror/redirect action
tc ... action mirred DIRECTION ACTION [ index INDEX ] dev DEVICENAME
DIRECTION := { ingress | egress }
ACTION := { mirror | redirect }
The mirred action allows packet mirroring (copying) or redirecting (stealing) the packet it receives. Mirroring is what is sometimes referred to as Switch Port Analyzer (SPAN) and is commonly used to analyze and/or debug flows.
Limit ingress bandwidth on eth0 to 1mbit/s, redirect exceeding traffic to lo for debugging purposes:
# tc qdisc add dev eth0 handle ffff: ingress # tc filter add dev eth0 parent ffff: u32 \ match u32 0 0 \ action police rate 1mbit burst 100k conform-exceed pipe \ action mirred egress redirect dev lo
Mirror all incoming ICMP packets on eth0 to a dummy interface for examination with e.g. tcpdump:
# ip link add dummy0 type dummy # ip link set dummy0 up # tc qdisc add dev eth0 handle ffff: ingress # tc filter add dev eth0 parent ffff: protocol ip \ u32 match ip protocol 1 0xff \ action mirred egress mirror dev dummy0
Using an ifb interface, it is possible to send ingress traffic through an instance of sfq:
# modprobe ifb # ip link set ifb0 up # tc qdisc add dev ifb0 root sfq # tc qdisc add dev eth0 handle ffff: ingress # tc filter add dev eth0 parent ffff: u32 \ match u32 0 0 \ action mirred egress redirect dev ifb0
11 Jan 2015 | iproute2 |