User Tools

Site Tools


edgerouter:bgp

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Last revisionBoth sides next revision
edgerouter:bgp [2018/05/15 18:43] brielleedgerouter:bgp [2018/05/15 18:49] brielle
Line 94: Line 94:
     }     }
 } }
 +</code>
 Like the prefix lists, -To and -From are your specific directions in and out (import and export).  They're pretty self explanatory and reference the prefix lists used before. Like the prefix lists, -To and -From are your specific directions in and out (import and export).  They're pretty self explanatory and reference the prefix lists used before.
 +
 +===== BGP Protocol Configuration =====
 +<code>protocols {
 +    bgp 65501 {
 +        address-family {
 +            ipv6-unicast {
 +                network 2001:DB8::/32 {
 +                }
 +            }
 +        }
 +        neighbor 100.64.100.1 {
 +            remote-as 65502
 +            route-map {
 +                export BGP-ISP-To
 +                import BGP-ISP-From
 +            }
 +            soft-reconfiguration {
 +                inbound
 +            }
 +            update-source 100.64.100.2
 +        }
 +        neighbor fd00::1 {
 +            address-family {
 +                ipv6-unicast {
 +                    route-map {
 +                        export BGP-ISPv6-To
 +                        import BGP-ISPv6-From
 +                    }
 +                }
 +            }
 +            remote-as 65502
 +            soft-reconfiguration {
 +                inbound
 +            }
 +            update-source fd00::2
 +        }
 +        network 192.0.2.0/24 {
 +        }
 +        parameters {
 +            router-id 100.64.100.2
 +        }
 +        redistribute {
 +            connected {
 +            }
 +            kernel {
 +            }
 +            static {
 +            }
 +        }
 +    }
 +}
 +</code>