Rust Server Console Commands List 2026: Admin, RCON, and Practical Combos

Published on

Rust admin commands by category, RCON on 28016, find and sv prefixes, plus wipe and event combos. Verify details on the Facepunch wiki after game updates.

Written by Jochem – Infrastructure Engineer at Space-Node – 5-10 years experience in game server hosting, VPS infrastructure, and 24/7 streaming solutions. Read author bio →

If you run a Rust dedicated server, you live in the console and RCON. Players ask for Rust rcon commands when they mean admin tools. This article groups the Rust server admin commands you use every week, explains RCON access with rcon.port 28016 and rcon.web, and shows command combinations that save time during wipes and events.

Rust changes over time. Treat this Rust console commands list 2026 as a field manual, then confirm details with the official Rust Wiki useful commands page and your server's find output.

Finding commands with find

Facepunch documents find [text] as the discovery tool. If you remember part of a convar or command, find lists matches with descriptions. When a guide disagrees with your build, find wins.

Server console versus client admin: the sv prefix

Some actions only make sense on the server console. Admins on a client often prefix with sv. Examples from the wiki pattern:

  • say as sv say message broadcasts server chat.
  • quit as sv quit saves and closes the server instead of your game client.

If a command does nothing in F1, try the server console or the sv form where documented.

RCON access setup

Typical server.cfg entries (adjust passwords and ports):

rcon.port 28016
rcon.password "your-long-random-secret"
rcon.web 1

Notes:

  • rcon.web 1 enables the web-based RCON protocol many tools expect in modern stacks.
  • rcon.port 28016 is the common default called out in hosting docs; avoid colliding with game or query ports.
  • Firewall the RCON port to trusted IPs or VPN only. Exposed RCON is a password spray target.

Use BattleMetrics RCON, RustAdmin, or another maintained client. Space-Node customers can host the game port and RCON on a VPS or dedicated machine with low latency into Europe, then restrict access at the network layer.

Admin and auth level commands

| Command | Purpose | | --- | --- | | ownerid Steam64ID | Grants highest admin auth level (2) | | moderatorid Steam64ID | Grants moderator auth level (1) | | removeowner Steam64ID | Removes owner | | removemoderator Steam64ID | Removes moderator |

Always use Steam64 IDs for accuracy when player names collide or use Unicode tricks.

Player moderation commands

| Command | Purpose | | --- | --- | | kick Steam64ID/playerName | Kick with optional reason | | ban Steam64ID | Ban with nickname, reason, optional duration syntax like 1M7d5m | | banid Steam64ID | Ban by ID with reason, offline capable | | unban Steam64ID | Remove ban | | bans | List bans | | banlistex | Extended ban list with reasons | | mute / unmute | Global mute as admin, or local mute without admin | | mutelist | Local mute list |

Pair status or users with banid when you need proof before action.

Teleport and movement (admin)

| Command | Purpose | | --- | --- | | teleport playerName/Steam64ID | Teleport to player, or A to B when two names provided | | teleport2me playerName/Steam64ID | Bring player to you | | teleportpos "x, y, z" | Go to coordinates | | teleport2marker | Go to map marker | | teleportlos | Teleport along line of sight | | teleportany entity | Teleport to entity type | | noclip | Flight mode for admins | | debugcamera | Free camera |

Document safe zones on RP servers before you teleport players into monuments.

Entity and world cleanup

| Command | Purpose | | --- | --- | | ent kill | Destroy entity you look at | | ent lock / ent unlock | Lock states on code or key locks | | ent who | Shows who placed entity | | del asset/path.prefab | Deletes all instances of a prefab path | | debug.lookingat | Prints info about target; use with console.clear then console.copy workflow per wiki |

del is destructive at scale. Capture debug.lookingat paths to a ticket before you del wide categories like bears.

Time, weather, and environment

| Command | Purpose | | --- | --- | | env.time 1-24 | Server time of day | | env.progresstime true/false | Freeze or run time | | admintime 1-24 | Local admin time preview; -1 resets | | weather.load | Load weather preset, example weather.load clear | | weather.report | Print current weather stats |

Decay and upkeep (server tuning)

| Command | Purpose | | --- | --- | | decay.scale | Multiplier for decay | | decay.upkeep_period_minutes | Upkeep window behavior | | decay.upkeep_grief_protection | Post-TC protection minutes |

