Closed gustavobsch closed 1 year ago
I may be experiencing the same issue.
However, while I see tun_srsue
interface created with ip netns exec ue1 ip addr , the UE can't ping nor the GW neither its own IP.
@gustavobsch As @emunicio mentioned, the tun interface gets created in the namespace you create (i.e. ue1). So in order to see the tun interface you need to execute ip netns exec ue1 ip addr
@emunicio Have you tried pinging as follows?
ip netns exec ping <IP_ADDRESS>
Yes, the problem was that the local IP of the conf file of the gnb was wrong ;-) I guess we can close this
Issue Description
[Describe the issue in detail] I'm following the recently created 'srsRAN gNB with srsUE' user guide and when I run srsue it can register with the open5gs network fine, it gets a valid IP from the DN assigned the problem is the tun_srsue interface is not created
Setup Details
[Specify details of the test setup. This would help us reproduce the problem reliably] srsRan 23.3 using the gnb.yml and ue.conf config from the referenced guide
Expected Behavior
[What you expect to happen] The tun_srsue should get created in order for IP traffic flow to/from the simulated UE
Actual Behaviour
[What happens instead e.g. error message] The tun_srsue is not created, I run 'ip link' and it doesn't show. I can't ping either
Steps to reproduce the problem
[Tell us how to reproduce this issue e.g. RF setup, application config files] Compile srsran_4G and srsran with zmq support Use the config files provided and then run it with
Additional Information
[Any additional information, configuration or data that might be necessary to reproduce the issue]
I'm running both gnb and srsue on Kubernetes. The pods have elevated privileges and tun interface can get created manually as I show below. I also tested the UERANSIM software UE and the tun interface gets properly created so I don't think kubernetes is the cause but it might be related.