5 releases (3 breaking)

0.4.1 Mar 31, 2025
0.4.0 Dec 27, 2023
0.3.0 Aug 23, 2023
0.2.0 Aug 21, 2023
0.1.0 Aug 21, 2023

#3 in #tailscale

Download history 1/week @ 2025-02-05 7/week @ 2025-02-12 5/week @ 2025-02-19 3/week @ 2025-02-26 9/week @ 2025-03-12 4/week @ 2025-03-19 98/week @ 2025-03-26 41/week @ 2025-04-02 10/week @ 2025-04-09

156 downloads per month

MIT license

17KB
383 lines

tailscale-localapi

This is a rust crate designed to interact with the Tailscale local API. On Linux and other Unix-like systems, this is through a unix socket. On macOS and Windows, this is through a local TCP port and a password. The Tailscale localapi is large but so far this crate does:

  1. Get the status of the node and the tailnet (similar to tailscale status)
  2. Get a certificate and key for the node (similar to tailscale cert)
  3. Get whois information for a given IP address in the tailnet

Limitations

This crate uses hyper and requires tokio and async rust.

Example

let socket_path = "/var/run/tailscale/tailscaled.sock";
let client = tailscale_localapi::LocalApi::new_with_socket_path(socket_path);
dbg!(client.status().await.unwrap());

Dependencies

~7–17MB
~207K SLoC