BSC_Tests_CBSP: use proper default values for mp_cbc_ip / mp_cbc_ip6

Otherwise it's impossible to run the CBSP test cases locally, because
the remote peer address in osmo-bsc gets set to '0.0.0.0', so indeed
it cannot establish connection to the server.

Change-Id: I5b1d215818255717ed955c9f1a9c45505ab11a65
Fixes: OS#5351
This commit is contained in:
Vadim Yanitskiy 2021-12-10 19:16:12 +03:00 committed by fixeria
parent c041e9902f
commit 68d418e344
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ import from Osmocom_VTY_Functions all;
import from TELNETasp_PortType all;
modulepar {
charstring mp_cbc_ip := "0.0.0.0";
charstring mp_cbc_ip6 := "::";
charstring mp_cbc_ip := "127.0.0.1";
charstring mp_cbc_ip6 := "::1";
integer mp_cbc_port := 48049;
charstring mp_bsc_cbsp_ip := "127.0.0.1";
charstring mp_bsc_cbsp_ip6 := "::1";