From 8845d812768786bc3c66ae05f41f110adfea8ad8 Mon Sep 17 00:00:00 2001
From: "Hahn Axel (hahn)" <axel.hahn@unibe.ch>
Date: Mon, 4 Mar 2024 11:42:11 +0100
Subject: [PATCH] netio: add flannel interface to be removed

---
 check_netio | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/check_netio b/check_netio
index df97ce8..25f88fc 100755
--- a/check_netio
+++ b/check_netio
@@ -20,11 +20,12 @@
 export self_APPVERSION=1.6
 
 # network data without non physical interfaces to be removed from /proc/net/dev
-# - lo   - local
-# - bond - bonded interfaces
-# - ppp  - dialer connections
-# - cali - Kubernetes interfaces
-nonPhysicalInterfaces="(lo|bond.*|ppp.*|cali.*):"
+# - lo      - local
+# - bond    - bonded interfaces
+# - ppp     - dialer connections
+# - cali    - Kubernetes interfaces
+# - flannel - layer 3 fabric for Kubernetes
+nonPhysicalInterfaces="(lo|bond.*|ppp.*|cali.*|flannel.*):"
 
 # ----------------------------------------------------------------------
 # FUNCTIONS
-- 
GitLab