귀하의 경험을 개선할 수 있도록 도와주십시오.

귀하의 의견을 알려주십시오.

2분이 소요되는 설문 조사에 시간을 내주시겠습니까?

Announcement: Try the Ask AI chatbot for answers to your technical questions about Juniper products and solutions.

close
header-navigation
keyboard_arrow_up
close
keyboard_arrow_left
list Table of Contents
keyboard_arrow_right

이 기계 번역이 도움이 되었습니까?

starstarstarstarstar
Go to English page
면책 조항:

이 페이지는 타사 기계 번역 소프트웨어를 사용해 번역됩니다. 주니퍼 네트웍스에서는 우수한 품질의 번역을 제공하기 위한 합리적인 수준의 노력을 기울이지만 해당 컨텐츠의 정확성을 보장할 수 없습니다. 본 번역에 포함된 정보의 정확성과 관련해 의문이 있는 경우 영문 버전을 참조하시기 바랍니다. 다운로드 가능한 PDF는 영어로만 제공됩니다.

예: BGP에서 여러 경로 보급

date_range 19-Jan-25

이 예제에서는 BGP 라우터가 하나의 활성 경로만 보급하지 않고 여러 경로를 보급하도록 구성됩니다. BGP에서 여러 경로를 보급하는 것은 RFC 7911(BGP에서 여러 경로 보급)에 명시되어있습니다.

요구 사항

이 예에서 사용되는 하드웨어 및 소프트웨어 구성 요소는 다음과 같습니다.

  • BGP 지원 디바이스 8개.

  • BGP 지원 디바이스 중 5개는 라우터가 아니어도 됩니다. 예를 들어, EX 시리즈 이더넷 스위치도 가능합니다.

  • BGP 지원 디바이스 중 3개는 여러 경로를 전송하거나 수신하도록 (또는 전송 또는 수신을 모두 하도록) 구성됩니다. 이러한 3개의 BPG 지원 디바이스는 M 시리즈 멀티서비스 에지 라우터, MX 시리즈 5G 유니버설 라우팅 플랫폼 또는 T 시리즈 코어 라우터여야 합니다.

  • 이러한 라우터 3개는 Junos OS 릴리스 11.4 이상을 실행해야 합니다.

개요

다음 설명은 목적지에 대한 여러 경로를 구성하는 데 사용됩니다.

content_copy zoom_out_map
[edit protocols bgp group group-name family family]
add-path {
    receive;
    send {
        include-backup-path include-backup-path;
        multipath;
        path-count path-count;             
        path-selection-mode {
            (all-paths | equal-cost-paths);
        }
        prefix-policy [ policy-names ... ];
    }
}

이 예제에서 라우터 R5, 라우터 R6, 라우터 R7은 BGP에 정적 라우팅을 재배포합니다. 라우터 R1 및 라우터 R4는 경로 리플렉터입니다. 라우터 R2 및 라우터 R3은 경로 리플렉터 R1의 클라이언트입니다. 라우터 R8은 경로 리플렉터 R4의 클라이언트입니다.

경로 리플렉션은 BGP에서 여러 경로 보급이 활성화되면 선택 사항으로 제공됩니다.

add-path send path-count 6 구성에서는 라우터 R1이 (목적지 당) 최대 6개의 경로를 라우터 R4에 전송하도록 구성됩니다.

add-path receive 구성에서는 라우터 R4가 라우터 R1으로부터 여러 경로를 수신하도록 구성됩니다.

add-path send path-count 6 구성에서는 라우터 R4가 최대 6개의 경로를 라우터 R8에 전송하도록 구성됩니다.

add-path receive 구성에서는 라우터 R8이 라우터 R4로부터 여러 경로를 수신하도록 구성됩니다.

add-path send prefix-policy allow_199 정책 구성은 해당하는 라우팅 필터와와 더불어 라우터 R4가 172.16.199.1/32 경로에 대해서만 다중 경로를 전송하도록 제한합니다.

토폴로지 다이어그램

그림 1 본 예제에서 사용되는 토폴로지를 나타냅니다.

그림 1: BGP에서 다중 경로 보급BGP에서 다중 경로 보급

구성

CLI 빠른 구성

이 예를 빠르게 구성하려면, 아래 명령을 복사하여 텍스트 파일로 붙여 넣은 다음 모든 라인브레이크를 제거하고, 네트워크 구성을 일치하는 데 필요한 세부 사항을 바꾸고 [edit] 계층 수준에서 명령을 CLI로 복사해 붙여 넣습니다.

라우터 R1

content_copy zoom_out_map
set interfaces fe-0/0/0 unit 12 family inet address 10.0.12.1/24
set interfaces fe-0/0/1 unit 13 family inet address 10.0.13.1/24
set interfaces fe-1/0/0 unit 14 family inet address 10.0.14.1/24
set interfaces fe-1/2/0 unit 15 family inet address 10.0.15.1/24
set interfaces lo0 unit 10 family inet address 10.0.0.10/32
set protocols bgp group rr type internal
set protocols bgp group rr local-address 10.0.0.10
set protocols bgp group rr cluster 10.0.0.10
set protocols bgp group rr neighbor 10.0.0.20
set protocols bgp group rr neighbor 10.0.0.30
set protocols bgp group e1 type external
set protocols bgp group e1 neighbor 10.0.15.2 local-address 10.0.15.1
set protocols bgp group e1 neighbor 10.0.15.2 peer-as 2
set protocols bgp group rr_rr type internal
set protocols bgp group rr_rr local-address 10.0.0.10
set protocols bgp group rr_rr neighbor 10.0.0.40 family inet unicast add-path send path-count 6
set protocols ospf area 0.0.0.0 interface lo0.10 passive
set protocols ospf area 0.0.0.0 interface fe-0/0/0.12
set protocols ospf area 0.0.0.0 interface fe-0/0/1.13
set protocols ospf area 0.0.0.0 interface fe-1/0/0.14
set protocols ospf area 0.0.0.0 interface fe-1/2/0.15
set routing-options router-id 10.0.0.10
set routing-options autonomous-system 1

라우터 R2

content_copy zoom_out_map
set interfaces fe-1/2/0 unit 21 family inet address 10.0.12.2/24
set interfaces fe-1/2/1 unit 26 family inet address 10.0.26.1/24
set interfaces lo0 unit 20 family inet address 10.0.0.20/32
set protocols bgp group rr type internal
set protocols bgp group rr local-address 10.0.0.20
set protocols bgp group rr neighbor 10.0.0.10 export set_nh_self
set protocols bgp group e1 type external
set protocols bgp group e1 neighbor 10.0.26.2 peer-as 2
set protocols ospf area 0.0.0.0 interface lo0.20 passive
set protocols ospf area 0.0.0.0 interface fe-1/2/0.21
set protocols ospf area 0.0.0.0 interface fe-1/2/1.28
set policy-options policy-statement set_nh_self then next-hop self
set routing-options autonomous-system 1

라우터 R3

content_copy zoom_out_map
set interfaces fe-1/0/1 unit 31 family inet address 10.0.13.2/24
set interfaces fe-1/0/2 unit 37 family inet address 10.0.37.1/24
set interfaces lo0 unit 30 family inet address 10.0.0.30/32
set protocols bgp group rr type internal
set protocols bgp group rr local-address 10.0.0.30
set protocols bgp group rr neighbor 10.0.0.10 export set_nh_self
set protocols bgp group e1 type external
set protocols bgp group e1 neighbor 10.0.37.2 peer-as 2
set protocols ospf area 0.0.0.0 interface lo0.30 passive
set protocols ospf area 0.0.0.0 interface fe-1/0/1.31
set protocols ospf area 0.0.0.0 interface fe-1/0/2.37
set policy-options policy-statement set_nh_self then next-hop self
set routing-options autonomous-system 1

라우터 R4

content_copy zoom_out_map
set interfaces fe-1/2/0 unit 41 family inet address 10.0.14.2/24
set interfaces fe-1/2/1 unit 48 family inet address 10.0.48.1/24
set interfaces lo0 unit 40 family inet address 10.0.0.40/32
set protocols bgp group rr type internal
set protocols bgp group rr local-address 10.0.0.40
set protocols bgp group rr family inet unicast add-path receive
set protocols bgp group rr neighbor 10.0.0.10
set protocols bgp group rr_client type internal
set protocols bgp group rr_client local-address 10.0.0.40
set protocols bgp group rr_client cluster 10.0.0.40
set protocols bgp group rr_client neighbor 10.0.0.80 family inet unicast add-path send path-count 6
set protocols bgp group rr_client neighbor 10.0.0.80 family inet unicast add-path send prefix-policy allow_199 
set protocols ospf area 0.0.0.0 interface fe-1/2/0.41
set protocols ospf area 0.0.0.0 interface lo0.40 passive
set protocols ospf area 0.0.0.0 interface fe-1/2/1.48
set policy-options policy-statement allow_199 from route-filter 172.16.199.1/32 exact 
set policy-options policy-statement allow_199 term match_199 from prefix-list match_199
set policy-options policy-statement allow_199 then add-path send-count 20
set policy-options policy-statement allow_199 then accept
set routing-options autonomous-system 1

라우터 R5

content_copy zoom_out_map
set interfaces fe-1/2/0 unit 51 family inet address 10.0.15.2/24
set interfaces lo0 unit 50 family inet address 10.0.0.50/32
set protocols bgp group e1 type external
set protocols bgp group e1 neighbor 10.0.15.1 export s2b
set protocols bgp group e1 neighbor 10.0.15.1 peer-as 1
set policy-options policy-statement s2b from protocol static
set policy-options policy-statement s2b from protocol direct
set policy-options policy-statement s2b then as-path-expand 2
set policy-options policy-statement s2b then accept
set routing-options autonomous-system 2
set routing-options static route 172.16.199.1/32 reject
set routing-options static route 172.16.198.1/32 reject

라우터 R6

content_copy zoom_out_map
set interfaces fe-1/2/0 unit 62 family inet address 10.0.26.2/24
set interfaces lo0 unit 60 family inet address 10.0.0.60/32
set protocols bgp group e1 type external
set protocols bgp group e1 neighbor 10.0.26.1 export s2b
set protocols bgp group e1 neighbor 10.0.26.1 peer-as 1
set policy-options policy-statement s2b from protocol static
set policy-options policy-statement s2b from protocol direct
set policy-options policy-statement s2b then accept
set routing-options autonomous-system 2
set routing-options static route 172.16.199.1/32 reject
set routing-options static route 172.16.198.1/32 reject

라우터 R7

content_copy zoom_out_map
set interfaces fe-1/2/0 unit 73 family inet address 10.0.37.2/24
set interfaces lo0 unit 70 family inet address 10.0.0.70/32
set protocols bgp group e1 type external
set protocols bgp group e1 neighbor 10.0.37.1 export s2b
set protocols bgp group e1 neighbor 10.0.37.1 peer-as 1
set policy-options policy-statement s2b from protocol static
set policy-options policy-statement s2b from protocol direct
set policy-options policy-statement s2b then accept
set routing-options autonomous-system 2
set routing-options static route 172.16.199.1/32 reject

라우터 R8

content_copy zoom_out_map
set interfaces fe-1/2/0 unit 84 family inet address 10.0.48.2/24
set interfaces lo0 unit 80 family inet address 10.0.0.80/32
set protocols bgp group rr type internal
set protocols bgp group rr local-address 10.0.0.80
set protocols bgp group rr neighbor 10.0.0.40 family inet unicast add-path receive
set protocols ospf area 0.0.0.0 interface lo0.80 passive
set protocols ospf area 0.0.0.0 interface fe-1/2/0.84
set routing-options autonomous-system 1

라우터 R1 구성하기

단계별 절차

다음 예는 구성 계층에서 다양한 수준의 탐색이 필요합니다. CLI 탐색 관련 정보는 Junos OS CLI 사용자 가이드구성 모드에서의 CLI 편집기 사용을 참조하십시오.

