Commit 10e44d60 authored by Rohan's avatar Rohan

Update docs/VPP_UPF_CONFIG_WITH_DPDK.md

parent 51ac716a
<br/>
<br/>
<br/>
#### Bind NIC with relavent dpdk driver ####
#### Update VPP startup config ####
```bash
dpdk {
dev default {
num-rx-queues 1
num-rx-queues 1
}
dev 0000:e2:00.1 {name n3}
dev 0000:e2:00.2 {name n6}
}
plugins {
path /usr/lib64/vpp_plugins/
plugin dpdk_plugin.so { enable }
plugin gtpu_plugin.so { disable }
plugin upf_plugin.so { enable }
}
```
<br/>
Below is sample vpp-upf configuration with dpdk binded interfaces. <br/>
<br/>
```bash
ip table add 1
ip table add 2
set interface ip table n3 1
set interface mtu 9000 n3
set interface ip address n3 10.0.3.10/24
set interface state n3 up
set interface ip table n6 2
set interface mtu 9000 n6
set interface ip address n6 10.0.4.10/24
set interface state n6 up
create host-interface name eth0
set interface mtu 9000 host-eth0
set interface ip table host-eth0 0
set interface ip address host-eth0 10.1.10.7/24
set interface state host-eth0 up
upf pfcp endpoint ip 10.1.10.7 vrf 0
upf node-id fqdn gw1.vppupf.node.5gcn.mnc95.mcc208.3gppnetwork.org
upf nwi name access.oai.org vrf 2
upf nwi name core.oai.org vrf 1
upf specification release 16
upf gtpu endpoint ip 10.0.3.10 nwi access.oai.org teid 0x000004d2/2
```
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment