What's new

RT-AX56U v1 port mirroring / SPAN not working (iptables: No chain/target/match by that name)

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

fhuang2

New Around Here
Model: Asus RT-AX56U v1
Asuswrt-Merlin: 386.3_2


SPAN / port mirroring not working

# iptables -t mangle -A PREROUTING -j ROUTE --gw 192.168.1.14 --tee
# iptables -t mangle -A POSTROUTING -j ROUTE --gw 192.168.1.14 --tee

iptables: No chain/target/match by that name.

The above commands worked on Asus RT-AC3100 (Asuswrt-Merlin: 386.3_2)
 
Don't use ROUTE use TEE.
Code:
modprobe xt_TEE
iptables -t mangle -A PREROUTING -j TEE --gateway 192.168.1.14
iptables -t mangle -A POSTROUTING -j TEE --gateway 192.168.1.14
 

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top