라우터 R1을 구성하려면 다음과 같이 하십시오.

  1. 라우터 R2, 라우터 R3, 라우터 R4 및 라우터 R5에 대한 인터페이스를 구성하고 루프백(lo0) 인터페이스를 구성합니다.

    content_copy zoom_out_map
    [edit interfaces]
    user@R1# set fe-0/0/0 unit 12 family inet address 10.0.12.1/24
    user@R1# set fe-0/0/1 unit 13 family inet address 10.0.13.1/24
    user@R1# set fe-1/0/0 unit 14 family inet address 10.0.14.1/24
    user@R1# set fe-1/2/0 unit 15 family inet address 10.0.15.1/24
    user@R1#set lo0 unit 10 family inet address 10.0.0.10/32
    
  2. 인터페이스에 BGP를 구성하고 IBGP 경로 리플렉션을 구성합니다.

    content_copy zoom_out_map
    [edit protocols bgp]
    user@R1# set group rr type internal
    user@R1# set group rr local-address 10.0.0.10
    user@R1# set group rr cluster 10.0.0.10
    user@R1# set group rr neighbor 10.0.0.20
    user@R1# set group rr neighbor 10.0.0.30
    user@R1# set group rr_rr type internal
    user@R1# set group rr_rr local-address 10.0.0.10
    user@R1# set group e1 type external
    user@R1# set group e1 neighbor 10.0.15.2 local-address 10.0.15.1
    user@R1# set group e1 neighbor 10.0.15.2 peer-as 2
    
  3. 라우터 R1가 주변 라우터인 라우터 R4에 최대 6개의 경로를 전송하도록 주성합니다.

    라우터 R1이 여러 경로를 통해 도달 가능한 모든 목적지가 해당 경로의 목적지가 될 수 있습니다.

    content_copy zoom_out_map
    [edit protocols bgp]
    user@R1# set group rr_rr neighbor 10.0.0.40 family inet unicast add-path send path-count 6
    
  4. 인터페이스에 최단 경로 우선(OSPF)를 구성합니다.

    content_copy zoom_out_map
    [edit protocols ospf]
    user@R1# set area 0.0.0.0 interface lo0.10 passive
    user@R1# set area 0.0.0.0 interface fe-0/0/0.12
    user@R1# set area 0.0.0.0 interface fe-0/0/1.13
    user@R1# set area 0.0.0.0 interface fe-1/0/0.14
    user@R1# set area 0.0.0.0 interface fe-1/2/0.15
    
  5. 라우터 ID 및 AS(Autonomous System) 번호를 구성합니다.

    content_copy zoom_out_map
    [edit routing-options]
    user@R1# set router-id 10.0.0.10
    user@R1# set autonomous-system 1
    
  6. 디바이스 구성을 완료하면 해당 구성을 커밋합니다.

    content_copy zoom_out_map
    user@R1# commit
    

결과

구성 모드에서 show interfaces, show protocols, show policy-optionsshow routing-options 명령을 입력하여 구성을 확인합니다. 출력 결과가 의도한 구성대로 표시되지 않으면 이 예의 지침을 반복하여 구성을 수정하십시오.

content_copy zoom_out_map
user@R1# show interfaces
fe-0/0/0 {
    unit 12 {
        family inet {
            address 10.0.12.1/24;
        }
    }
}
fe-0/0/1 {
    unit 13 {
        family inet {
            address 10.0.13.1/24;
        }
    }
}
fe-1/0/0 {
    unit 14 {
        family inet {
            address 10.0.14.1/24;
        }
    }
}
fe-1/2/0 {
    unit 15 {
        family inet {
            address 10.0.15.1/24;
        }
    }
}
lo0 {
    unit 10 {
        family inet {
            address 10.0.0.10/32;
        }
    }
}
content_copy zoom_out_map
user@R1# show protocols
bgp {
    group rr {
        type internal;
        local-address 10.0.0.10;
        cluster 10.0.0.10;
        neighbor 10.0.0.20;
        neighbor 10.0.0.30;
    }
    group e1 {
        type external;
        neighbor 10.0.15.2 {
            local-address 10.0.15.1;
            peer-as 2;
        }
    }
    group rr_rr {
        type internal;
        local-address 10.0.0.10;
        neighbor 10.0.0.40 {
            family inet {
                unicast {
                    add-path {
                        send {
                            path-count 6;
                        }
                    }
                }
            }
        }
    }
}
ospf {
    area 0.0.0.0 {
        interface lo0.10 {
            passive;
        }
        interface fe-0/0/0.12;
        interface fe-0/0/1.13;
        interface fe-1/0/0.14;
        interface fe-1/2/0.15;
    }
}
content_copy zoom_out_map
user@R1# show routing-options
router-id 10.0.0.10;
 autonomous-system 1;

라우터 R2 구성하기

단계별 절차

다음을 참조하여 라우터 R2를 구성하십시오:

  1. 루프백(lo0) 인터페이스와 라우터 R6 및 라우터 R1에 대한 인터페이스를 구성합니다.

    content_copy zoom_out_map
    [edit interfaces]
    user@R2# set fe-1/2/0 unit 21 family inet address 10.0.12.2/24
    user@R2# set fe-1/2/1 unit 26 family inet address 10.0.26.1/24
    user@R2# set lo0 unit 20 family inet address 10.0.0.20/32
    
  2. 라우터 R2의 인터페이스에서 BGP 및 OSPF를 구성합니다.

    content_copy zoom_out_map
    [edit protocols]
    user@R2# set bgp group rr type internal
    user@R2# set bgp group rr local-address 10.0.0.20
    user@R2# set bgp group e1 type external
    user@R2# set bgp group e1 neighbor 10.0.26.2 peer-as 2
    user@R2# set ospf area 0.0.0.0 interface lo0.20 passive
    user@R2# set ospf area 0.0.0.0 interface fe-1/2/0.21
    user@R2# set ospf area 0.0.0.0 interface fe-1/2/1.28
    
  3. 라우터 R2에서 라우터 R1로 전송되는 경로의 경우, 라우터 R1은 10.0.26.0/24 네트워크에서 라우터 R6의 주소로 가는 경로가 없기 때문에 라우터 R2를 다음 홉으로 보급합니다.

    content_copy zoom_out_map
    [edit]
    user@R2# set policy-options policy-statement set_nh_self then next-hop self
    user@R2# set protocols bgp group rr neighbor 10.0.0.10 export set_nh_self
    
  4. AS(Autonomous System) 번호를 구성합니다.

    content_copy zoom_out_map
    [edit]
    user@R2# set routing-options autonomous-system 1
    
  5. 디바이스 구성을 완료하면 해당 구성을 커밋합니다.

    content_copy zoom_out_map
    user@R2# commit
    

결과

구성 모드에서 show interfaces, show protocols, show policy-optionsshow routing-options명령을 입력하여 구성을 확인합니다. 출력 결과가 의도한 구성대로 표시되지 않으면 이 예의 지침을 반복하여 구성을 수정하십시오.

content_copy zoom_out_map
user@R2# show interfaces
fe-1/2/0 {
    unit 21 {
        family inet {
            address 10.0.12.2/24;
        }
    }
}
fe-1/2/1 {
    unit 26 {
        family inet {
            address 10.0.26.1/24;
        }
    }
}
lo0 {
    unit 20 {
        family inet {
            address 10.0.0.20/32;
        }
    }
}
content_copy zoom_out_map
user@R2# show protocols
bgp {
    group rr {
        type internal;
        local-address 10.0.0.20;
        neighbor 10.0.0.10 {
            export set_nh_self;
        }
    }
    group e1 {
        type external;
        neighbor 10.0.26.2 {
            peer-as 2;
        }
    }
}
ospf {
    area 0.0.0.0 {
        interface lo0.20 {
            passive;
        }
        interface fe-1/2/0.21;
        interface fe-1/2/1.28;
    }
}
content_copy zoom_out_map
user@R2# show policy-options
policy-statement set_nh_self {
    then {
        next-hop self;
    }
}
content_copy zoom_out_map
user@R2# show routing-options
 autonomous-system 1;

라우터 R3 구성

단계별 절차

다음을 참조하여 라우터 R3을 구성하십시오.

  1. 루프백(lo0) 인터페이스와 라우터 R7 및 라우터 R1의 인터페이스를 구성합니다.

    content_copy zoom_out_map
    [edit interfaces]
    user@R3# set fe-1/0/1 unit 31 family inet address 10.0.13.2/24
    user@R3# set fe-1/0/2 unit 37 family inet address 10.0.37.1/24
    user@R3# set lo0 unit 30 family inet address 10.0.0.30/32
    
  2. 라우터 R3의 인터페이스에 BGP 및 OSPF를 구성합니다.

    content_copy zoom_out_map
    [edit protocols]
    user@R3# set bgp group rr type internal
    user@R3# set bgp group rr local-address 10.0.0.30
    user@R3# set bgp group e1 type external
    user@R3# set bgp group e1 neighbor 10.0.37.2 peer-as 2
    user@R3# set ospf area 0.0.0.0 interface lo0.30 passive
    user@R3# set ospf area 0.0.0.0 interface fe-1/0/1.31
    user@R3# set ospf area 0.0.0.0 interface fe-1/0/2.37
    
  3. 라우터 R3에서 라우터 R1로 전송된 경로의 경우, 라우터 R1이 10.0.37.0/24 네트워크에서 라우터 R7의 주소에 대한 경로를 갖지 않기 때문에 라우터 R3을 다음 홉으로 보급합니다.

    content_copy zoom_out_map
    [edit]
    user@R3# set policy-options policy-statement set_nh_self then next-hop self
    user@R3# set protocols bgp group rr neighbor 10.0.0.10 export set_nh_self
    
  4. AS(Autonomous System) 번호를 구성합니다.

    content_copy zoom_out_map
    [edit]
    user@R3# set routing-options autonomous-system 1
    
  5. 디바이스 구성을 완료하면 해당 구성을 커밋합니다.

    content_copy zoom_out_map
    user@R3# commit
    

결과

구성 모드에서 show interfaces, show protocols, show policy-optionsshow routing-options 명령을 입력하여 구성을 확인합니다. 출력 결과가 의도한 구성대로 표시되지 않으면 이 예의 지침을 반복하여 구성을 수정하십시오.

content_copy zoom_out_map
user@R3# show interfaces
fe-1/0/1 {
    unit 31 {
        family inet {
            address 10.0.13.2/24;
        }
    }
}
fe-1/0/2 {
    unit 37 {
        family inet {
            address 10.0.37.1/24;
        }
    }
}
lo0 {
    unit 30 {
        family inet {
            address 10.0.0.30/32;
        }
    }
}
content_copy zoom_out_map
user@R3# show protocols
bgp {
    group rr {
        type internal;
        local-address 10.0.0.30;
        neighbor 10.0.0.10 {
            export set_nh_self;
        }
    }
    group e1 {
        type external;
        neighbor 10.0.37.2 {
            peer-as 2;
        }
    }
}
ospf {
    area 0.0.0.0 {
        interface lo0.30 {
            passive;
        }
        interface fe-1/0/1.31;
        interface fe-1/0/2.37;
    }
}
user@R3# show policy-options
policy-statement set_nh_self {
    then {
        next-hop self;
    }
}
content_copy zoom_out_map
user@R3# show routing-options
 autonomous-system 1;

라우터 R4 구성

단계별 절차

다음을 참조하여 라우터 R4를 구성하십시오.

  1. 라우터 R1 및 라우터 R8에 대한 인터페이스를 구성하고 루프백(lo0) 인터페이스를 구성합니다.

    content_copy zoom_out_map
    [edit interfaces]
    user@R4# set fe-1/2/0 unit 41 family inet address 10.0.14.2/24
    user@R4# set fe-1/2/1 unit 48 family inet address 10.0.48.1/24
    user@R4# set lo0 unit 40 family inet address 10.0.0.40/32
    
  2. 인터페이스에 BGP를 구성하고 IBGP 경로 리플렉션을 구성합니다.

    content_copy zoom_out_map
    [edit protocols bgp]
    user@R4# set group rr type internal
    user@R4# set group rr local-address 10.0.0.40
    user@R4# set group rr neighbor 10.0.0.10
    user@R4# set group rr_client type internal
    user@R4# set group rr_client local-address 10.0.0.40
    user@R4# set group rr_client cluster 10.0.0.40
    
  3. 라우터 R4가 주변 라우터인 라우터 R8에 최대 6개의 경로를 전송하도록 구성합니다.

    라우터 R4가 여러 경로를 통해 도달 가능한 모든 목적지가 해당 경로의 목적지가 될 수 있습니다.

    content_copy zoom_out_map
    [edit protocols bgp]
    user@R4# set group rr_client neighbor 10.0.0.80 family inet unicast add-path send path-count 6
    
  4. 라우터 R4가 주변 라우터인 라우터 R1에서 여러 경로를 수신하도록 구성합니다.

    라우터 R1이 여러 경로를 통해 도달 가능한 모든 목적지가 해당 경로의 목적지가 될 수 있습니다.

    content_copy zoom_out_map
    [edit protocols bgp group rr family inet unicast]
    user@R4# set add-path receive
    
  5. 인터페이스에 최단 경로 우선(OSPF)를 구성합니다.

    content_copy zoom_out_map
    [edit protocols ospf area 0.0.0.0]
    user@R4# set interface fe-1/2/0.41
    user@R4# set interface lo0.40 passive
    user@R4# set interface fe-1/2/1.48
    
  6. 라우터 R4가 라우터 R8에 172.16.199.1/32 라우터에 대한 여러 경로를 전송하도록 허용하는 정책을 구성합니다.

    • 라우터 R4는 172.16.198.1/32 경로 및 172.16.199.1/32 경로에 대한 여러 경로를 수신합니다. 그러나 본 정책으로 인해 라우터 R4는 172.16.199.1/32 라우터에 대한 여러 경로만을 전송할 수 있습니다.

      content_copy zoom_out_map
      [edit protocols bgp group rr_client neighbor 10.0.0.80 family inet unicast]
      user@R4# set add-path send prefix-policy allow_199 
      [edit policy-options policy-statement allow_199]
      user@R4# set from route-filter 172.16.199.1/32 exact 
      user@R4# set then accept
      
    • 또한, add-path 보급 접두사 하위 집합에 대해 라우터 R4가 최대 20BGP add-path 경로를 전송하도록 구성할 수 있습니다.

      content_copy zoom_out_map
      [edit policy-options policy-statement allow_199]
      user@R4# set term match_199 from prefix-list match_199
      user@R4# set then add-path send-count 20
      
  7. AS(Autonomous System) 번호를 구성합니다.

    content_copy zoom_out_map
    [edit routing-options]
    user@R4# set autonomous-system 1
    
  8. 디바이스 구성을 완료하면 해당 구성을 커밋합니다.

    content_copy zoom_out_map
    user@R4# commit
    

