Routing

last person joined: yesterday 

Ask questions and share experiences about ACX Series, CTP Series, MX Series, PTX Series, SSR Series, JRR Series, and all things routing, including portfolios and protocols.
  • 1.  Advertise BGP IPv6 Prefix

     
    Posted 02-19-2018 03:38

    Hi,

     

    Quick couple of questions please:

     

    Overview: Advertising networks to upstream BGP ISP.

     

    Configuration of policy-statement so far:

    set policy-options policy-statement ninegroup-network term 1 from route-filter xxx.xxx.xxx.xxx/22 exact
    set policy-options policy-statement ninegroup-network term 1 from route-filter xxx.xxx.xxx.xxx/19 exact
    set policy-options policy-statement ninegroup-network term 1 from route-filter xxx.xxx.xxx.xxx/29 exact
    set policy-options policy-statement ninegroup-network term 1 from route-filter xxx.xxx.xxx.xxx/19 exact
    set policy-options policy-statement ninegroup-network term 1 then accept

     

    Advertised into eBGP as follows:

    set protocols bgp group external-peers export ninegroup-network

     

    Questions:

    1: Will this be advertised to the upstream peer correctly please? (I cannot test until the system is in situ)

    2: I also need to advertise our IPv6 prefix but cannot place it in that policy statement. I have tried looking for how to advetise IPv6 prefix's but can't find any relevance. Could someone please point me in the right direction for advertising an IPv6 prefix into eBGP for the upstream peer?

     

    Thank you

     



  • 2.  RE: Advertise BGP IPv6 Prefix

    Posted 02-19-2018 03:45
    set policy-options policy-statement test term 1 from family inet6 route-filter 2001::1:2:3:4/128 exact

    set policy-options policy-statement test term 1 then accept

    set protocols bgp group test export test


  • 3.  RE: Advertise BGP IPv6 Prefix
    Best Answer

    Posted 02-19-2018 03:46
    1: Will this be advertised to the upstream peer correctly please? (I cannot test until the system is in situ)

    Yes

    2: I also need to advertise our IPv6 prefix but cannot place it in that policy statement. I have tried looking for how to advetise IPv6 prefix's but can't find any relevance. Could someone please point me in the right direction for advertising an IPv6 prefix into eBGP for the upstream peer?
    set policy-options policy-statement test term 1 from family inet6 route-filter 2001::1:2:3:4/128 exact

    set policy-options policy-statement test term 1 then accept

    set protocols bgp group test export test


  • 4.  RE: Advertise BGP IPv6 Prefix

     
    Posted 02-19-2018 03:54

    Hi Kingsman,

     

    Perfect. I have configured that and added to the eBGP group to advertise to upstream peers. Very much appreciated.