Tailscale: Difference between revisions

From David's Wiki
(Created page with "Tailscale is an awesome mesh VPN. ==Exit Node== For processing the exit node, Tailscale uses iptables with mask 0xFF0000.<br> This may conflict with other applications such as Calico. [https://github.com/tailscale/tailscale/issues/591 This issue] suggests changing the mask used in Calico.")
 
No edit summary
Line 5: Line 5:
This may conflict with other applications such as Calico.  
This may conflict with other applications such as Calico.  
[https://github.com/tailscale/tailscale/issues/591 This issue] suggests changing the mask used in Calico.
[https://github.com/tailscale/tailscale/issues/591 This issue] suggests changing the mask used in Calico.
==CLI==
Tailscale comes with the command <code>tailscale</code>.
Some common use cases are:
<syntaxhighlight lang="bash">
# See other hosts and their tailscale ips
tailscale status
# Check if another host is directly reachable
tailscale ping $HOST
</syntaxhighlight>

Revision as of 01:19, 21 December 2023

Tailscale is an awesome mesh VPN.

Exit Node

For processing the exit node, Tailscale uses iptables with mask 0xFF0000.
This may conflict with other applications such as Calico. This issue suggests changing the mask used in Calico.

CLI

Tailscale comes with the command tailscale. Some common use cases are:

# See other hosts and their tailscale ips
tailscale status

# Check if another host is directly reachable
tailscale ping $HOST