[Contents] [Prev] [Next] [Index] [Report an Error]


Step 1: Configure the New Group

Purpose

Each re0 or re1 group typically contains, at a minimum, the configuration for the hostname and the management interface (fxp0). If each Routing Engine uses a different management interface, the group must also contain the configuration for the backup router and static routes.

Action

To configure the re0 and re1 groups, follow these steps:

  1. In configuration mode, go to the following hierarchy level:
  2. [edit]
    
    user@host# edit groups 
    
    
    
  3. Configure the group:
  4. [edit groups]
    
    user@host# set group-name
    
    
    

For example:

[edit groups] 
user@host# set re0

  1. To configure the management interface, go to the following hierarchy level:
  2. [edit groups]
    
    user@host# edit groups re0
    
    
    
  3. Include the following statement:
  4. [edit groups re0]
    
    user@host# set interfaces interface-name unit unit family inet address 
    address
    
    
    

For example:

[edit groups re0]
user@host# set interfaces fxp0 unit 0 family inet address 1.1.1.1/24 

  1. To configure the hostname, go to the following hierarchy level:
  2. [edit groups re0]
    
    user@host# edit groups re0 system
    
    
    
  3. Include the following statement:
  4. [edit groups re0 system]
    
    user@host# set host-name hostname
    
    
    

For example:

[edit groups re0 system]
user@host# set host-name foo-re0 

  1. Verify the configuration:
  2. [edit groups re0]
    
    user@host# show 
    
    re0 {
    
        system {
    
            host-name foo-re0;
    
        }
    
        interfaces {
    
            fxp0 {
    
                unit 0 {
    
                    family inet {
    
                        address 1.1.1.1/24;
    
                    }
    
                }
    
            }
    
        }
    
    }
    
    
    
  3. Commit the configuration:
  4. user@host# commit
    
    
    
  5. Repeat Step 1 through Step 8 for the re1 group.

What It Means

The sample output in Step 7 shows that the re0 group contains the minimum configuration for a group, the hostname, and the management interface (fxp0). If each Routing Engine uses a different management interface, the group must also contain the configuration for the backup router and static routes.


[Contents] [Prev] [Next] [Index] [Report an Error]