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
This commit is contained in:
Daniel Willmann 2022-07-19 16:12:19 +02:00
parent 173095f9fa
commit 9ff2e8452b
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ init(State) ->
% 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}),