Orange-OpenSource / towards5gs-helm

Helm charts for deploying 5G network services on Kubernetes
Other
167 stars 130 forks source link

No uesimtun0 interface in UE pod #33

Closed anhdangkhoa closed 2 years ago

anhdangkhoa commented 2 years ago

Hi, I am trying to install free5gc into my VirtualBox VM with single-node Kubernetes cluster (Pod is scheduled to Master node) In my VM, I have three interfaces:

Since the VM does not have interface eth0 and eth1. I have reconfigured it with the instruction in Network configuration:

Install free5gc

helm -n free5gc install free5gc-v1 towards5gs/free5gc --set global.n2network.masterIf=enp0s3,\
  global.n3network.masterIf=enp0s3,global.n4network.masterIf=enp0s3,\
  global.n6network.masterIf=enp0s3,global.n9network.masterIf=enp0s3,\
  global.n6network.subnetIP=10.0.2.0,global.n6network.gatewayIP=10.0.2.2,\
  free5gc-upf.upf.n6if.ipAddress=10.0.2.15

Install the UERANSIM Helm chart

helm -n free5gc install ueransim towards5gs/ueransim --set\
  global.n2network.masterIf=enp0s3,global.n3network.masterIf=enp0s3

All the pod are running successfully

image

However, there is no uesimtun0 in ue pod as in instruction so that I cannot perform ping test

image

Here are the kubectl logs of AMF, UPF, SMF, gNB and UE

AMF image SMF image UPF image gNB image UE image

Can you guys help me pinpoint the problem? Thanks in advance!!!

raoufkh commented 2 years ago

Hello

It seems that the UE cannot authenticate. Have you added the subscriber through the Free5GC webui? If not please refer to this to access the webui and then the Free5GC Wiki to do it.

anhdangkhoa commented 2 years ago

Thank you,

After I added the subscriber through the Free5GC webui the uesimtun0 showed up.