aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2014-06-02 10:48:59 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-06-04 16:20:46 +0200
commitdef0391ec55ab79d22c07d56a7c777ae8dcab0e0 (patch)
treee262fa7a3f17a34660fcf8e4676b1e01d729e13c
parentcc84c9535ca7c5b2b328af900ae4ec70da60d940 (diff)
gprs/test: Use valid MCC/MNC for BVC RESET
The code currently uses an encoded sequence of (hex) 10 20 30 40 50 60 as RAI, for which no bijective mapping to the set of representations MCC-MNC-LAC-RAC exists. This patch changes the hard-coded RAI to 11 22 33 40 50 60 which maps to 112-332-16464-96 (and vice-versa). Sponsored-by: On-Waves ehf
-rw-r--r--openbsc/tests/gbproxy/gbproxy_test.c4
-rw-r--r--openbsc/tests/gbproxy/gbproxy_test.ok216
2 files changed, 110 insertions, 110 deletions
diff --git a/openbsc/tests/gbproxy/gbproxy_test.c b/openbsc/tests/gbproxy/gbproxy_test.c
index d32ac8340..ea07a776b 100644
--- a/openbsc/tests/gbproxy/gbproxy_test.c
+++ b/openbsc/tests/gbproxy/gbproxy_test.c
@@ -142,8 +142,8 @@ static void send_bssgp_reset(struct gprs_ns_inst *nsi, struct sockaddr_in *src_a
* BSSGP RESET */
unsigned char msg[22] = {
0x22, 0x04, 0x82, 0x4a,
- 0x2e, 0x07, 0x81, 0x08, 0x08, 0x88, 0x10, 0x20,
- 0x30, 0x40, 0x50, 0x60, 0x10, 0x00
+ 0x2e, 0x07, 0x81, 0x08, 0x08, 0x88, 0x11, 0x22,
+ 0x33, 0x40, 0x50, 0x60, 0x10, 0x00
};
msg[3] = bvci / 256;
diff --git a/openbsc/tests/gbproxy/gbproxy_test.ok b/openbsc/tests/gbproxy/gbproxy_test.ok
index 0942ca3b2..e677ec088 100644
--- a/openbsc/tests/gbproxy/gbproxy_test.ok
+++ b/openbsc/tests/gbproxy/gbproxy_test.ok
@@ -82,16 +82,16 @@ result (ALIVE_ACK) = 0
Setup BSSGP: remote 0x01020304:1111, BVCI 0x1002(4098)
PROCESSING BVC_RESET from 0x01020304:1111
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -101,7 +101,7 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
PROCESSING BVC_RESET_ACK from 0x05060708:32000
00 00 00 00 23 04 82 10 02
@@ -159,16 +159,16 @@ result (ALIVE_ACK) = 0
Setup BSSGP: remote 0x01020304:2222, BVCI 0x2002(8194)
PROCESSING BVC_RESET from 0x01020304:2222
-00 00 00 00 22 04 82 20 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 20 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 20 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 20 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 20 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 20 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 20 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 20 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -179,8 +179,8 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 8192, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
PROCESSING BVC_RESET_ACK from 0x05060708:32000
00 00 00 00 23 04 82 20 02
@@ -242,8 +242,8 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 8192, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
--- Move BSS 2 to former BSS 1 port ---
Setup NS-VC: remote 0x01020304:1111, NSVCI 0x2001(8193), NSEI 0x2000(8192)
@@ -291,8 +291,8 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 8192, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
--- Move BSS 1 to current BSS 2 port ---
Setup NS-VC: remote 0x01020304:1111, NSVCI 0x2001(8193), NSEI 0x2000(8192)
@@ -340,8 +340,8 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 8192, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
--- Move BSS 2 to new port ---
Setup NS-VC: remote 0x01020304:4444, NSVCI 0x2001(8193), NSEI 0x2000(8192)
@@ -389,8 +389,8 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 8192, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
--- Move BSS 2 to former BSS 1 port ---
Setup NS-VC: remote 0x01020304:3333, NSVCI 0x2001(8193), NSEI 0x2000(8192)
@@ -441,8 +441,8 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 8192, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
--- Move BSS 1 to original BSS 1 port ---
Setup NS-VC: remote 0x01020304:1111, NSVCI 0x1001(4097), NSEI 0x1000(4096)
@@ -491,23 +491,23 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 8192, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
--- Reset BSS 1 with a new BVCI ---
Setup BSSGP: remote 0x01020304:1111, BVCI 0x1012(4114)
PROCESSING BVC_RESET from 0x01020304:1111
-00 00 00 00 22 04 82 10 12 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 12 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 10 12 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 12 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 10 12 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 12 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 10 12 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 12 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -519,9 +519,9 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 4096, BVCI 4114, not blocked, RAC 10-32-16464-96
- NSEI 8192, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 4096, BVCI 4114, not blocked, RAC 112-332-16464-96
+ NSEI 8192, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
PROCESSING BVC_RESET_ACK from 0x05060708:32000
00 00 00 00 23 04 82 10 12
@@ -541,16 +541,16 @@ result (BVC_RESET_ACK) = 9
Setup BSSGP: remote 0x01020304:1111, BVCI 0x1002(4098)
PROCESSING BVC_RESET from 0x01020304:1111
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -562,9 +562,9 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 4096, BVCI 4114, not blocked, RAC 10-32-16464-96
- NSEI 8192, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 4096, BVCI 4114, not blocked, RAC 112-332-16464-96
+ NSEI 8192, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
PROCESSING BVC_RESET_ACK from 0x05060708:32000
00 00 00 00 23 04 82 10 02
@@ -584,16 +584,16 @@ result (BVC_RESET_ACK) = 9
Setup BSSGP: remote 0x01020304:1111, BVCI 0x1002(4098)
PROCESSING BVC_RESET from 0x01020304:1111
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -605,9 +605,9 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 4096, BVCI 4114, not blocked, RAC 10-32-16464-96
- NSEI 8192, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 4096, BVCI 4114, not blocked, RAC 112-332-16464-96
+ NSEI 8192, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
PROCESSING BVC_RESET_ACK from 0x05060708:32000
00 00 00 00 23 04 82 10 02
@@ -723,16 +723,16 @@ result (UNITDATA) = 4
Setup BSSGP: remote 0x01020304:3333, BVCI 0x1002(4098)
PROCESSING BVC_RESET from 0x01020304:3333
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -744,10 +744,10 @@ Current NS-VCIs:
NS-VC Block count : 1
Peers:
- NSEI 4096, BVCI 4114, not blocked, RAC 10-32-16464-96
- NSEI 8192, BVCI 8194, not blocked, RAC 10-32-16464-96
+ NSEI 4096, BVCI 4114, not blocked, RAC 112-332-16464-96
+ NSEI 8192, BVCI 8194, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
- NSEI 8192, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 4098, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
Gbproxy global:
PROCESSING BVC_RESET_ACK from 0x05060708:32000
@@ -904,16 +904,16 @@ Current NS-VCIs:
Setup BSSGP: remote 0x01020304:1111, BVCI 0x1002(4098)
PROCESSING BVC_RESET from 0x01020304:1111
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -932,22 +932,22 @@ MESSAGE to BSS at 0x01020304:1111, msg length 9
result (BVC_RESET_ACK) = 9
Peers:
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
--- Setup BVCI 2 ---
Setup BSSGP: remote 0x01020304:1111, BVCI 0x2002(8194)
PROCESSING BVC_RESET from 0x01020304:1111
-00 00 00 00 22 04 82 20 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 20 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 20 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 20 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 20 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 20 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 20 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 20 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -966,8 +966,8 @@ MESSAGE to BSS at 0x01020304:1111, msg length 9
result (BVC_RESET_ACK) = 9
Peers:
- NSEI 4096, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 4096, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 4098, not blocked, RAC 112-332-16464-96
--- Send message from BSS 1 to SGSN and back, BVCI 1 ---
PROCESSING UNITDATA from 0x01020304:1111
@@ -1079,16 +1079,16 @@ Current NS-VCIs:
Setup BSSGP: remote 0x01020304:1111, BVCI 0x1002(4098)
PROCESSING BVC_RESET from 0x01020304:1111
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -1107,24 +1107,24 @@ MESSAGE to BSS at 0x01020304:1111, msg length 9
result (BVC_RESET_ACK) = 9
Peers:
- NSEI 4096, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 8192, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 4096, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 8192, BVCI 4098, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
--- Setup BVCI 3 ---
Setup BSSGP: remote 0x01020304:1111, BVCI 0x3002(12290)
PROCESSING BVC_RESET from 0x01020304:1111
-00 00 00 00 22 04 82 30 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 30 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 30 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 30 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 30 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 30 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 30 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 30 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -1143,9 +1143,9 @@ MESSAGE to BSS at 0x01020304:1111, msg length 9
result (BVC_RESET_ACK) = 9
Peers:
- NSEI 8192, BVCI 12290, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 8194, not blocked, RAC 10-32-16464-96
- NSEI 8192, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 12290, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 8194, not blocked, RAC 112-332-16464-96
+ NSEI 8192, BVCI 4098, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
--- Send message from BSS 1 to SGSN and back, BVCI 1 ---
@@ -1194,10 +1194,10 @@ MESSAGE to SGSN at 0x05060708:32000, msg length 4
result (UNITDATA) = 4
Peers:
- NSEI 8192, BVCI 12290, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 8194, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 12290, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 8194, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
- NSEI 8192, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 4098, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
PROCESSING UNITDATA from 0x05060708:32000
00 00 20 02
@@ -1211,11 +1211,11 @@ NS UNITDATA MESSAGE to BSS, BVCI 0x2002, msg length 0
result (UNITDATA) = -22
Peers:
- NSEI 8192, BVCI 12290, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 8194, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 12290, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 8194, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
NS Transmission error : 1
- NSEI 8192, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 4098, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
--- Send message from BSS 1 to SGSN and back, BVCI 3 ---
@@ -1302,16 +1302,16 @@ Current NS-VCIs:
Setup BSSGP: remote 0x01020304:1111, BVCI 0x1002(4098)
PROCESSING BVC_RESET from 0x01020304:1111
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 10 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 10 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -1330,27 +1330,27 @@ MESSAGE to BSS at 0x01020304:1111, msg length 9
result (BVC_RESET_ACK) = 9
Peers:
- NSEI 8192, BVCI 12290, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 8194, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 12290, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 8194, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
NS Transmission error : 1
- NSEI 8192, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 4098, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
--- Setup BVCI 4 ---
Setup BSSGP: remote 0x01020304:1111, BVCI 0x4002(16386)
PROCESSING BVC_RESET from 0x01020304:1111
-00 00 00 00 22 04 82 40 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 40 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
CALLBACK, event 0, msg length 22, bvci 0x0000
-22 04 82 40 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 40 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
NS UNITDATA MESSAGE to SGSN, BVCI 0x0000, msg length 22
-22 04 82 40 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+22 04 82 40 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
MESSAGE to SGSN at 0x05060708:32000, msg length 26
-00 00 00 00 22 04 82 40 02 07 81 08 08 88 10 20 30 40 50 60 10 00 00 00 00 00
+00 00 00 00 22 04 82 40 02 07 81 08 08 88 11 22 33 40 50 60 10 00 00 00 00 00
result (BVC_RESET) = 26
@@ -1369,12 +1369,12 @@ MESSAGE to BSS at 0x01020304:1111, msg length 9
result (BVC_RESET_ACK) = 9
Peers:
- NSEI 8192, BVCI 16386, not blocked, RAC 10-32-16464-96
- NSEI 8192, BVCI 12290, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 8194, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 16386, not blocked, RAC 112-332-16464-96
+ NSEI 8192, BVCI 12290, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 8194, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
NS Transmission error : 1
- NSEI 8192, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 4098, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
--- Send message from BSS 1 to SGSN and back, BVCI 1 ---
@@ -1423,12 +1423,12 @@ MESSAGE to SGSN at 0x05060708:32000, msg length 4
result (UNITDATA) = 4
Peers:
- NSEI 8192, BVCI 16386, not blocked, RAC 10-32-16464-96
- NSEI 8192, BVCI 12290, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 8194, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 16386, not blocked, RAC 112-332-16464-96
+ NSEI 8192, BVCI 12290, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 8194, not blocked, RAC 112-332-16464-96
NSEI mismatch : 2
NS Transmission error : 1
- NSEI 8192, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 4098, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
PROCESSING UNITDATA from 0x05060708:32000
00 00 20 02
@@ -1442,12 +1442,12 @@ NS UNITDATA MESSAGE to BSS, BVCI 0x2002, msg length 0
result (UNITDATA) = -22
Peers:
- NSEI 8192, BVCI 16386, not blocked, RAC 10-32-16464-96
- NSEI 8192, BVCI 12290, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 8194, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 16386, not blocked, RAC 112-332-16464-96
+ NSEI 8192, BVCI 12290, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 8194, not blocked, RAC 112-332-16464-96
NSEI mismatch : 2
NS Transmission error : 2
- NSEI 8192, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 4098, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
--- Send message from BSS 1 to SGSN and back, BVCI 3 ---
@@ -1511,12 +1511,12 @@ result (UNITDATA) = 4
Gbproxy global:
Peers:
- NSEI 8192, BVCI 16386, not blocked, RAC 10-32-16464-96
- NSEI 8192, BVCI 12290, not blocked, RAC 10-32-16464-96
- NSEI 4096, BVCI 8194, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 16386, not blocked, RAC 112-332-16464-96
+ NSEI 8192, BVCI 12290, not blocked, RAC 112-332-16464-96
+ NSEI 4096, BVCI 8194, not blocked, RAC 112-332-16464-96
NSEI mismatch : 2
NS Transmission error : 2
- NSEI 8192, BVCI 4098, not blocked, RAC 10-32-16464-96
+ NSEI 8192, BVCI 4098, not blocked, RAC 112-332-16464-96
NSEI mismatch : 1
===== GbProxy test END