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


RIP Configuration Guidelines

To configure Routing Information Protocol (RIP), you include statements at the [edit protocols rip] hierarchy level of the configuration. For routing instances, include the statements at the [edit routing-options routing-instance-name protocols rip] hierarchy level. You can include the following statements in the configuration:

protocols {
    rip {
        authentication-key password;
        authentication-type type;
        (check-zero | no-check-zero);
        graceful-restart {
            disable;
            restart-time seconds;
        }
        holddown seconds;
        import [policy-names];
        message-size number;
        metric-in metric;
        receive receive-options;
        rib-group group-name;
        send send-options;
        traceoptions {
            file name <replace> <size size> <files number> <no-stamp> 
                <(world-readable | no-world-readable)>;
            flag flag <flag-modifier> <disable>; 
        }
        group group-name {
            export [policy-names]; 
            metric-out metric
            preference number;
            neighbor neighbor-name { 
                authentication-key password;
                authentication-type type;
                (check-zero | no-check-zero);
                import [policy-names]; 
                message-size number;
                metric-in metric;
                metric-out metric;
                receive receive-options;
                send send-options;
            }
        }
    }
} 

By default, RIP is disabled.

To have a router exchange routes with other routers, you must configure RIP groups and neighbors. RIP routes received from routers not configured as RIP neighbors are ignored. Likewise, RIP routes are advertised only to routers configured as RIP neighbors.

This chapter discusses the following topics:

For a configuration example, see Example: Configure RIP.


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