gbproxy: Use separate NS-VC for data + signaling
This follows the change implemented in osmo-ttcn3-hacks.git If0e404bdf2c30a5e18748695608611be83f61109 to use data-only and signalling-only NS-VCs on the SGSN side Change-Id: I58f8a6d1c8d01551d366bd7d0dbfb892cce512ae Requires: osmo-ttcn3-hacks.git If0e404bdf2c30a5e18748695608611be83f61109 Related: OS#4953changes/08/22308/2
parent
9f53e36985
commit
98365d159f
|
@ -25,6 +25,17 @@ GBProxy_Tests.mp_nsconfig_sgsn := {
|
|||
local_udp_port := 23000,
|
||||
remote_ip := "172.18.25.10",
|
||||
data_weight := 1,
|
||||
signalling_weight := 0
|
||||
}
|
||||
}
|
||||
}, {
|
||||
provider := {
|
||||
ip := {
|
||||
address_family := AF_INET,
|
||||
local_ip := "172.18.25.103",
|
||||
local_udp_port := 23000,
|
||||
remote_ip := "172.18.25.10",
|
||||
data_weight := 0,
|
||||
signalling_weight := 1
|
||||
}
|
||||
}
|
||||
|
@ -41,6 +52,17 @@ GBProxy_Tests.mp_nsconfig_sgsn := {
|
|||
local_udp_port := 24000,
|
||||
remote_ip := "172.18.25.10",
|
||||
data_weight := 1,
|
||||
signalling_weight := 0
|
||||
}
|
||||
}
|
||||
}, {
|
||||
provider := {
|
||||
ip := {
|
||||
address_family := AF_INET,
|
||||
local_ip := "172.18.25.103",
|
||||
local_udp_port := 24000,
|
||||
remote_ip := "172.18.25.10",
|
||||
data_weight := 0,
|
||||
signalling_weight := 1
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,6 +24,17 @@ GBProxy_Tests.mp_nsconfig_sgsn := {
|
|||
local_udp_port := 23000,
|
||||
remote_ip := "172.18.24.10",
|
||||
data_weight := 1,
|
||||
signalling_weight := 0
|
||||
}
|
||||
}
|
||||
}, {
|
||||
provider := {
|
||||
ip := {
|
||||
address_family := AF_INET,
|
||||
local_ip := "172.18.24.103",
|
||||
local_udp_port := 23000,
|
||||
remote_ip := "172.18.24.10",
|
||||
data_weight := 0,
|
||||
signalling_weight := 1
|
||||
}
|
||||
}
|
||||
|
@ -40,6 +51,17 @@ GBProxy_Tests.mp_nsconfig_sgsn := {
|
|||
local_udp_port := 24000,
|
||||
remote_ip := "172.18.24.10",
|
||||
data_weight := 1,
|
||||
signalling_weight := 0
|
||||
}
|
||||
}
|
||||
}, {
|
||||
provider := {
|
||||
ip := {
|
||||
address_family := AF_INET,
|
||||
local_ip := "172.18.24.103",
|
||||
local_udp_port := 24000,
|
||||
remote_ip := "172.18.24.10",
|
||||
data_weight := 0,
|
||||
signalling_weight := 1
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue