daniel has uploaded this change for review.

View Change

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}),

To view, visit change 28656. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: erlang/osmo_dia2gsup
Gerrit-Branch: master
Gerrit-Change-Id: Ibe36e86e6473caab753308837b2ced0f1b53e1f2
Gerrit-Change-Number: 28656
Gerrit-PatchSet: 1
Gerrit-Owner: daniel <dwillmann@sysmocom.de>
Gerrit-MessageType: newchange