Skip to content

Command Groups in rConfig V8 Core

Command Groups are the organisational layer that links devices to the CLI commands rConfig runs when it backs up their configuration. After reading this page you can plan a Command Group structure, create and edit groups, attach commands, and resolve the common errors that block device assignment.

Every device in rConfig is assigned to exactly one Command Group. That group holds an ordered set of commands, and those commands determine what configuration data rConfig retrieves from each member device during both manual and scheduled backups.

When rConfig runs a backup, it:

  1. Reads the target device’s assigned Command Group.
  2. Retrieves the commands attached to that group.
  3. Connects to the device using its stored credentials.
  4. Runs each command in order.
  5. Captures and stores the output as configuration data.

This gives you a single place to control what gets collected from a population of similar devices, rather than configuring commands device by device.

  • One device belongs to one Command Group; one Command Group can hold many devices.
  • A Command Group must have at least one attached command before any device can be assigned.
  • Commands are independent entities attached to groups in a many-to-many relationship, so the same command can be reused across several groups.
  • Manual and scheduled downloads both use the device’s Command Group assignment to decide which commands to run.

Most teams design Command Groups around one or more of these factors:

  • Vendor platform (Cisco IOS, Arista EOS, Juniper Junos)
  • Device role (core, distribution, access layer)
  • Geographic location (data centre, branch, remote site)
  • Command requirements (full config versus operational state data)

Start with broader groups and subdivide only when command requirements genuinely differ. For example, split Cisco_Routers_BGP from Cisco_Routers_OSPF only if the routing protocol actually needs a different command set.

Group devices by vendor and platform. Best for multi-vendor environments where command syntax varies between platforms.

Command GroupMember devicesAttached commands
Cisco_IOS_RoutersRouter1, Router2, Router3show running-config, show ip route, show ip bgp neighbors, show ip protocols
Cisco_NX_SwitchesNexus_Core_1, Nexus_Core_2show running-config, show vpc, show interface status, show cdp neighbors detail
Arista_SwitchesArista_Leaf_1, Arista_Leaf_2show running-config, show ip route, show lldp neighbors, show interfaces status
Juniper_FirewallsSRX_FW_1, SRX_FW_2show configuration, show security policies, show security zones

Group devices by network function. Suitable for single-vendor environments where role drives command needs.

Command GroupMember devicesAttached commands
Core_RoutersBR_Core_1, US_Core_1, IRE_Core_1show running-config, show ip route, show ip bgp, show ip bgp summary
DistributionDist_Switch_1, Dist_Switch_2show running-config, show spanning-tree, show etherchannel summary
Access_SwitchesAccess_SW_1, Access_SW_2show running-config, show version, show mac address-table
Edge_DevicesEdge_1, Edge_2, Edge_3show running-config, show ip route, show interface status

Combine vendor and role for complex environments where both matter.

Command GroupMember devicesAttached commands
Cisco_Core_BGPCore_R1, Core_R2show running-config, show ip bgp, show ip bgp neighbors, show ip route bgp
Cisco_Core_OSPFCore_R3, Core_R4show running-config, show ip ospf, show ip ospf neighbor, show ip route ospf
HP_Edge_MinimalHP_Clos_1, HP_Clos_2show running-config
Cisco_Access_StandardSwitch1, Switch2, Switch3show running-config, show version, show lldp neighbors

Create or edit a Command Group whenever you onboard a new class of device, need a different command set for a group of devices, or are preparing devices for scheduled backups. You will also work here when a Command Group shows an error because it has no commands attached.

  • Administrative access to rConfig V8 Core
  • The commands you intend to attach already created in the Commands interface
  • A classification strategy for your device inventory (vendor, role, or location based)

This video walks through the full workflow for adding and editing Command Groups, including attaching commands and resolving the no-commands error.

  1. Navigate to Inventory > Command Groups from the main rConfig menu.
  2. Click Add Command Group in the top-right corner. The Command Group creation form opens.
  3. Enter a descriptive Name that follows your naming convention, for example Cisco_IOS_Routers rather than Group1. Include the vendor, platform, or role where it helps.
  4. Enter a Description explaining which devices belong in this group and any special command requirements. This text appears in device assignment workflows.
  5. Click Save. rConfig creates the group in a pending-commands state.
  1. From the Command Groups list, locate your new group and click the Commands action button (or Edit, then the commands section).
  2. Select commands from the available command library. Commands must already exist in the Commands interface before you can attach them.
  3. Click Save to finalise the command associations.

After saving, confirm the group appears in the list without an error indicator and that all intended commands are attached. Assign a single device and run a manual download, then review the captured configuration to confirm every expected command output is present.

Consistent names keep large estates maintainable. Useful patterns:

  • {Vendor}_{Platform}_{Role}, for example Cisco_IOS_Core
  • {Location}_{DeviceType}, for example DataCenter_Switches
  • {Function}_{Protocol}, for example Routers_BGP

Avoid generic names like Group1, Test, or Misc, names that do not reflect their content, and special characters that can cause database issues.

  1. Navigate to Inventory > Command Groups.
  2. Locate the target group and click the Edit action button.
  3. Modify the name, description, attached commands, or command order.
  4. Click Save to apply changes.
  1. Open the Command Group edit page.
  2. Select the Commands tab or section.
  3. Use search or filtering to find the commands you need in the available library.
  4. Add the commands, then click Save.

Command selection considerations:

  • Order matters. Commands run in the order they appear in the group.
  • Dependencies. Some commands rely on the device state left by a previous command.
  • Performance. More commands increase download time and storage.
  • Relevance. Only attach commands that produce useful output for the device class.

Commands run sequentially in attached order. For modal devices, the order can be critical:

Correct order:
1. enable (enter privileged mode)
2. configure terminal (enter configuration mode)
3. show running-config (capture configuration)
Incorrect order:
1. show running-config (fails, not in privileged mode)
2. enable
3. configure terminal

For read-only show commands, order is less critical, but keep logical groupings together (all routing commands, then all interface commands) to make output easier to read.

  1. Edit the Command Group.
  2. Open the commands section.
  3. Deselect or remove the target command.
  4. Click Save.

Scheduled tasks target Command Groups rather than individual devices, which makes bulk operations efficient. A single task can target several groups at once, and each device still runs only the commands from its own group.

Scheduled task: "Daily Configuration Backup"
Target Command Groups:
- Cisco_IOS_Routers (15 devices)
- Cisco_NX_Switches (8 devices)
- Arista_Switches (12 devices)
Result: 35 devices backed up, each running its assigned command set.

For the full task workflow, see Scheduled Tasks.

A manual download uses the device’s assigned Command Group to decide which commands to run. There is no way to override these commands during a manual download, which keeps backups consistent.

From the UI, open the device details page and click Download Configuration. rConfig retrieves the commands from the device’s Command Group, runs them, and displays the results.

From the CLI:

Terminal window
cd /var/www/html/rconfig
php artisan rconfig:download-device {device_id}

The CLI command uses the Command Group assigned to the specified device.

A group with no commands shows an error indicator in the Command Groups list, with the message “This Command Group has no attached commands.” This is the normal intermediate state right after creation.

rConfig Command Groups list showing a red error indicator next to a group that has no attached commands

To resolve it:

  1. Click the Edit or Commands button for the affected group.
  2. Open the command attachment interface.
  3. Select at least one command from the library.
  4. Click Save.
  5. Confirm the error indicator has cleared from the list.

Attach commands immediately after creating a group to avoid accidental device assignments to an empty group.

A group cannot be deleted while it is assigned to devices or referenced by scheduled tasks. To remove a group:

  1. Open the Command Group details page and review the assigned devices and any scheduled tasks that reference it.
  2. For each assigned device, open its settings, assign a different appropriate Command Group, and save.
  3. Edit any scheduled task that references the group, remove the group from the task targets (or delete the task), and save.
  4. Return to the Command Groups list and delete the now-unused group.

The number and size of commands in a group directly affect backup duration. Large outputs (such as show tech-support), slow-responding devices, and high command counts all add time.

To keep backups fast:

  • Right-size command sets. Include only commands whose output you actually use.
  • Split config from operational data. Run a small daily group for show running-config and show startup-config, and a larger weekly group for inventory, routing, and interface state. Use separate scheduled tasks with different frequencies.
  • Avoid slow commands. Be cautious with show tech-support on large devices, and test new commands on a single device before adding them to a group.
  • Monitor and adjust. Review backup duration and optimise the groups that run longest.

As a rough guide, keep groups to around 5 to 10 commands and subdivide groups that grow much larger than a few hundred devices. None of these are hard limits, but performance degrades as command counts climb.

OperationPathNotes
Create Command GroupInventory > Command Groups > AddAttach commands before assigning devices
Edit Command GroupInventory > Command Groups > EditChanges affect all member devices
Attach commandsCommand Groups > Edit > CommandsCommands must exist before attachment
Assign device to groupDevices > Edit > Command GroupA device belongs to one group only
View group membersCommand Groups > View > DevicesShows all assigned devices
Delete Command GroupCommand Groups > DeleteRemove all dependencies first