aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/osmo_gsm_tester/templates/osmo-ggsn.cfg.tmpl2
-rwxr-xr-xsuites/gprs/ping.py7
2 files changed, 5 insertions, 4 deletions
diff --git a/src/osmo_gsm_tester/templates/osmo-ggsn.cfg.tmpl b/src/osmo_gsm_tester/templates/osmo-ggsn.cfg.tmpl
index 1ee19d1..1692db6 100644
--- a/src/osmo_gsm_tester/templates/osmo-ggsn.cfg.tmpl
+++ b/src/osmo_gsm_tester/templates/osmo-ggsn.cfg.tmpl
@@ -56,6 +56,7 @@ ggsn ggsn0
ipv6 dns 0 2001:4860:4860::8888
ipv6 dns 1 2001:4860:4860::8844
ipv6 ifconfig fde4:8dba:82e1:2000:0:0:0:0/56
+ ipv6 link-local fe80::1111:1111:1111:1111/64
no shutdown
apn inet46
gtpu-mode tun
@@ -69,6 +70,7 @@ ggsn ggsn0
ipv6 dns 0 2001:4860:4860::8888
ipv6 dns 1 2001:4860:4860::8844
ipv6 ifconfig fde4:8dba:82e1:2000:0:0:0:0/56
+ ipv6 link-local fe80::1111:1111:1111:1112/64
no shutdown
default-apn internet
no shutdown ggsn
diff --git a/suites/gprs/ping.py b/suites/gprs/ping.py
index 5d2d847..1b6d85c 100755
--- a/suites/gprs/ping.py
+++ b/suites/gprs/ping.py
@@ -52,12 +52,11 @@ 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)