猫言猫语

严以律己·宽以待人·自强不息·知行合一

为 OpenWrt iptables 添加 recent 模块

| 为 OpenWrt iptables 添加 recent 模块已关闭评论

opkg update
opkg install iptables-mod-conntrack-extra

安装后手动载入相应内核模块,或者直接重新启动一次路由器

insmod /lib/modules/3.10.49/xt_recent.ko

给 iptables 添加规则

iptables -A input_lan_rule -p icmp -m recent --set --name WifiQRCode3600 --rsource

此时 WifiQRCode3600 规则表是空的

cat /proc/1/net/xt_recent/WifiQRCode3600

ping 一下路由器

ping 192.168.1.1

WifiQRCode3600 里面有内容了

cat /proc/1/net/xt_recent/WifiQRCode3600
src=192.168.1.2 ttl: 64 last_seen: 576647 oldest_pkt: 1 576647

评论已关闭。