From 422a69ff4165f60b80ef59f4793bf0c98922e41d Mon Sep 17 00:00:00 2001 From: brent s Date: Tue, 12 May 2020 22:59:11 -0400 Subject: [PATCH] hrm. it keeps saying no route to host? --- utils/he_ipv6/tunnelbroker.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/utils/he_ipv6/tunnelbroker.py b/utils/he_ipv6/tunnelbroker.py index 70ca754..eeab364 100644 --- a/utils/he_ipv6/tunnelbroker.py +++ b/utils/he_ipv6/tunnelbroker.py @@ -129,14 +129,14 @@ class TunnelBroker(object): logger.error(('Could not add default IPv6 route on link {0}: {1}').format(self.iface_name, e)) ipr.close() raise e - try: - ipr.route('add', - dst = '::/96', - gateway = '::', - oif = self.iface_idx, - family = socket.AF_INET6) - except Exception as e: - logger.error(('Could not add ::/96 on link {0}: {1}'.format(self.iface_name, e))) + # try: + # ipr.route('add', + # dst = '::/96', + # gateway = '::', + # oif = self.iface_idx, + # family = socket.AF_INET6) + # except Exception as e: + # logger.error(('Could not add ::/96 on link {0}: {1}'.format(self.iface_name, e))) ipr.close() return(None)