From 205a384562fd324236c14a285209941af755135b Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Fri, 6 Jul 2018 13:24:14 +0200 Subject: ggsn: Apply GPDU seqnum option to all APNs Change-Id: I6efe926c8bb7a0056d26e15eefa282266e7bc6ca --- ggsn_tests/GGSN_Tests.ttcn | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'ggsn_tests/GGSN_Tests.ttcn') diff --git a/ggsn_tests/GGSN_Tests.ttcn b/ggsn_tests/GGSN_Tests.ttcn index 97abc4d7..6ae205f5 100644 --- a/ggsn_tests/GGSN_Tests.ttcn +++ b/ggsn_tests/GGSN_Tests.ttcn @@ -105,12 +105,29 @@ module GGSN_Tests { private function f_vty_set_gpdu_txseq(boolean enable) runs on GT_CT { f_vty_enter_config(GGSNVTY); f_vty_transceive(GGSNVTY, "ggsn ggsn0"); + f_vty_transceive(GGSNVTY, "apn internet"); if (enable) { f_vty_transceive(GGSNVTY, "g-pdu tx-sequence-numbers"); } else { f_vty_transceive(GGSNVTY, "no g-pdu tx-sequence-numbers"); } + f_vty_transceive(GGSNVTY, "exit"); + + f_vty_transceive(GGSNVTY, "apn inet6"); + if (enable) { + f_vty_transceive(GGSNVTY, "g-pdu tx-sequence-numbers"); + } else { + f_vty_transceive(GGSNVTY, "no g-pdu tx-sequence-numbers"); + } + f_vty_transceive(GGSNVTY, "exit"); + + f_vty_transceive(GGSNVTY, "apn inet46"); + if (enable) { + f_vty_transceive(GGSNVTY, "g-pdu tx-sequence-numbers"); + } else { + f_vty_transceive(GGSNVTY, "no g-pdu tx-sequence-numbers"); + } f_vty_transceive(GGSNVTY, "end"); } -- cgit v1.2.3