Skip to content
On GitHub Arun on Twitter

Private Among Us games on the Tailscale network

Among Us can be hosted on the public servers. Games can be private or public, but the problem with public server-hosted games is that, games disconnect sometimes. That's because these public servers are popular that it doesn't handle surge in active sessions. A solution is to host the games locally on a private network.

That's where Impostor and Tailscale come in.

Tailscale is a mesh VPN software that makes it incredibly easy to connect all of your devices and services running on those devices. Impostor is an open source re-implementation of the Among Us server that can be self-hosted on any device. In my case, I am hosting Impostor on my Raspberry Pi, which is linked to my Tailscale tailnet. This unlocks all of my devices on the tailnet to access Impostor too.

Setting up Private Among Us Games

The first step is to install Tailscale on all of your devices and connect them to the same Google, GitHub, or supported auth provider account. This ensures all of the devices are in the same tailnet. Use the same Tailscale account for your Tailscale installation on the Raspberry Pi too.

Install Impostor on the Raspberry Pi. The process involves installing Dotnet runtime (in my case, I installed the full SDK), installing the server build, modifying the configuration file to set the Raspberry Pi's Tailscale node address as the public server and running the server itself. To elaborate a bit,

Finally, anyone can start the game, mark it as Public and then other devices can join this public room. Make sure that the "World" in your "Online" mode is set to "Impostor", not "Asia", "Europe" or "Americas".

97a08-custom-amoong-us-gameplay-3.png

01f0a-custom-among-us-gameplay-1.png

76eaa-custom-among-us-gameplay-2.png

280cb-custom-among-us-game-lobby.png

Other notes

It's okay to disclose the Raspberry Pi Tailscale node address to the public as it's of no one for anyone else. It can be accessed only if the device is connected to my Tailnet, which requires authenticating using my GitHub account. I have also locked down that node's port 22023 to be accessible only by certain devices using Tailscale Access Control Rules. And, ACLs also help make sure other devices can access only this port on my Pi. They wouldn't be able to access services that I run on other ports.

Right now, it's just my family that can access this port on my Raspberry Pi (called mewtwo):

{ "Action": "accept", "Users": ["group:arun-family"], "Ports": ["mewtwo:22023"] }

With this setup, anyone from any part of the world can join your custom Among Us games without depending on the official Among Us servers. I also learned that switching from WiFi to mobile data doesn't disconnect the game. I imagine that's possible due to Tailscale's graceful handling of network changes.