fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/docker-playground/+/37270?usp=email )
Change subject: ttcn3-s1gw-test: fix using unassigned addr for osmo-s1gw ......................................................................
ttcn3-s1gw-test: fix using unassigned addr for osmo-s1gw
This patch finally makes ttcn3-s1gw-test pass.
Change-Id: I109a5feaca5acf050008e883cc8b4e1e28beebab Related: SYS#6772 --- M ttcn3-s1gw-test/S1GW_Tests.cfg M ttcn3-s1gw-test/osmo-s1gw.config 2 files changed, 14 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/70/37270/1
diff --git a/ttcn3-s1gw-test/S1GW_Tests.cfg b/ttcn3-s1gw-test/S1GW_Tests.cfg index a81c95e..b0f6c2d 100644 --- a/ttcn3-s1gw-test/S1GW_Tests.cfg +++ b/ttcn3-s1gw-test/S1GW_Tests.cfg @@ -7,7 +7,7 @@ [TESTPORT_PARAMETERS]
[MODULE_PARAMETERS] -S1GW_Tests.mp_s1gw_enb_ip := "172.18.10.200"; +S1GW_Tests.mp_s1gw_enb_ip := "172.18.10.100"; S1GW_Tests.mp_s1gw_mme_ip := "172.18.10.100"; S1GW_Tests.mp_mme_bind_ip := "172.18.10.101";
diff --git a/ttcn3-s1gw-test/osmo-s1gw.config b/ttcn3-s1gw-test/osmo-s1gw.config index 13b5058..4dabb8f 100644 --- a/ttcn3-s1gw-test/osmo-s1gw.config +++ b/ttcn3-s1gw-test/osmo-s1gw.config @@ -11,7 +11,7 @@ %% +----------------+ +-----------------+ %% ================================================================================ {osmo_s1gw, - [{s1gw_bind_addr, "172.18.10.200"}, %% S1GW bind address for incoming eNB connections + [{s1gw_bind_addr, "172.18.10.100"}, %% S1GW bind address for incoming eNB connections {mme_loc_addr, "172.18.10.100"}, %% local address for outgoing connections to the MME {mme_rem_addr, "172.18.10.101"} %% remote address for outgoing connections to the MME ]},