From 24fce0be8632549ecd6061259d00ee786d0a2299 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Wed, 14 Sep 2016 22:23:56 -0700 Subject: [PATCH] No, definitely have to back out GitHub issue #385 (non-bisected routes) since this breaks IPv6 on OSX and probably IPv4 too if you were to encounter a 6-only situation. --- osdep/ManagedRoute.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osdep/ManagedRoute.cpp b/osdep/ManagedRoute.cpp index 9763d2712..127f1b7df 100644 --- a/osdep/ManagedRoute.cpp +++ b/osdep/ManagedRoute.cpp @@ -450,6 +450,7 @@ bool ManagedRoute::sync() // Create a device-bound default target if there is none in the system. This // is to allow e.g. IPv6 default route to work even if there is no native // IPv6 on your LAN. + /* if (_target.isDefaultRoute()) { if (_systemVia) { if (_applied.count(_target)) { @@ -464,6 +465,7 @@ bool ManagedRoute::sync() } } } + */ #endif // __BSD__ ------------------------------------------------------------