bpf echo
1.0.0
bpf-echo 是一款速度极快的 TCP 和 UDP 回显服务器,支持 IPv4 和 IPv6 流量。它的实现利用扩展的 Berkeley 数据包过滤器和 BPF 编译器集合,以便将传出数据包直接重定向回发送套接字的接收队列。它非常适合对代理服务器或网络库进行基准测试,您希望在其中确保上游服务器不是瓶颈。
运行bpf-echo
的要求是:
pip3 install pyroute2
python3-bpfcc
。查看 bcc 的 INSTALL.md 了解更多详细信息4.1
$ sudo ./bpf-echo --ipv4 127.0.0.1 --port 1122 # run in different terminal
$ echo "hello" | nc -W1 127.0.0.1 1122
hello
usage: bpf-echo.py [-h] [--ipv4 IPV4] [--ipv6 IPV6] [--port PORT]
[--ifname IFNAME]
optional arguments:
-h, --help show this help message and exit
--ipv4 IPV4 IPv4 address that will reflect packets. Disabled if empty
string. (default: 127.0.0.1)
--ipv6 IPV6 IPv6 address that will reflect packets. Disabled if empty
string. (default: )
--port PORT TCP/UDP destination port that will reflect packets.
(default: 12345)
--ifname IFNAME Interface the eBPF classifier will be loaded on. (default:
lo)
BPF 的实现相当简单,因此做出了一些妥协: