rustguac integrates with NetBox to provide one-click remote console access from device pages. No NetBox plugin is required — the integration uses NetBox's built-in Custom Links, Custom Fields, and Event Rules.
Note: NetBox Custom Links and Webhook body templates use Jinja2 template syntax. Filter arguments use parentheses — default('ssh') — not Django's colon syntax (default:'ssh'). Only standard Jinja2 filters are available (e.g. lower, default, split). Ansible filters like regex_replace and Django filters like cut are not available. Custom Links use object.cf.field_name for custom fields; Webhook body templates use data.custom_fields.field_name (the REST API serialization).
Go to Customization > Custom Fields and create the following fields. Assign each to dcim > device (and virtualization > virtual machine if you use VMs).
| Name | Type | Default | Description |
|---|---|---|---|
console_enabled |
Boolean | false | Opt-in: enables remote console links on the device page |
console_mode |
Selection: addressbook, adhoc |
— | How to connect: via connections entry (Vault credentials) or ad-hoc (direct to IP) |
remote_protocol |
Selection: ssh, rdp, vnc, web |
— | Protocol for ad-hoc connections (connections entries have their own) |
remote_port |
Integer | — | Port override for ad-hoc connections (leave blank for protocol default) |
The console_enabled field is the master switch — no links appear until it's checked. The console_mode field controls which link is shown:
addressbook— connects via a Vault connections entry. Credentials are managed in Vault and never appear in the URL. Requires a matching entry name (lowercase device name). Minimum role: operator.adhoc— connects directly to the device's primary IP. No stored credentials — the user sees guacd's login prompt. Minimum role: poweruser.
Create two Custom Links in Customization > Custom Links. Each link only renders when console_mode matches its mode, so only one appears per device.
| Setting | Value |
|---|---|
| Content Types | dcim > device, virtualization > virtual machine |
| Name | Console |
| Button class | Green |
| New window | Yes |
Link text:
{% if object.primary_ip4 and object.cf.console_enabled and object.cf.console_mode == 'addressbook' %}Console{% endif %}
Link URL:
https://console.example.com/api/connect?scope=shared&folder=production&entry={{ object.name | lower }}
Replace production with your connections folder name. The entry name must match the lowercase device name in Vault.
| Setting | Value |
|---|---|
| Content Types | dcim > device, virtualization > virtual machine |
| Name | Quick SSH |
| Button class | Blue (outline) |
| New window | Yes |
Link text:
{% if object.primary_ip4 and object.cf.console_enabled and object.cf.console_mode == 'adhoc' %}Quick SSH{% endif %}
Link URL:
https://console.example.com/api/connect?hostname={{ object.primary_ip4.address.ip }}&protocol={{ object.cf.remote_protocol | default('ssh') }}{% if object.cf.remote_port %}&port={{ object.cf.remote_port }}{% endif %}
- Edit the device in NetBox
- Check Console Enabled
- Set Console Mode to
addressbookoradhoc - (Ad-hoc only) Optionally set Remote Protocol and Remote Port
- Save — the appropriate button appears on the device page
Use NetBox's bulk edit to enable across multiple devices at once.
| Mode | Minimum role | Description |
|---|---|---|
| Connections | operator | Connects via Vault entry (credentials from Vault) |
| Ad-hoc | poweruser | Creates session directly to hostname |
Automatically sync NetBox devices to rustguac's Vault-backed connections using Event Rules and Webhooks. This keeps connections entries in sync with NetBox — when a device is created or updated, the corresponding entry is created in Vault.
Use Event Rule conditions to sync only the devices you want. You can filter by any combination of:
By console_enabled field (recommended):
{
"and": [
{"attr": "status.value", "value": "active"},
{"attr": "custom_fields.console_enabled", "value": true}
]
}By tag:
{
"and": [
{"attr": "status.value", "value": "active"},
{"attr": "tags.slug", "op": "contains", "value": "remote-console"}
]
}By site:
{
"and": [
{"attr": "status.value", "value": "active"},
{"attr": "site.slug", "value": "dc1"}
]
}By device role:
{
"and": [
{"attr": "status.value", "value": "active"},
{"attr": "role.slug", "value": "server"}
]
}-
Create an Event Rule (Operations > Event Rules):
- Name:
rustguac-sync-create - Content Types: dcim > device
- Events: Object created, Object updated
- Conditions: your filter (see above)
- Action type: Webhook
- Name:
-
Create the Webhook:
-
Name:
rustguac-sync-create -
URL:
https://console.example.com/api/addressbook/folders/shared/netbox-sync/entries -
HTTP method: POST
-
HTTP content type:
application/json -
Additional headers:
Authorization: Bearer <admin-api-key> -
Body template:
{ "name": "{{ data.name | lower }}", "type": "{{ data.custom_fields.remote_protocol | default('ssh') }}", "hostname": "{{ data.primary_ip4.address.split('/')[0] }}", "port": {{ data.custom_fields.remote_port | default(22) }}, "display_name": "{{ data.name }} ({{ data.site.name }})", "prompt_credentials": true }Important: The entry field is
type, notsession_type(it matches the Vault storage format). The hostname uses.split('/')[0]to strip the CIDR prefix from NetBox IP addresses (e.g.10.0.0.1/24→10.0.0.1). Avoidregex_replaceandcutfilters — they are not available in NetBox's Jinja2 environment.
-
-
Create an Event Rule:
- Name:
rustguac-sync-delete - Content Types: dcim > device
- Events: Object deleted
- Action type: Webhook
- Name:
-
Create the Webhook:
- Name:
rustguac-sync-delete - URL:
https://console.example.com/api/addressbook/folders/shared/netbox-sync/entries/{{ data.name | lower }} - HTTP method: DELETE
- Additional headers:
Authorization: Bearer <admin-api-key>
- Name:
Before webhooks can create entries, create the target folder via the API:
curl -X POST https://console.example.com/api/addressbook/folders \
-H "Authorization: Bearer <admin-api-key>" \
-H "Content-Type: application/json" \
-d '{
"scope": "shared",
"name": "netbox-sync",
"allowed_groups": ["network-ops", "sysadmins"],
"description": "Auto-synced from NetBox"
}'Both NetBox and rustguac support OIDC authentication. When configured with the same OIDC provider (Authentik, Keycloak, Okta, etc.), users authenticate once and get sessions in both applications. The Custom Link in NetBox opens rustguac, which recognises the existing SSO session — no second login prompt.
- Configure rustguac with OIDC (see Integrations > OIDC)
- Configure NetBox with the same OIDC provider
- Create the four custom fields (
console_enabled,console_mode,remote_protocol,remote_port) - Create the two Custom Links (Console green, Quick SSH blue)
- On devices you want to enable: check
console_enabled, setconsole_mode - For connections mode: ensure matching entries exist in Vault (manually or via webhook sync)
- Users click the button on a device page and land in a session