Configuring Junos OS for the First Time on a Device with Dual Routing Engines
If a device has dual Routing Engines, you can create configuration groups and use the same configuration for both Routing Engines. This ensures that the configuration will not change during a failover scenario because of the identical configuration shared between the Routing Engines.
Configure the hostnames and addresses of the two
Routing Engines using configuration groups at the [edit groups]
hierarchy level. Use the reserved configuration group re0
for the Routing Engine in slot 0 and re1
for the Routing
Engine in slot 1 to define Routing Engine-specific parameters. Configuring re0
and re1
groups enables both Routing Engines
to use the same configuration file.
Use the apply-groups
statement to apply
the apply the configuration to the device.
The commit synchronize
command commits
the same configuration on both Routing Engines. The command makes
the active or applied configuration the same for both Routing Engines
with the exception of the groups, re0
being applied to
only RE0
and re1
being applied only to RE1
. If you do not synchronize the configurations between two
Routing Engines and one of them fails, the router may not forward
traffic correctly, because the backup Routing Engine may have a different
configuration.
To initially configure a device with dual Routing Engines that have no base configuration, follow these steps:
After the configuration changes are saved, complete the management console configuration.
Set the root password by choosing one of the following:
To enter a clear-text password, use the following command:
[edit] root@host# set system root-authentication plain-text-password New password: type password Retype new password: retype password
To enter a password that is already encrypted, use the following command:
[edit] root@host# set system root-authentication encrypted-password encrypted-password
To enter an SSH public key, use the following command:
[edit] root@host# set system root-authentication ssh-rsa key
Configure the IP address of the DNS server.
[edit ] root@host# set system name-server address
Configure the router domain name:
[edit ] root@host# set system domain-name domain-name
Configure the IP address of a backup or default network device. A backup device is used only while the routing protocol process is not running. Choose a backup device that is directly connected to the local device by way of the management interface. The device uses this backup only when it is booting and or when the Junos routing software (the routing protocol process, rpd) is not running. For more information, see Configuring a Backup Router.
For devices with two Routing Engines, the backup Routing Engine,
RE1
, uses the backup as a default gateway after the device boots. This enables you to access the backup Routing Engine. (RE0
is the default primary Routing Engine.)Note:The backup router Routing Engine does not support more than 16 backup destinations. If you configure more than 16 destinations on the backup Routing Engine, the Junos OS ignores any destination addresses after the sixteenth address and displays a commit-time warning message to this effect.
[edit] root@host# set system backup-router address
Optionally, display the configuration statements:
[edit] root@ show system { host-name hostname; domain-name domain.name; backup-router address; root-authentication { (encrypted-password "password" | public-key); ssh-dsa "public-key"; ssh-ecdsa "public-key"; ssh-rsa "public-key"; } name-server { address; } interfaces { fxp0 { unit 0 { family inet { address address ; } } } } }
On devices that use management Ethernet interface em0, you will see em0 in place of fxp0 in the
show
command output.After you are satisfied that the configuration is successfully running, issue the
request system snapshot
command to back up the new configuration on both primary and backup Routing Engines.{master} user@host> request system snapshot
The root file system is backed up to /altroot, and /config is backed up to /altconfig. The root and /config file systems are on the device’s CompactFlash card, and the /altroot and /altconfig file systems are on the device’s hard drive.
Note:After you issue the
request system snapshot
command, you cannot return to the previous configuration, because the running copy and backup copy are identical.
For information about creating configuration groups, see Junos OS CLI User Guide.
For information about configuring high availability features
for redundant Routing Engine systems and the re0
group,
see Junos OS High Availability User Guide.