摘要:
创建网卡子接口,添加IP别名 ifconfig eth0:0 2.2.2.2/24 或 ip addr add 2.2.2.2/24 dev eth0 label eth0:0 清除网卡子接口,删除IP别名 ifconfig eth0:1 down 或 ip addr del 2.2.2.2/24 阅读全文
摘要:
在默认路由表添加路由ip route add 网络 via 网关 dev 网卡 在指定路由表添加路由ip route add 网络 via 网关 dev 网卡 table 路由表 查看默认路由表路由ip route 查看指定路由表路由ip route show table 路由表ip route l 阅读全文
摘要:
dpdk应用程序启动失败,信息提示:Current CONFIG_RTE_MAX_MEMSEG=256 is not enoughPlease either increase it or request less amount of memory.PANIC in rte_eal_init():Ca... 阅读全文
摘要:
34 writing efficient code 编写有效的代码 34.1 Memory 内存 本节介绍一些关键的内存考虑点,当在DPDK环境开发应用程序时。 34.1.1 Memory Copy: Do not Use libc in the Data Plane 内存拷贝:不要再数据面使用li 阅读全文