You manage a Junos device with 20 interfaces. Each interface requires the same description and MTU setting. Which configuration approach would reduce repetitive commands and ensure consistency?
A.
Use the wildcard delete command to remove duplicate settings.
B.
Configure each interface individually.
C.
Use a configuration group.
D.
Use search and replace to apply settings across interfaces.
In the Junos OS architecture, configuration groups (defined under the [edit groups] hierarchy) provide a powerful mechanism for template-based management. This approach is specifically designed to handle scenarios where multiple configuration objects, such as twenty different Ethernet interfaces, require identical parameters like a specific description or MTU value. By defining these common settings once within a group, an administrator can then apply that group to multiple interfaces using the apply-groups statement.
This methodology drastically reduces the number of repetitive commands required and, more importantly, ensures strict consistency across the device. If the MTU needs to be adjusted in the future, the change is made in a single location—within the configuration group—and is automatically inherited by all interfaces to which the group is applied. This inheritance model prevents " configuration drift " where individual interfaces might otherwise end up with mismatched settings due to manual entry errors. Using configuration groups is considered a best practice for Senior Architects managing high-density platforms, as it simplifies the candidate configuration file and makes the management of bulk interface settings both scalable and error-resistant.
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit