From dfc3b101ecefd2f485264849ba303b5bfdd6127f Mon Sep 17 00:00:00 2001 From: Matthew Thode Date: Mon, 14 Aug 2017 01:15:40 -0500 Subject: [PATCH] ignore ip6gre when setting up interfaces Change-Id: I1363ee1db18cc77ec7886ee9141a65ff76de38e9 --- glean/cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glean/cmd.py b/glean/cmd.py index 0adf8d9..8929987 100644 --- a/glean/cmd.py +++ b/glean/cmd.py @@ -1179,7 +1179,7 @@ def get_sys_interfaces(interface, args): sys_root = os.path.join(args.root, 'sys/class/net') ignored_interfaces = ('sit', 'tunl', 'bonding_master', 'teql', - 'ip6_vti', 'ip6tnl', 'bond', 'lo') + 'ip6gre', 'ip6_vti', 'ip6tnl', 'bond', 'lo') sys_interfaces = {} if interface is not None: log.debug("Only considering interface %s from arguments" % interface)