Jonghwan Hyun | 3731d6a | 2017-10-19 11:59:31 -0700 | [diff] [blame] | 1 | log file /var/log/quagga/bgpdbgp1.log |
| 2 | hostname bgp1 |
| 3 | password quagga |
| 4 | ! |
| 5 | ! Different next hop for IPv4 |
| 6 | ! |
| 7 | ip prefix-list 1 seq 10 permit 10.0.2.0/24 |
| 8 | ip prefix-list 1 seq 20 permit 10.1.2.0/24 |
| 9 | ip prefix-list 1 seq 30 permit 10.0.3.0/24 |
| 10 | ip prefix-list 1 seq 40 permit 10.0.4.0/24 |
| 11 | ! |
| 12 | route-map NEXTHOP41 permit 10 |
| 13 | match ip address prefix-list 1 |
| 14 | set ip next-hop 10.0.1.254 |
| 15 | ! |
| 16 | ! |
| 17 | route-map NEXTHOP47 permit 10 |
| 18 | match ip address prefix-list 1 |
| 19 | set ip next-hop 10.0.7.254 |
| 20 | ! |
| 21 | ! Different next hop for IPv6 |
| 22 | ! |
| 23 | ipv6 prefix-list 2 seq 10 permit 2000::200/120 |
| 24 | ipv6 prefix-list 2 seq 20 permit 2000::300/120 |
| 25 | ! |
| 26 | route-map NEXTHOP61 permit 10 |
| 27 | match ipv6 address prefix-list 2 |
| 28 | set ipv6 next-hop global 2000::1ff |
| 29 | set ipv6 next-hop local 2000::1ff |
| 30 | ! |
| 31 | ! |
| 32 | route-map NEXTHOP67 permit 10 |
| 33 | match ipv6 address prefix-list 2 |
| 34 | set ipv6 next-hop global 2000::7ff |
| 35 | set ipv6 next-hop local 2000::7ff |
| 36 | ! |
| 37 | ! Basic router config |
| 38 | ! |
| 39 | router bgp 65003 |
| 40 | bgp router-id 172.16.0.3 |
| 41 | timers bgp 3 9 |
| 42 | ! |
| 43 | ! IPv4 |
| 44 | ! |
| 45 | neighbor 10.0.1.1 remote-as 65001 |
| 46 | neighbor 10.0.1.1 ebgp-multihop |
| 47 | neighbor 10.0.1.1 timers connect 5 |
| 48 | neighbor 10.0.1.1 advertisement-interval 5 |
| 49 | neighbor 10.0.1.1 route-map NEXTHOP41 out |
| 50 | ! |
| 51 | neighbor 2000::101 remote-as 65001 |
| 52 | neighbor 2000::101 timers connect 5 |
| 53 | neighbor 2000::101 advertisement-interval 1 |
| 54 | no neighbor 2000::101 activate |
| 55 | ! |
| 56 | neighbor 10.0.7.1 remote-as 65002 |
| 57 | neighbor 10.0.7.1 ebgp-multihop |
| 58 | neighbor 10.0.7.1 timers connect 5 |
| 59 | neighbor 10.0.7.1 advertisement-interval 5 |
| 60 | neighbor 10.0.7.1 route-map NEXTHOP47 out |
| 61 | ! |
| 62 | neighbor 2000::701 remote-as 65002 |
| 63 | neighbor 2000::701 timers connect 5 |
| 64 | neighbor 2000::701 advertisement-interval 1 |
| 65 | no neighbor 2000::701 activate |
| 66 | ! |
| 67 | network 10.0.2.0/24 |
| 68 | network 10.1.2.0/24 |
| 69 | network 10.0.3.0/24 |
| 70 | network 10.0.4.0/24 |
| 71 | ! |
| 72 | ! IPv6 |
| 73 | ! |
| 74 | address-family ipv6 |
| 75 | network 2000::200/120 |
| 76 | network 2000::300/120 |
| 77 | neighbor 2000::101 activate |
| 78 | neighbor 2000::101 route-map NEXTHOP61 out |
| 79 | neighbor 2000::701 activate |
| 80 | neighbor 2000::701 route-map NEXTHOP67 out |
| 81 | exit-address-family |