The following example configures BGP neighbor discovery through RPM for all logical routers and all routing instances:
- [edit services rpm]
- bgp {
- probe-type icmp-ping;
- probe-count 5;
- probe-interval 1;
- test-interval 60;
- history-size 10;
- data-size 255;
- data-fill 0123456789;
- }
The following example configures BGP neighbor discovery through RPM for only the following logical routers and routing instances: LR1/RI1, LR1/RI2, LR2, and RI3:
- [edit services rpm]
- bgp {
- probe-type icmp-ping;
- probe-count 5;
- probe-interval 1;
- test-interval 60;
- history-size 10;
- data-size 255;
- data-fill 0123456789;
-
- logical-router {
-
- LR1 {
-
- routing-instances {
- RI1;
- RI2;
- }
- }
- LR2;
- }
-
- routing-instance {
- RI3;
- }
- }
The following example configures BGP neighbor discovery through RPM for only the default logical router and default routing instance:
- [edit services rpm]
- bgp {
- probe-type icmp-ping;
- probe-count 5;
- probe-interval 1;
- test-interval 60;
- history-size 10;
- data-size 255;
- data-fill 0123456789;
-
- logical-router {
-
- null {
-
- routing-instances {
- default;
- }
- }
- }
- }