Need a StarRupture Server?
Get a fully managed StarRupture dedicated server with one-click setup, automatic updates, and 24/7 support.
Proper port configuration is essential for running a StarRupture dedicated server. This guide covers the required ports and firewall setup.
Required Port
StarRupture only requires one port for the dedicated server:
| Port | Protocol | Purpose |
|---|---|---|
| 7777 (default) | UDP | Game traffic and connections |
The port can be changed to any available port using launch parameters.
Windows Firewall Configuration
Method 1: Windows Defender Firewall GUI
- Open Windows Defender Firewall with Advanced Security
- Click “Inbound Rules” in the left panel
- Click “New Rule” in the right panel
- Select “Port” and click Next
- Select “UDP” and enter “7777”
- Select “Allow the connection”
- Check all profiles (Domain, Private, Public)
- Name the rule “StarRupture Server” and save
Method 2: Command Line
netsh advfirewall firewall add rule name="StarRupture Server" dir=in action=allow protocol=UDP localport=7777
Linux Firewall Configuration
UFW (Ubuntu/Debian)
sudo ufw allow 7777/udp
sudo ufw reload
firewalld (CentOS/RHEL)
sudo firewall-cmd --permanent --add-port=7777/udp
sudo firewall-cmd --reload
iptables
sudo iptables -A INPUT -p udp --dport 7777 -j ACCEPT
sudo iptables-save
Router Port Forwarding
If hosting at home, you’ll need to forward the port on your router:
- Access your router’s admin panel (usually 192.168.1.1)
- Find the Port Forwarding section
- Add a rule for UDP port 7777
- Point it to your server’s local IP address
- Save and apply changes
Using a Custom Port
To use a different game port, add the -port parameter:
StarRuptureServerEOS.exe -Log -port=7778
Remember to update your firewall rules to match the new port.
Testing Your Setup
Verify Server Is Listening
On Windows:
netstat -an | findstr "7777"
On Linux:
ss -ulnp | grep 7777
Check If Port Is Open
- Use online port checking tools (search for “port checker”)
- Have a friend try to connect
- Check server logs for connection attempts
Common Issues
Players Can’t Connect
- Verify port 7777/UDP is open and forwarded
- Check that no other application is using the port
- Disable VPN if enabled
- Ensure players are using the correct IP and port
Server Not Visible
- The server software is still experimental – direct IP connection is recommended
- Share your public IP:port with players directly
No Port Configuration Needed
Our managed servers come pre-configured with all ports open and ready to go.
