daniel submitted this change.
diameter: Change default bind IP to 127.0.0.8
The IP 127.0.0.4 is already used by the open5gs smf. Since the mme by default
tries to connect to the hss at 127.0.0.8 let's change the default here
to something that works ootb.
Change-Id: Ibe36e86e6473caab753308837b2ced0f1b53e1f2
---
M src/osmo_dia2gsup.erl
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/osmo_dia2gsup.erl b/src/osmo_dia2gsup.erl
index be8e87c..a4edd71 100644
--- a/src/osmo_dia2gsup.erl
+++ b/src/osmo_dia2gsup.erl
@@ -69,7 +69,7 @@
% DIAMETER side
SvcName = ?MODULE,
diameter:start_service(SvcName, ?SERVICE(SvcName)),
- Ip = application:get_env(osmo_dia2gsup, diameter_ip, "127.0.0.4"),
+ Ip = application:get_env(osmo_dia2gsup, diameter_ip, "127.0.0.8"),
Port = application:get_env(osmo_dia2gsup, diameter_port, 3868),
Proto = application:get_env(osmo_dia2gsup, diameter_proto, sctp),
listen({address, Proto, element(2,inet:parse_address(Ip)), Port}),
To view, visit change 28656. To unsubscribe, or for help writing mail filters, visit settings.