Enable BGP and define three EBGP groups that recognize
BGP systems in AS 56,
AS 57, and AS 58 as peers:
- [edit]
- routing-options {
- autonomous-system 23;
- }
- protocols {
-
- bgp {
-
- group G1 {
- type external;
- peer-as 56;
- neighbor 10.0.0.1;
- }
-
- group G2 {
- type external;
- peer-as 57;
- neighbor 10.0.10.1;
- }
-
- group G3 {
- type external;
- peer-as 58;
- neighbor 10.0.20.1;
- }
- }
- }