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: Ibe36e86e6473caab753308837b2ced0f1b53e1f2changes/56/28656/2
parent
173095f9fa
commit
9ff2e8452b
|
@ -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}),
|
||||
|
|
Loading…
Reference in New Issue