Tailscale: Difference between revisions

269 bytes added ,  21 December 2023
no edit summary
(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>