aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2017-12-13 19:52:27 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2017-12-13 19:55:35 +0100
commitf973b3d605901dabfd4293c8614fdafbd8d2b7b9 (patch)
tree4a106207002969077f856ca96d124abb848e31ab
parentf0b8e37f320a72ecc2c5aa5eab44b310583a12cd (diff)
gprs: ping.py: Disable ipv6 ctx activate test
osmo-ggsn is failing to create tun ipv6 device in Prod main unit. Afterwards, as the iface is not created, it cannot find its link-local ip and it doesn't configure the ipv6 pool. Later on, when an ipv4v6 ctx is requested, it fails because apn doesn't support ipv6 (because the pool is not created). Related: OS#2746 Change-Id: I018c525a8a3d108233740ee1376b2671fefbbb59
-rwxr-xr-xsuites/gprs/ping.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/suites/gprs/ping.py b/suites/gprs/ping.py
index 1b6d85c..5d2d847 100755
--- a/suites/gprs/ping.py
+++ b/suites/gprs/ping.py
@@ -52,11 +52,12 @@ sleep(5)
# TODO: send ping to server or open TCP conn with a socket in python
ms.deactivate_context(ctx_id_v4)
+# We disable ipv6 for now as osmo-ggsn is failing to create tun ipv6 device in Prod main unit (OS#2746)
# We need to use inet46 since ofono qmi only uses ipv4v6 eua (OS#2713)
-ctx_id_v6 = ms.activate_context(apn='inet46', protocol=ms.CTX_PROT_IPv6)
-sleep(5)
+# ctx_id_v6 = ms.activate_context(apn='inet46', protocol=ms.CTX_PROT_IPv6)
+# sleep(5)
# TODO: send ping to server or open TCP conn with a socket in python
-ms.deactivate_context(ctx_id_v6)
+# ms.deactivate_context(ctx_id_v6)
# IPv46 (dual) not supported in ofono qmi: org.ofono.Error.Failed: Operation failed (36)
# ctx_id_v46 = ms.activate_context(apn='inet46', protocol=ms.CTX_PROT_IPv46)