결과

구성 모드에서 show interfaces, show protocols, show policy-optionsshow routing-options 명령을 입력하여 구성을 확인합니다. 출력 결과가 의도한 구성대로 표시되지 않으면 이 예의 지침을 반복하여 구성을 수정하십시오.

content_copy zoom_out_map
user@R4# show interfaces
fe-1/2/0 {
    unit 41 {
        family inet {
            address 10.0.14.2/24;
        }
    }
}
fe-1/2/1 {
    unit 48 {
        family inet {
            address 10.0.48.1/24;
        }
    }
}
lo0 {
    unit 40 {
        family inet {
            address 10.0.0.40/32;
        }
    }
}
content_copy zoom_out_map
user@R4# show protocols
bgp {
    group rr {
        type internal;
        local-address 10.0.0.40;
        family inet {
            unicast {
                add-path {
                    receive;
                }
            }
        }
        neighbor 10.0.0.10;
    }
    group rr_client {
        type internal;
        local-address 10.0.0.40;
        cluster 10.0.0.40;
        neighbor 10.0.0.80 {
            family inet {
                unicast {
                    add-path {
                        send {
                            path-count 6;
                            prefix-policy allow_199;
                        }
                    }
                }
            }
        }
    }
}
ospf {
    area 0.0.0.0 {
        interface lo0.40 {
            passive;
        }
        interface fe-1/2/0.41;
        interface fe-1/2/1.48;
    }
}
content_copy zoom_out_map
user@R4# show policy-options
policy-statement allow_199 {
    from {
        route-filter 172.16.199.1/32 exact;
    }
    from term match_199 {
        prefix-list match_199;
    }
        then add-path send-count 20;
    then accept;
}
content_copy zoom_out_map
user@R4# show routing-options
 autonomous-system 1;

라우터 R5 구성

단계별 절차

다음을 참조하여 라우터 R5를 구성하십시오.

  1. 루프백(lo0) 인터페이스 및 라우터 R1에 대한 인터페이스를 구성합니다.

    content_copy zoom_out_map
    [edit interfaces]
    user@R5# set fe-1/2/0 unit 51 family inet address 10.0.15.2/24
    user@R5# set lo0 unit 50 family inet address 10.0.0.50/32
    
  2. 라우터 R5의 인터페이스에 BGP를 구성합니다.

    content_copy zoom_out_map
    [edit protocols bgp group e1]
    user@R5# set type external
    user@R5# set neighbor 10.0.15.1 peer-as 1
    
  3. BGP에 재배포할 정적 라우팅을 생성합니다.

    content_copy zoom_out_map
    [edit routing-options]
    user@R5# set static route 172.16.199.1/32 reject
    user@R5# set static route 172.16.198.1/32 reject
    
  4. 정적 및 직접 라우팅을 BGP로 재배포합니다.

    content_copy zoom_out_map
    [edit protocols bgp group e1 neighbor 10.0.15.1]
    user@R5# set export s2b
    [edit policy-options policy-statement s2b]
    user@R5# set from protocol static
    user@R5# set from protocol direct
    user@R5# set then as-path-expand 2
    user@R5# set then accept
    
  5. AS(Autonomous System) 번호를 구성합니다.

    content_copy zoom_out_map
    [edit routing-options]
    user@R5# set autonomous-system 2
    
  6. 디바이스 구성을 완료하면 해당 구성을 커밋합니다.

    content_copy zoom_out_map
    user@R5# commit
    

결과

구성 모드에서 show interfaces, show protocols, show policy-optionsshow routing-options 명령을 입력하여 구성을 확인합니다. 출력 결과가 의도한 구성대로 표시되지 않으면 이 예의 지침을 반복하여 구성을 수정하십시오.

content_copy zoom_out_map
user@R5# show interfaces
fe-1/2/0 {
    unit 51 {
        
        family inet {
            address 10.0.15.2/24;
        }
    }
}
lo0 {
    unit 50 {
        family inet {
            address 10.0.0.50/32;
        }
    }
}
content_copy zoom_out_map
user@R5# show protocols
bgp {
    group e1 {
        type external;
        neighbor 10.0.15.1 {
            export s2b;
            peer-as 1;
        }
    }
}
content_copy zoom_out_map
user@R5# show policy-options
policy-statement s2b {
    from protocol [ static direct ];
    then {
        as-path-expand 2;
        accept;
    }
}
content_copy zoom_out_map
user@R5# show routing-options
static {
    route 172.16.198.1/32 reject;
    route 172.16.199.1/32 reject;
}
 autonomous-system 2;

라우터 R6 구성

단계별 절차

다음을 참조하여 라우터 R6을 구성하십시오.

  1. 루프백(lo0) 인터페이스 및 라우터 R2에 대한 인터페이스를 구성합니다.

    content_copy zoom_out_map
    [edit interfaces]
    user@R6# set fe-1/2/0 unit 62 family inet address 10.0.26.2/24
    user@R6# set lo0 unit 60 family inet address 10.0.0.60/32
    
  2. 라우터 R6의 인터페이스에 BGP를 구성합니다.

    content_copy zoom_out_map
    [edit protocols]
    user@R6# set bgp group e1 type external
    user@R6# set bgp group e1 neighbor 10.0.26.1 peer-as 1
    
  3. BGP에 재배포할 정적 라우팅을 생성합니다.

    content_copy zoom_out_map
    [edit]
    user@R6# set routing-options static route 172.16.199.1/32 reject
    user@R6# set routing-options static route 172.16.198.1/32 reject
    
  4. 라우터 R6의 라우팅 테이블에서 정적 및 직접 라우팅을 BGP로 재배포합니다.

    content_copy zoom_out_map
    [edit protocols bgp group e1 neighbor 10.0.26.1]
    user@R6# set export s2b
    [edit policy-options policy-statement s2b]
    user@R6# set from protocol static
    user@R6# set from protocol direct
    user@R6# set then accept
    
  5. AS(Autonomous System) 번호를 구성합니다.

    content_copy zoom_out_map
    [edit routing-options]
    user@R6# set autonomous-system 2
    
  6. 디바이스 구성을 완료하면 해당 구성을 커밋합니다.

    content_copy zoom_out_map
    user@R6# commit
    

