From 3bd813f545bee03d4227617139105da76590e075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=B8=EF=B8=8F?= <29265684+buffermet@users.noreply.github.com> Date: Tue, 21 Sep 2021 05:08:01 +1000 Subject: [PATCH] fix: parse interface names in IPv6 routing tables --- routing/update_linux.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/routing/update_linux.go b/routing/update_linux.go index eb98ea57..63d4679e 100644 --- a/routing/update_linux.go +++ b/routing/update_linux.go @@ -52,6 +52,9 @@ func update() ([]Route, error) { case "Netif": route.Device = s break + case "If": + route.Device = s + break } }