From 1b090c76cec08a3349b5e5caa3bd87189f09c647 Mon Sep 17 00:00:00 2001 From: brent s Date: Fri, 15 May 2020 03:02:39 -0400 Subject: [PATCH] fixing a small issue with the client ip --- utils/he_ipv6/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/he_ipv6/config.py b/utils/he_ipv6/config.py index b82e0eb..e634284 100644 --- a/utils/he_ipv6/config.py +++ b/utils/he_ipv6/config.py @@ -279,9 +279,9 @@ class HETunnelConfig(HEBaseConfig): return(None) def _client(self): - _client = self.tun_xml.find('clientv4').text + _client = self.tun_xml.find('clientv6').text if _client is not None and _client.strip() != '': - self.client = tunnel.IP4(_client.strip(), 32) + self.client = tunnel.IP6(_client.strip(), 64) return(None) def _desc(self):