Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-UPF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-UPF
Commits
10e44d60
Commit
10e44d60
authored
Jul 05, 2022
by
Rohan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update docs/VPP_UPF_CONFIG_WITH_DPDK.md
parent
51ac716a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
66 additions
and
0 deletions
+66
-0
docs/VPP_UPF_CONFIG_WITH_DPDK.md
docs/VPP_UPF_CONFIG_WITH_DPDK.md
+66
-0
No files found.
docs/VPP_UPF_CONFIG_WITH_DPDK.md
0 → 100644
View file @
10e44d60
<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
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment