daniel has uploaded this change for review. ( https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28656 )
Change subject: diameter: Change default bind IP to 127.0.0.8 ......................................................................
diameter: Change default bind IP to 127.0.0.8
The IP 127.0.0.4 is already used by the 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(-)
git pull ssh://gerrit.osmocom.org:29418/erlang/osmo_dia2gsup refs/changes/56/28656/1
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}),