vpp
文章平均质量分 73
懒少
技术交流QQ 287899762
展开
-
vpp acl-plugin 实现分析
vpp版本:v23.06。原创 2023-12-27 15:52:12 · 1400 阅读 · 0 评论 -
VPP-ACL
cop feature通过使用fib,实现数据包的依次匹配过滤功能。它们主要的作用是通过添加fib表,对数据包进行源地址过滤。cop 节点(input & white-list)在vpp FIB 2.0中被重新启用,从本质上讲,如果在FIB中查找成功,则表明数据包已被列入白名单,可以转发。cop-input节点:判别数据帧是ipv4 或者是ipv6,然后转发到ipN-copwhitelist节点ip4-copwhitelist/ip6-copwhitelist。翻译 2023-08-14 15:38:32 · 631 阅读 · 0 评论 -
vpp运行问题总结
vpp原创 2023-02-20 17:06:49 · 304 阅读 · 1 评论 -
dpdk flow filter总结(flow director/ rte_flow)
dpdk flow filter原创 2022-07-06 16:51:53 · 2533 阅读 · 0 评论 -
DPDK 编译安装(meson ninja)
dpdk原创 2022-03-27 10:43:04 · 4378 阅读 · 0 评论 -
vpp+dpdk 安装与运行
参考:http://blog.csdn.net/icebluechao/article/details/51208560 (感谢 VPP&DPDK 417538415的群主)vpp主页:https://wiki.fd.io/view/VPP一、获取vpp源码:1、git方式(https://wiki.fd.io/view/VPP/Pulling,_Building,_原创 2016-11-09 16:13:22 · 31583 阅读 · 2 评论 -
vpp命令总结
create sub BondEthernet0 834创建子接口,tag是834set interface ip table BondEthernet0.834 1将此接口设置在fib 1里set interface ip address BondEthernet0.834 192.168.0.250/24设置接口ipset interface s原创 2016-11-24 17:03:10 · 19124 阅读 · 1 评论 -
vpp代码dpdk-input node后加feature node 不能trace原因
1,trace功能在使能trace功能后,发现dpdk-input的feature节点是没有开启trace的,因为查看代码\vpp-1701\vnet\vnet\devices\dpdk\node.c中函数使能trace的代码是 /* * Turn this on if you run into * "bad monkey" contexts, and yo原创 2017-02-24 11:15:48 · 2455 阅读 · 0 评论 -
vpp honeycomb 总结
现在时间是2017.2.14相关链接控制拓扑介绍 https://fd.io/technology honeycomb主页 https://wiki.fd.io/view/Honeycomb netconf协议RFC https://tools.ietf.org/html原创 2017-02-14 16:16:00 · 3436 阅读 · 0 评论 -
vpp 类veth接口实现(连接多vrouter,多vbridge)
如下图所示,需要在vpp里虚拟多个vrouter时,vrouter之间的连接可以通过创建veth口进行通信(例如图中的port2和port4,可以用一对veth实现),但veth口的性能不太好,所以我在vpp的device设备里设计了一种我称为vepair的接口,模拟veth功能,vepair创建时也是一对,但vepair添加的只是vpp的处理node,并没有内存方面的操作,所以性能有所提升。如需原创 2017-01-19 14:57:10 · 3556 阅读 · 0 评论 -
vpp feature node使用分析总结(snat)
vpp node框架的分析请查看http://blog.csdn.net/jqh9804在分析vpp代码snat插件时,看到了以feature模式添加node的方式,于是简单分析了一下feature node的api以ip4-unicast类为例:ARC (Argonaut RISC Core) 文件:ip4_forward.c/* Built-in ip4 uni原创 2016-12-16 17:34:47 · 8404 阅读 · 1 评论 -
VPP NAT测试,不支持VLAN,在NAT下arp学习有问题,需要手动添加;直连接口ICMP不支持,
================================= CARRIER GRADE NAT - NAT44 README ================================= What is implemented:====================* NAT44 UDP, TCP,转载 2016-07-20 14:05:00 · 2277 阅读 · 1 评论 -
cisco vpp NAT VLAN支持
What is implemented:====================* NAT44 UDP, TCP, ICMP protocols* Show and config commands for various parameters for the same* NF9 logging is implemented but is not tested What is原创 2016-07-29 14:45:08 · 4240 阅读 · 0 评论