These shape solo versus clan meta. Change slowly and announce in Discord.

Helicopter and events

| Command | Purpose | | --- | --- | | heli.call | Spawn patrol heli event | | heli.calltome | Summon heli to admin | | bradley.quickrespawn | Respawn Bradley at launch site |

Player information and status

| Command | Purpose | | --- | --- | | status | Players with Steam64, ping, time, IP | | players | Players with Steam64 and ping | | users | Steam64 and names | | playerlist | JSON formatted list | | sleepingusers | Who is sleeping | | sv stats | Stats like kills and deaths |

Vitals, testing, and utility

| Command | Purpose | | --- | --- | | god true/false | Damage immunity for admin testing | | heal / hurt / injure | Adjust health or wound | | eat / drink | Adjust hunger or thirst | | refillvitals | Top up health, hunger, thirst | | spawn entity | Spawn entity you aim at | | spawnitem item | Spawn item you aim at |

Server operations and persistence

| Command | Purpose | | --- | --- | | server.writecfg | Write server convars to cfg files | | version | Build and version info | | fps / fps.limit | FPS readout; sv prefix for server limit where applicable |

World and map utilities

| Command | Purpose | | --- | --- | | world.rendermap | Save high resolution map PNG |

Economy-adjacent server variables (examples)

Rust's economy is mostly loot and vending behavior driven by convars rather than one economy.give command. Use find market, find vending, and find loot on your server to list current names. Typical admin work is still spawnitem, ent kill on stuck loot, and event timing.

Useful command combinations

Incident response kit

  1. status to confirm Steam64.
  2. combatlog (with admin on target player if needed) for recent damage context.
  3. kick or banid with reason logged in Discord staff channel.

Map screenshot for announcements

  1. Set env.time for nice light.
  2. Run weather.load clear if you want clean skies.
  3. world.rendermap then upload PNG to Discord.

Safe prefab removal rehearsal

  1. console.clear
  2. debug.lookingat on one object
  3. console.copy and paste into notes
  4. Test del on staging clone first

End-of-wipe shutdown

  1. sv say warning messages on a timer your moderators agree on
  2. server.writecfg if you changed vars
  3. sv quit to save and exit

Naming conventions that reduce mistakes

When you document internal runbooks, quote commands exactly as players should type them, including quotes around coordinates. Train moderators to copy Steam64 IDs from status instead of typing names manually when kicking impersonators.

Security habits for 2026 hosting

  • Rotate rcon.password after staff changes.
  • Never post screenshots with RCON windows open.
  • Separate moderator powers with moderatorid instead of handing everyone ownerid.
  • Backup saves before del experiments.

Space-Node gives you the hardware and network; auth hygiene still lives in your server.cfg and staff training.

FAQ

What port is Rust RCON?

rcon.port is commonly 28016, separate from client game port. Confirm in your config and provider panel.

What does rcon.web 1 do?

It enables the web RCON protocol path many modern tools use. If your client fails to connect, verify this flag matches the client docs.

Can I run all commands from RCON?

Most server commands work, but some are client context sensitive. If something fails, try in-game admin with sv or the physical server console.

How do I list commands not in this article?

Use find, and read the official wiki table. Game updates add convars regularly.

Do I need a VPS for Rust?

You can host at home with good upload and DDoS awareness. Many communities rent Europe servers for routing quality and support. Compare Space-Node plans when you outgrow consumer internet.


Jochem is an Infrastructure Engineer at Space-Node. Commands are compiled from public Facepunch documentation patterns; verify against your live server find output.

About the Author

Jochem – Infrastructure Engineer at Space-Node – Expert in game server hosting, VPS infrastructure, and 24/7 streaming solutions with 5-10 years experience.

Since 2023
500+ servers hosted
4.8/5 avg rating

I specialize in Minecraft, FiveM, Rust, and 24/7 streaming infrastructure, operating enterprise-grade AMD Ryzen 9 hardware in Netherlands datacenters.

View my full bio and credentials →

Launch Your VPS Today

Get started with professional VPS hosting powered by enterprise hardware. Instant deployment and 24/7 support included.

Rust Server Console Commands List 2026: Admin, RCON, and Practical Combos