결과

구성 모드에서 show interfaces, show protocols, show policy-optionsshow routing-options 명령을 입력하여 구성을 확인합니다. 출력 결과가 의도한 구성대로 표시되지 않으면 이 예의 지침을 반복하여 구성을 수정하십시오.

content_copy zoom_out_map
user@R6# show interfaces
fe-1/2/0 {
    unit 62 {
        
        family inet {
            address 10.0.26.2/24;
        }
    }
}
lo0 {
    unit 60 {
        family inet {
            address 10.0.0.60/32;
        }
    }
}
content_copy zoom_out_map
user@R6# show protocols
bgp {
    group e1 {
        type external;
        neighbor 10.0.26.1 {
            export s2b;
            peer-as 1;
        }
    }
}
content_copy zoom_out_map
user@R6# show policy-options
policy-statement s2b {
    from protocol [ static direct ];
    then accept;
}
content_copy zoom_out_map
user@R6# show routing-options
static {
    route 172.16.198.1/32 reject;
    route 172.16.199.1/32 reject;
}
 autonomous-system 2;

라우터 R7 구성

단계별 절차

다음을 참조하여 라우터 R7을 구성하십시오.

  1. 루프백(lo0) 인터페이스 및 라우터 R3에 대한 인터페이스를 구성합니다.

    content_copy zoom_out_map
    [edit interfaces]
    user@R7# set fe-1/2/0 unit 73 family inet address 10.0.37.2/24
    user@R7# set lo0 unit 70 family inet address 10.0.0.70/32
    
  2. 라우터 R7의 인터페이스에 BGP를 구성합니다.

    content_copy zoom_out_map
    [edit protocols bgp group e1]
    user@R7# set type external
    user@R7# set neighbor 10.0.37.1 peer-as 1
    
  3. BGP로 재배포할 정적 라우팅을 생성합니다.

    content_copy zoom_out_map
    [edit]
    user@R7# set routing-options static route 172.16.199.1/32 reject
    
  4. 라우터 R7의 라우팅 테이블에서 정적 및 직접 라우팅을 BGP로 재배포합니다.

    content_copy zoom_out_map
    [edit protocols bgp group e1 neighbor 10.0.37.1]
    user@R7# set export s2b
    [edit policy-options policy-statement s2b]
    user@R7# set from protocol static
    user@R7# set from protocol direct
    user@R7# set then accept
    
  5. AS(Autonomous System) 번호를 구성합니다.

    content_copy zoom_out_map
    [edit routing-options]
    user@R7# set autonomous-system 2
    
  6. 디바이스 구성을 완료하면 해당 구성을 커밋합니다.

    content_copy zoom_out_map
    user@R7# commit
    

결과

구성 모드에서 show interfaces, show protocols, show policy-optionsshow routing-options 명령을 입력하여 구성을 확인합니다. 출력 결과가 의도한 구성대로 표시되지 않으면 이 예의 지침을 반복하여 구성을 수정하십시오.

content_copy zoom_out_map
user@R7# show interfaces
fe-1/2/0 {
    unit 73 {
        
        family inet {
            address 10.0.37.2/24;
        }
    }
}
lo0 {
    unit 70 {
        family inet {
            address 10.0.0.70/32;
        }
    }
}
content_copy zoom_out_map
user@R7# show protocols
bgp {
    group e1 {
        type external;
        neighbor 10.0.37.1 {
            export s2b;
            peer-as 1;
        }
    }
}
content_copy zoom_out_map
user@R7# show policy-options
policy-statement s2b {
    from protocol [ static direct ];
    then accept;
}
content_copy zoom_out_map
user@R7# show routing-options
static {
    route 172.16.199.1/32 reject;
}
 autonomous-system 2;

라우터 R8 구성

단계별 절차

다음을 참조하여 라우터 R8을 구성하십시오.

  1. 루프백(lo0) 인터페이스 및 라우터 R4에 대한 인터페이스를 구성합니다.

    content_copy zoom_out_map
    [edit interfaces]
    user@R8# set fe-1/2/0 unit 84 family inet address 10.0.48.2/24
    user@R8# set lo0 unit 80 family inet address 10.0.0.80/32
    
  2. 라우터 R8의 인터페이스에 BGP 및 OSPF를 구성합니다.

    content_copy zoom_out_map
    [edit protocols]
    user@R8# set bgp group rr type internal
    user@R8# set bgp group rr local-address 10.0.0.80
    user@R8# set ospf area 0.0.0.0 interface lo0.80 passive
    user@R8# set ospf area 0.0.0.0 interface fe-1/2/0.84
    
  3. 라우터 R8가 주변 라우터인 라우터 R4에서 여러 경로를 수신하도록 구성합니다.

    라우터 R4가 여러 경로를 통해 도달 가능한 모든 목적지가 해당 경로의 목적지가 될 수 있습니다.

    content_copy zoom_out_map
    [edit protocols]
    user@R8# set bgp group rr neighbor 10.0.0.40 family inet unicast add-path receive
    
  4. AS(Autonomous System) 번호를 구성합니다.

    content_copy zoom_out_map
    [edit]
    user@R8# set routing-options autonomous-system 1
    
  5. 디바이스 구성을 완료하면 해당 구성을 커밋합니다.

    content_copy zoom_out_map
    user@R8# commit
    

결과

구성 모드에서 show interfaces, show protocols, show policy-optionsshow routing-options 명령을 입력하여 구성을 확인합니다. 출력 결과가 의도한 구성대로 표시되지 않으면 이 예의 지침을 반복하여 구성을 수정하십시오.

