./net_speeder 网卡名 加速规则其中加速规则采用 bpf 规则,一般常用下面规则来启动
./net_speeder venet0 "ip"
./net_speeder venet0 "tcp"这样可能存在安全隐患,可用 iptables 来处理,但并未从根源来解决
https://www.v2ex.com/t/248273
其实可以用 bpf 规则使之只复制发出的包,下面 3 条规则供参考
复制本机发出的 tcp 包:
./net_speeder venet0 "tcp and src host 本机 IP 地址"复制本机某个端口发出的 tcp 包:
./net_speeder venet0 "tcp src port 端口号 and src host 本机 IP 地址"复制本机多个端口发出的 tcp 包:
./net_speeder venet0 "(tcp src port 端口号1 or 端口号2 or 端口号3) and src host 本机 IP 地址"
(注:本机 IP 地址不要用 127.0.0.1 ,可用 hostname -I | tr ' ' '\n' | grep '[0-9]' | grep -v '127\.0\.0\.'来获取)
参考:
https://biot.com/capstats/bpf.html