测试环境
操作系统: Ubuntu 20.04 LTS;
处理器为: Intel® Core™ i7-4790K CPU @ 4.00GHz。
网卡使用的是Intel的I210千兆网卡。
DPDK版本19.02。
测试拓扑:
|----------------|
| Ubuntu(DPDK) |
| |
| eth0 eth1 |
1.1.1.1 |----|------|----| 2.1.1.1
00:60:E0:6F:C8:7D | | 00:60:E0:6F:C8:7E
/ \
/ \
/ \
/ \
00:60:E0:7A:6C:78 / \ 00:60:E0:7A:6C:79
1.1.1.2 | | 2.1.1.2
|--------|------| |-------|-------|
| eth0 | | eth0 |
| | | |
| Ubuntu0 | | Ubuntu1 |
|---------------| |---------------|
如下l3fwd_lpm.c文件中的默认路由表项,port0的网段为:1.1.1.0/24;port1的网段为:2.1.1.0/24。以上拓扑假定port0的IP地址为:1.1.1.1;port1的IP地址为:2.1.1.1,当然也可以使用其它的地址,只要是同一网段即可。
42 static struct ipv4_l3fwd_lpm_route ipv4_l3fwd_lpm_route_array[] = {
43 {IPv4(1, 1, 1, 0), 24, 0},
44 {IPv4(2, 1, 1, 0), 24, 1},
以下为Ubuntu0的配置,其接口eth0的IP地址为1.1.1.2,默认网关设置为Ubuntu(DPDK)的eth0(DPDK中的port0):
/ # ip route add default via 1.1.1.1
/ #
/ # ip r
default via 1.1.1.1 dev eth0 proto zebra
1.1.1.0/24 dev eth0 proto kernel scope link src 1.1.1.2
/ #
由于DPDK的l3fwd不能处理ARP,需要在Ubuntu0上静态指定Ubuntu(DPDK)的eth0接口IP地址对应的MAC地址:
/ # ip nei add 1.1.1.1 lladdr 00:60:E0:6F:C8:7D dev m1/1
/ #
/ # ip ne
1.1.1.1 dev m1/1 lladdr 00:60:e0:6f:c8:7d PERMANENT
以下为Ubuntu1的配置,配置与Ubuntu0类似。其接口eth0的IP地址为2.1.1.2,默认网关设置为Ubuntu(DPDK)的eth1(DPDK中的port1):
/ # ip route add default via 2.1.1.1
/ #
/ # ip r
default via 2.1.1.1 dev m1/2 proto zebra
2.1.1.0/24 dev m1/2 proto kernel scope link src 2.1.1.2
/ #
由于DPDK的l3fwd不能处理ARP,需要在Ubuntu1上静态指定Ubuntu(DPDK)的eth1接口IP地址对应的MAC地址:
/ # ip nei add 2.1.1.1 lladdr 00:60:E0:6F:C8:7E dev m1/2
/ #
/ # ip nei
2.1.1.1 dev m1/2 lladdr 00:60:e0:6f:c8:7e PERMANENT
如下命令启动l3fwd例程,eth-dest参数分别指定Ubuntu0和Ubuntu1的eth0接口的MAC地址。
./l3fwd -c 0x6 -- -p 0x3 -P --eth-dest=0,00:60:E0:7A:6C:78 --eth-dest=1,00:60:E0:7A:6C:79
如下的启动信息,port0发送报文时,使用源MAC地址为:00:60:E0:6F:C8:7D,目的MAC地址为:00:60:E0:7A:6C:78。port1发送报文时,使用源MAC地址00:60:E0:6F:C8:7E,目的MAC地址为00:60:E0:7A:6C:79。
另外,也可看到添加到LPM中的路由项。
Initializing port 0 ... Creating queues: nb_rxq=2 nb_txq=2...
Port 0 modified RSS hash function based on hardware support,requested:0xa38c configured:0x2288
Address:00:60:E0:6F:C8:7D, Destination:00:60:E0:7A:6C:78, Allocated mbuf pool on socket 0
LPM: Adding route 0x01010100 / 24 (0)
LPM: Adding route 0x02010100 / 24 (1)
Initializing port 1 ... Creating queues: nb_rxq=2 nb_txq=2...
Port 1 modified RSS hash function based on hardware support,requested:0xa38c configured:0x2288
Address:00:60:E0:6F:C8:7E, Destination:00:60:E0:7A:6C:79, txq=1,0,0
Checking link status....done
Port0 Link Up. Speed 10000 Mbps -full-duplex
Port1 Link Up. Speed 10000 Mbps -full-duplex
L3FWD: entering main loop on lcore 1
L3FWD: -- lcoreid=1 portid=0 rxqueueid=0
L3FWD: -- lcoreid=1 portid=0 rxqueueid=1
L3FWD: entering main loop on lcore 2
L3FWD: -- lcoreid=2 portid=1 rxqueueid=0
L3FWD: -- lcoreid=2 portid=1 rxqueueid=1
在Ubuntu0上ping主机Ubuntu1的IP地址:2.1.1.2,收到回复,链路是通的。