在Linux中制作虚拟网络接口?
我正在构建一个进行网络加速的程序,我需要知道如何在 Linux 上创建一个网络接口,该接口不是将数据定向到实际接口,而是将信息定向到我的程序,以便可以加速。 我们的想法是使其成为一个透明的系统,这样程序只需像普通接口一样使用该接口,但流量会运行得更快。
I'm building a program that does network acceleration, and I need to know how to create a network interface on Linux that instead of directing data to an actual interface, directs information to my program, so that it can be accelerated. The idea is to make it a transparent system, so that programs just have to use the interface like a normal one, but the traffic will run faster.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定您到底希望如何实现这一目标,或者用例是什么,但另一种方法是使用 NFQUEUE iptables 目标规则。
然后,您可以将部分流量定向到用户空间程序,该程序可以选择修改它或做任何它想做的事情。
I'm unsure as to how exactly you hope to achieve this, or what the use-case is, but one other way of doing it is to use a NFQUEUE iptables target rule.
Then you can direct just some of the traffic to a userspace program which can optionally modify it or do anything it wants, really.
您需要 tun/tap 设备:
http://en.wikipedia.org/wiki/TUN/TAP
You want the tun/tap device:
http://en.wikipedia.org/wiki/TUN/TAP