content_copy zoom_out_map
user@R8# show interfaces
fe-1/2/0 {
    
    unit 84 {
        
        family inet {
            address 10.0.48.2/24;
        }
    }
}
lo0 {
    unit 80 {
        family inet {
            address 10.0.0.80/32;
        }
    }
}
content_copy zoom_out_map
user@R8# show protocols
bgp {
    group rr {
        type internal;
        local-address 10.0.0.80;
        neighbor 10.0.0.40 {
            family inet {
                unicast {
                    add-path {
                        receive;
                    }
                }
            }
        }
    }
}
ospf {
    area 0.0.0.0 {
        interface lo0.80 {
            passive;
        }
        interface fe-1/2/0.84;
    }
}
content_copy zoom_out_map
user@R8# show routing-options
 autonomous-system 1;

검증

구성이 올바르게 작동하고 있는지 확인합니다.

BGP 피어에 여러 경로 전송 및 수신 기능이 있는지 확인

목적

show bgp neighbor 명령의 출력에 다음 문자열 중 하나 또는 두 개가 모두 나타나는지 확인합니다.

  • NLRI's for which peer can receive multiple paths: inet-unicast

  • NLRI's for which peer can send multiple paths: inet-unicast

작업

content_copy zoom_out_map
user@R1> show bgp neighbor 10.0.0.40
Peer: 10.0.0.40+179 AS 1       Local: 10.0.0.10+64227 AS 1    
  Type: Internal    State: Established    Flags: <Sync>
...  NLRI's for which peer can receive multiple paths: inet-unicast
...
content_copy zoom_out_map
user@R4> show bgp neighbor 10.0.0.10
Peer: 10.0.0.10+64227 AS 1     Local: 10.0.0.40+179 AS 1    
  Type: Internal    State: Established    Flags: <Sync>
...
  NLRI's for which peer can send multiple paths: inet-unicast
...
content_copy zoom_out_map
user@R4> show bgp neighbor 10.0.0.80
Peer: 10.0.0.80+55416 AS 1     Local: 10.0.0.40+179 AS 1    
  Type: Internal    State: Established  (route reflector client)Flags: <Sync>
  ,,,
  NLRI's for which peer can receive multiple paths: inet-unicast
  ...
content_copy zoom_out_map
user@R8> show bgp neighbor 10.0.0.40
Peer: 10.0.0.40+179 AS 1       Local: 10.0.0.80+55416 AS 1    
  Type: Internal    State: Established    Flags: <Sync>
  ...
  NLRI's for which peer can send multiple paths: inet-unicast
  ...

라우터 R1이 여러 경로를 보급하는지 검증

목적

172.16.198.1/32 목적지에 대한 여러 경로와 172.16.199.1/32 목적지에 대한 여러 경로가 라우터 R4에 보급되는지 확인합니다.

작업

content_copy zoom_out_map
user@R1> show route advertising-protocol bgp 10.0.0.40
inet.0: 21 destinations, 25 routes (21 active, 0 holddown, 0 hidden)
  Prefix                  Nexthop              MED     Lclpref    AS path
* 10.0.0.50/32            10.0.15.2                    100        2 2 I
* 10.0.0.60/32            10.0.0.20                    100        2 I
* 10.0.0.70/32            10.0.0.30                    100        2 I
* 172.16.198.1/32            10.0.0.20                    100        2 I
                          10.0.15.2                    100        2 2 I
* 172.16.199.1/32            10.0.0.20                    100        2 I
                          10.0.0.30                    100        2 I
                          10.0.15.2                    100        2 2 I
* 172.16.200.0/30            10.0.0.20                    100        2 I

의미

하나의 접두사와 1개 이상의 다음 홉이 표시되는 경우, 라우터 R4에 여러 경로가 보급됨을 의미합니다.

라우터 R4가 여러 경로를 수신 및 보급하는지 검증

목적

172.16.199.1/32 목적지에 대한 여러 경로가 라우터 R1에서 수신되며 라우터 R8에 보급되는지 확인합니다. 172.16.198.1/32 목적지에 대한 여러 경로가 라우터 R1에서 수신되되, 이 목적지에 대한 하나의 경로만이 라우터 R8에 보급되는지 확인합니다.

작업

content_copy zoom_out_map
user@R4> show route receive-protocol bgp 10.0.0.10
inet.0: 19 destinations, 22 routes (19 active, 0 holddown, 0 hidden)
  Prefix                  Nexthop              MED     Lclpref    AS path
* 10.0.0.50/32            10.0.15.2                    100        2 2 I
* 10.0.0.60/32            10.0.0.20                    100        2 I
* 10.0.0.70/32            10.0.0.30                    100        2 I
* 172.16.198.1/32            10.0.0.20                    100        2 I
                          10.0.15.2                    100        2 2 I
* 172.16.199.1/32            10.0.0.20                    100        2 I
                          10.0.0.30                    100        2 I
                          10.0.15.2                    100        2 2 I
* 172.16.200.0/30            10.0.0.20                    100        2 I

content_copy zoom_out_map
user@R4> show route advertising-protocol bgp 10.0.0.80
inet.0: 19 destinations, 22 routes (19 active, 0 holddown, 0 hidden)
  Prefix                  Nexthop              MED     Lclpref    AS path
* 10.0.0.50/32            10.0.15.2                    100        2 2 I
* 10.0.0.60/32            10.0.0.20                    100        2 I
* 10.0.0.70/32            10.0.0.30                    100        2 I
* 172.16.198.1/32            10.0.0.20                    100        2 I
* 172.16.199.1/32            10.0.0.20                    100        2 I
                          10.0.0.30                    100        2 I
                          10.0.15.2                    100        2 2 I
* 172.16.200.0/30            10.0.0.20                    100        2 I

의미

show route receive-protocol 명령은 라우터 R4가 172.16.198.1/32 목적지에 대한 2개의 경로와 172.16.199.1/32 목적지에 대한 3개의 경로를 수신하는 것을 보여줍니다. show route advertising-protocol 명령은 라우터 R4가 172.16.198.1/32 목적지에 대한 하나의 경로만을 보급하고, 172.16.199.1/32 목적지에 대한 3개 경로를 모두 보급하는 것을 보여줍니다.

라우터 R4에 적용되는 접두사 정책으로 인해, 라우터 R4는 172.16.198.1/32 목적지에 대한 다중 경로를 보급하지 않습니다. 라우터 R4는 여러 경로를 수신하더라도 172.16.198.1/32 목적지에 대한 하나의 경로만을 보급합니다.

라우터 R8가 다중 경로를 수신하는지 확인

목적

라우터 R8이 라우터 R4를 통해 172.16.199.1/32 목적지에 대한 다중 경로를 수신하는지 확인합니다. 라우터 R8이 라우터 R4를 통해 172.16.198.1/32 목적지에 대한 하나의 경로만을 수신하는지 확인합니다.

