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
In my environment, the UPF is expected to use separate network interfaces for N3 and N9 interfaces.
The example UPF config allows two methods to write the configuration:
If there are multiple connection, set addr to 0.0.0.0 or list all the addresses
As tested, only the first method works.
This is caused by forwarder.NewDriver only listens on the first configured IP address, and ignores other addresses in ifList:
In my environment, the UPF is expected to use separate network interfaces for N3 and N9 interfaces.
The example UPF config allows two methods to write the configuration:
In the first method, I can write as:
In the second method, I can write as:
As tested, only the first method works.
This is caused by
forwarder.NewDriver
only listens on the first configured IP address, and ignores other addresses inifList
:go-upf/internal/forwarder/driver.go
Lines 53 to 58 in efae753
Suggested solution is updating the example config, asking user to take the first method only.
The text was updated successfully, but these errors were encountered: