mirror of
https://github.com/tailscale/tailscale.git
synced 2025-02-21 04:18:38 +00:00
net/interfaces: skip IPv6 link-local interfaces like we do for IPv4
We strip them control-side anyway, and we already strip IPv4 link local, so there's no point uploading them. And iOS has a ton of them, which results in somewhat silly amount of traffic in the MapRequest. We'll be doing same-LAN-inter-tailscaled link-local traffic a different way, with same-LAN discovery. Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
469613b4c5
commit
d5fd373f09
@ -113,7 +113,7 @@ func LocalAddresses() (regular, loopback []netaddr.IP, err error) {
|
|||||||
if tsaddr.IsTailscaleIP(ip) {
|
if tsaddr.IsTailscaleIP(ip) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if linkLocalIPv4.Contains(ip) {
|
if ip.IsLinkLocalUnicast() {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if ip.IsLoopback() || ifcIsLoopback {
|
if ip.IsLoopback() || ifcIsLoopback {
|
||||||
@ -483,12 +483,11 @@ func mustCIDR(s string) netaddr.IPPrefix {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
private1 = mustCIDR("10.0.0.0/8")
|
private1 = mustCIDR("10.0.0.0/8")
|
||||||
private2 = mustCIDR("172.16.0.0/12")
|
private2 = mustCIDR("172.16.0.0/12")
|
||||||
private3 = mustCIDR("192.168.0.0/16")
|
private3 = mustCIDR("192.168.0.0/16")
|
||||||
privatev4s = []netaddr.IPPrefix{private1, private2, private3}
|
privatev4s = []netaddr.IPPrefix{private1, private2, private3}
|
||||||
linkLocalIPv4 = mustCIDR("169.254.0.0/16")
|
v6Global1 = mustCIDR("2000::/3")
|
||||||
v6Global1 = mustCIDR("2000::/3")
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// anyInterestingIP reports whether pfxs contains any IP that matches
|
// anyInterestingIP reports whether pfxs contains any IP that matches
|
||||||
|
Loading…
x
Reference in New Issue
Block a user