ipn/ipnlocal: don't try to block localhost traffic when using exit nodes
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
(cherry picked from commit ddf3394b40
)
release-branch/1.16
parent
766a3a2e59
commit
66ad35c04e
|
@ -1029,6 +1029,10 @@ func internalAndExternalInterfaces() (internal, external []netaddr.IPPrefix, err
|
|||
if pfx.IsSingleIP() {
|
||||
return
|
||||
}
|
||||
if iface.IsLoopback() {
|
||||
internal = append(internal, pfx)
|
||||
return
|
||||
}
|
||||
if runtime.GOOS == "windows" {
|
||||
// Windows Hyper-V prefixes all MAC addresses with 00:15:5d.
|
||||
// https://docs.microsoft.com/en-us/troubleshoot/windows-server/virtualization/default-limit-256-dynamic-mac-addresses
|
||||
|
|
Loading…
Reference in New Issue