작업

content_copy zoom_out_map
user@R8> show route receive-protocol bgp 10.0.0.40
inet.0: 18 destinations, 20 routes (18 active, 0 holddown, 0 hidden)
  Prefix                  Nexthop              MED     Lclpref    AS path
* 10.0.0.50/32            10.0.15.2                    100        2 2 I
* 10.0.0.60/32            10.0.0.20                    100        2 I
* 10.0.0.70/32            10.0.0.30                    100        2 I
* 172.16.198.1/32            10.0.0.20                    100        2 I
* 172.16.199.1/32            10.0.0.20                    100        2 I
                          10.0.0.30                    100        2 I
                          10.0.15.2                    100        2 2 I
* 200.1.1.0/30            10.0.0.20                    100        2 I

경로 ID 확인

목적

다운스트림 디바이스(라우터 R4 및 라우터 R8)에서 경로 ID가 해당 경로를 고유하게 식별하는지 확인합니다. Addpath Path ID: 문자열을 참조하십시오.

작업

content_copy zoom_out_map
user@R4> show route 172.16.199.1/32 detail

inet.0: 18 destinations, 20 routes (18 active, 0 holddown, 0 hidden)
172.16.199.1/32 (3 entries, 3 announced)
        *BGP    Preference: 170/-101
                Next hop type: Indirect
                Next-hop reference count: 9
                Source: 10.0.0.10
                Next hop type: Router, Next hop index: 676
                Next hop: 10.0.14.1 via lt-1/2/0.41, selected
                Protocol next hop: 10.0.0.20
                Indirect next hop: 92041c8 262146
                State: <Active Int Ext>
                Local AS:     1 Peer AS:     1
                Age: 1:44:37    Metric2: 2 
                Task: BGP_1.10.0.0.10+64227
                Announcement bits (3): 2-KRT 3-BGP RT Background 4-Resolve tree 1 
                AS path: 2 I (Originator) Cluster list:  10.0.0.10
                AS path:  Originator ID: 10.0.0.20
                Accepted
                Localpref: 100
                Router ID: 10.0.0.10
                Addpath Path ID: 1
         BGP    Preference: 170/-101
                Next hop type: Indirect
                Next-hop reference count: 4
                Source: 10.0.0.10
                Next hop type: Router, Next hop index: 676
                Next hop: 10.0.14.1 via lt-1/2/0.41, selected
                Protocol next hop: 10.0.0.30
                Indirect next hop: 92042ac 262151
                State: <NotBest Int Ext>
                Inactive reason: Not Best in its group - Router ID
                Local AS:     1 Peer AS:     1
                Age: 1:44:37    Metric2: 2 
                Task: BGP_1.10.0.0.10+64227
                Announcement bits (1): 3-BGP RT Background 
                AS path: 2 I (Originator) Cluster list:  10.0.0.10
                AS path:  Originator ID: 10.0.0.30
                Accepted
                Localpref: 100
                Router ID: 10.0.0.10
                Addpath Path ID: 2
         BGP    Preference: 170/-101
                Next hop type: Indirect
                Next-hop reference count: 4
                Source: 10.0.0.10
                Next hop type: Router, Next hop index: 676
                Next hop: 10.0.14.1 via lt-1/2/0.41, selected
                Protocol next hop: 10.0.15.2
                Indirect next hop: 92040e4 262150
                State: <Int Ext>
                Inactive reason: AS path
                Local AS:     1 Peer AS:     1
                Age: 1:44:37    Metric2: 2 
                Task: BGP_1.10.0.0.10+64227
                Announcement bits (1): 3-BGP RT Background 
                AS path: 2 2 I
                Accepted
                Localpref: 100
                Router ID: 10.0.0.10
                Addpath Path ID: 3
content_copy zoom_out_map
user@R8> show route 172.16.199.1/32 detail

inet.0: 17 destinations, 19 routes (17 active, 0 holddown, 0 hidden)
172.16.199.1/32 (3 entries, 1 announced)
        *BGP    Preference: 170/-101
                Next hop type: Indirect
                Next-hop reference count: 9
                Source: 10.0.0.40
                Next hop type: Router, Next hop index: 1045
                Next hop: 10.0.48.1 via lt-1/2/0.84, selected
                Protocol next hop: 10.0.0.20
                Indirect next hop: 91fc0e4 262148
                State: <Active Int Ext>
                Local AS:     1 Peer AS:     1
                Age: 1:56:51    Metric2: 3 
                Task: BGP_1.10.0.0.40+179
                Announcement bits (2): 2-KRT 4-Resolve tree 1 
                AS path: 2 I (Originator) Cluster list:  10.0.0.40 10.0.0.10
                AS path:  Originator ID: 10.0.0.20
                Accepted
                Localpref: 100
                Router ID: 10.0.0.40
                Addpath Path ID: 1
         BGP    Preference: 170/-101
                Next hop type: Indirect
                Next-hop reference count: 4
                Source: 10.0.0.40
                Next hop type: Router, Next hop index: 1045
                Next hop: 10.0.48.1 via lt-1/2/0.84, selected
                Protocol next hop: 10.0.0.30
                Indirect next hop: 91fc1c8 262152
                State: <NotBest Int Ext>
                Inactive reason: Not Best in its group - Router ID
                Local AS:     1 Peer AS:     1
                Age: 1:56:51    Metric2: 3 
                Task: BGP_1.10.0.0.40+179
                AS path: 2 I (Originator) Cluster list:  10.0.0.40 10.0.0.10
                AS path:  Originator ID: 10.0.0.30
                Accepted
                Localpref: 100
                Router ID: 10.0.0.40
                Addpath Path ID: 2
         BGP    Preference: 170/-101
                Next hop type: Indirect
                Next-hop reference count: 4
                Source: 10.0.0.40
                Next hop type: Router, Next hop index: 1045
                Next hop: 10.0.48.1 via lt-1/2/0.84, selected
                Protocol next hop: 10.0.15.2
                Indirect next hop: 91fc2ac 262153
                State: <Int Ext>
                Inactive reason: AS path
                Local AS:     1 Peer AS:     1
                Age: 1:56:51    Metric2: 3 
                Task: BGP_1.10.0.0.40+179
                AS path: 2 2 I (Originator) Cluster list:  10.0.0.40
                AS path:  Originator ID: 10.0.0.10
                Accepted
                Localpref: 100
                Router ID: 10.0.0.40
                Addpath Path ID: 3
footer-navigation