You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/derpprobe/derpprobe.go
+14-13Lines changed: 14 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -18,18 +18,19 @@ import (
18
18
)
19
19
20
20
var (
21
-
derpMapURL=flag.String("derp-map", "https://login.tailscale.com/derpmap/default", "URL to DERP map (https:// or file://) or 'local' to use the local tailscaled's DERP map")
22
-
versionFlag=flag.Bool("version", false, "print version and exit")
regionCode=flag.String("region-code", "", "probe only this region (e.g. 'lax'); if left blank, all regions will be probed")
21
+
derpMapURL=flag.String("derp-map", "https://login.tailscale.com/derpmap/default", "URL to DERP map (https:// or file://) or 'local' to use the local tailscaled's DERP map")
22
+
versionFlag=flag.Bool("version", false, "print version and exit")
bwTUNIPv4Address=flag.String("bw-tun-ipv4-addr", "", "if specified, bandwidth probes will be performed over a TUN device at this address in order to exercise TCP-in-TCP in similar fashion to TCP over Tailscale via DERP. We will use a /30 subnet including this IP address.")
33
+
regionCode=flag.String("region-code", "", "probe only this region (e.g. 'lax'); if left blank, all regions will be probed")
0 commit comments