Tailscale Dashboard Overview | Generated by AI

Home 2026.06

Question: What do each of the Tailscale admin panel sections do?

Answer:

Tailscale’s admin dashboard is organized around three layers: network visibility (Machines, Users, Services), access policy (ACLs, Apps), operational management (Logs, DNS, Settings), and billing.

Machines Lists all connected devices (your MacBook Air, workstation at 192.168.1.36, etc.). Shows IP addresses in the Tailnet, connection status, OS, last seen. You can authorize/deauthorize devices, tag them for access control, and force key rotation here.

Apps Tailscale Apps (beta/early access feature). Allows you to expose HTTP applications through your Tailnet without manual port forwarding. You define which apps on which machines should be accessible, and Tailscale handles DNS routing through app.tailnet-name.ts.net domains.

Services Services like SSH, HTTPS, or custom services you expose through your Tailnet. Complements Apps for non-HTTP protocols. Useful for advertising services that multiple machines need to discover.

Users Team members with access to your Tailnet. Shows email, last login, MFA status. You manage invites, remove users, and control who can add devices here.

Access controls (ACLs) The firewall rules of your Tailnet. Written in HCL (HashiCorp Configuration Language), these define who can connect to what. Examples:

{
  "acls": [
    {
      "action": "accept",
      "src": ["tag:engineers"],
      "dst": ["tag:servers:*"]
    },
    {
      "action": "accept",
      "src": ["user:you@example.com"],
      "dst": ["tag:personal:*"]
    }
  ]
}

Uses tags (assigned to machines) and users for policy. Critical for zero-trust networking.

Logs Audit trail of Tailnet activity — who accessed what, auth events, device registrations, ACL changes. Invaluable for debugging connectivity issues or security audits.

DNS Custom DNS records for your Tailnet. You can define internal-service.tailnet-name.ts.net → machine IP mappings, or use Tailscale’s MagicDNS (auto-resolves machine names). Also shows global nameservers.

Settings → Tailnet Settings Cluster-wide configuration:

Settings → Personal Settings Your account level:

Practical Use Cases

Your setup (MacBook Air + workstation):

Example ACL for your workflow:

{
  "acls": [
    {
      "action": "accept",
      "src": ["autogroup:self"],
      "dst": ["autogroup:self:*"]
    },
    {
      "action": "accept",
      "src": ["tag:dev"],
      "dst": ["tag:gpu:*"]
    }
  ]
}

For CLI automation (ww, iclaw, zz): Generate an Auth key in Settings → Personal Settings → Keys, then:

tailscale up --authkey=<KEY> --hostname=automation-box

Your free plan: 6 users, 50 tagged resources, unlimited devices. Plenty for a solo engineer + compute cluster.


Back Donate