Skip to content

The configuration editor in rConfig V8 Core

After reading this page, I can open a device configuration in the rConfig V8 Core code editor, search and copy its contents, and compare two configuration versions side by side to see exactly what changed.

rConfig V8 Core embeds the Monaco code editor, the same editor that powers Visual Studio Code, directly into the configuration management workflow. Configurations open in a browser-based editor with syntax highlighting, line numbers, fast search, and a side-by-side diff view, so you read and compare device configs without exporting them to a separate tool.

Use the config editor whenever you need to read a captured device configuration, find a specific line or value across a large file, or compare two versions to confirm what changed during a maintenance window. It is also where you author and refine compliance policy definitions.

Every editor variant in rConfig V8 Core shares the same core capabilities:

  • Dark mode: toggle between light and dark themes to match your environment.
  • Line numbers: reference specific configuration lines during troubleshooting or team collaboration.
  • Minimap: scan a high-level overview of large configuration files and jump to any section.
  • Syntax highlighting: configuration keywords and structure are colour-coded for readability.

The editor uses the standard Visual Studio Code shortcuts:

  • Ctrl+D (or Cmd+D on Mac): select the word at the cursor, or the next occurrence.
  • Ctrl+F (or Cmd+F): open the find dialog.
  • Ctrl+H (or Cmd+H): find and replace.
  • Ctrl+L: select the entire line.
  • Alt+Up / Alt+Down: move the current line up or down.

For the full list, see the Visual Studio Code keyboard reference.

The config editor is the main interface for viewing and analysing network device configurations. The top toolbar provides quick actions for working with the file you have open.

  • Copy Config: copy the entire configuration to your clipboard for documentation or sharing.
  • Copy Path: copy the file path for use in scripts, automation, or audit trails.
  • Download: save the configuration locally for offline analysis or backup.
  • Search (Ctrl+F): find any string across the configuration, however large the file.
  • Full Screen: expand the editor to fill the window and focus on the configuration.
  1. Go to Dashboard → Inventory → Devices.
  2. Select the device whose configuration you want to view.
  3. Open the Configurations tab.
  4. Select a config from the list to open it in the editor.

rConfig V8 Core config editor showing a captured device configuration with syntax highlighting, line numbers, and a toolbar offering copy, copy path, download, search, and full screen actions Config editor with full toolbar access.

The compare editor places two configuration versions side by side and highlights the differences, which makes configuration drift detection, change validation, and troubleshooting straightforward. The diff view shows:

  • Lines that were added (green).
  • Lines that were removed (red).
  • Lines that were modified (yellow).

The compare editor includes all standard config editor functions, plus per-pane controls:

  • Copy Left/Right: copy either side of the comparison independently.
  • Download Left/Right: save either configuration version on its own.
  • Find Left/Right (Ctrl+F): search within either pane independently.
  • Full Screen: expand the comparison to fill the window.

rConfig V8 Core compare editor showing two configuration versions side by side with added, removed, and modified lines highlighted in green, red, and yellow Compare editor showing a side-by-side configuration diff.

For a deeper look at comparing configurations, see Configuration diffs in rConfig V8 Core.

The policy definition editor is tailored for creating and editing compliance policies and configuration templates. Use it to write regex patterns, define compliance rules, and structure policy logic with full editor tooling.

  • Copy: copy a policy definition for reuse across multiple policy assignments.
  • Download: export a policy definition for version control or sharing.
  • Full Screen: expand the editor to focus on complex policy logic.

rConfig V8 Core policy definition editor showing a compliance policy with regex patterns and the copy, download, and full screen toolbar actions Policy definition editor for compliance rule creation.