You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have implemented Open5gs (5g core) network with DPDK in the UPF. I am following s5uishida's dpdk VPP-UPF repository. I have UPG-VPP v1.13.0 version and FPP-VPP v22.10.13. I checked the VPP status. There is some issue with the memory it must show 1.4G and vlib_plugin_registration size mismatch.
I have implemented Open5gs (5g core) network with DPDK in the UPF. I am following s5uishida's dpdk VPP-UPF repository. I have UPG-VPP v1.13.0 version and FPP-VPP v22.10.13. I checked the VPP status. There is some issue with the memory it must show 1.4G and vlib_plugin_registration size mismatch.
Startup.conf -
heapsize 2G
unix {
nodaemon
log /tmp/vpp.log
full-coredump
gid vpp
interactive
cli-listen /run/vpp/cli.sock
exec /root/openair-upf/init.conf
}
api-trace {
on
}
cpu {
main-core 0
corelist-workers 1
}
api-segment {
gid vpp
}
dpdk {
dev 0000:00:09.0 {name n3}
dev 0000:00:0a.0 {name n4}
dev 0000:00:10.0 {name n6}
}
plugins {
path /usr/local/vpp/lib/x86_64-linux-gnu/vpp_plugins/
plugin oddbuf_plugin.so {enable}
plugin dpdk_plugin.so {enable}
plugin upf_plugin.so {enable}
}
init.conf -
set interface ip table n6 0
set interface mtu 9000 n6
set interface ip address n6 IP_ADDR
set interface state n6 up
set interface ip table n4 0
set interface mtu 9000 n4
set interface ip address n4 IP_ADDR
set interface state n4 up
set interface ip table n3 0
set interface mtu 9000 n3
set interface ip address n3 IP_ADDR
set interface state n3 up
ip route add 0.0.0.0/0 table 0 via IP_ADDR n6
upf pfcp endpoint ip IP_ADDR vrf 0
upf node-id fqdn IP_ADDR
upf nwi name internet vrf 0
upf specification release 16
upf gtpu endpoint ip IP_ADDR nwi internet teid 0x000004d2/2
The text was updated successfully, but these errors were encountered: