summaryrefslogtreecommitdiffstats
path: root/ansible_collections/cisco/ios/tests/integration/targets/ios_bgp_global/vars/main.yaml
blob: 07638f98eee80818fb06595a35ca32483ffd796d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
---
merged:
  before: {}

  commands:
    - router bgp 65000
    - timers bgp 100 200 150
    - bgp advertise-best-external
    - bgp bestpath compare-routerid
    - bgp dampening 1 1 1 1
    - bgp graceful-shutdown all neighbors 50 local-preference 100 community 100
    - bgp log-neighbor-changes
    - bgp nopeerup-delay post-boot 10
    - neighbor 198.0.2.1 remote-as 100
    - neighbor 198.0.2.1 description merge neighbor
    - neighbor 198.0.2.1 aigp send cost-community 100 poi igp-cost transitive
    - neighbor 198.0.2.1 route-map test-route out
    - redistribute connected metric 10

  after:
    as_number: "65000"
    bgp:
      advertise_best_external: true
      bestpath_options:
        compare_routerid: true
      dampening:
        max_suppress: 1
        penalty_half_time: 1
        reuse_route_val: 1
        suppress_route_val: 1
      graceful_shutdown:
        community: "100"
        local_preference: 100
        neighbors:
          time: 50
      log_neighbor_changes: true
      nopeerup_delay_options:
        post_boot: 10
    neighbors:
      - aigp:
          send:
            cost_community:
              id: 100
              poi:
                igp_cost: true
                transitive: true
        description: merge neighbor
        neighbor_address: 198.0.2.1
        remote_as: "100"
        route_maps:
          - name: test-route
            out: true
    redistribute:
      - connected:
          metric: 10
          set: true
    timers:
      holdtime: 200
      keepalive: 100
      min_holdtime: 150

gathered:
  after:
    as_number: "65000"
    bgp:
      advertise_best_external: true
      bestpath_options:
        compare_routerid: true
      dampening:
        max_suppress: 1
        penalty_half_time: 1
        reuse_route_val: 1
        suppress_route_val: 1
      graceful_shutdown:
        community: "100"
        local_preference: 100
        neighbors:
          time: 50
      log_neighbor_changes: true
      nopeerup_delay_options:
        post_boot: 10
    neighbors:
      - aigp:
          send:
            cost_community:
              id: 100
              poi:
                igp_cost: true
                transitive: true
        description: merge neighbor
        neighbor_address: 192.0.2.1
        remote_as: "100"
        route_maps:
          - name: test-route
            out: true
    redistribute:
      - connected:
          metric: 10
          set: true
    timers:
      holdtime: 200
      keepalive: 100
      min_holdtime: 150

replaced:
  commands:
    - router bgp 65000
    - no timers bgp 100 200 150
    - no bgp bestpath compare-routerid
    - bgp bestpath med confed
    - no bgp dampening 1 1 1 1
    - no bgp graceful-shutdown all neighbors 50 local-preference 100 community 100
    - bgp nopeerup-delay cold-boot 20
    - neighbor 192.0.2.2 remote-as 100
    - neighbor 192.0.2.2 description replace neighbor
    - neighbor 192.0.2.2 slow-peer detection disable
    - no neighbor 192.0.2.1

  after:
    as_number: "65000"
    bgp:
      advertise_best_external: true
      bestpath_options:
        med:
          confed: true
      log_neighbor_changes: true
      nopeerup_delay_options:
        cold_boot: 20
        post_boot: 10
    neighbors:
      - description: replace neighbor
        neighbor_address: 192.0.2.2
        remote_as: "100"
        slow_peer:
          detection:
            disable: true
    redistribute:
      - connected:
          metric: 10
          set: true

parsed:
  after:
    as_number: "65000"
    bgp:
      advertise_best_external: true
      bestpath_options:
        compare_routerid: true
      dampening:
        max_suppress: 1
        penalty_half_time: 1
        reuse_route_val: 1
        suppress_route_val: 1
      graceful_shutdown:
        community: "100"
        local_preference: 100
        neighbors:
          time: 50
      log_neighbor_changes: true
      nopeerup_delay_options:
        post_boot: 10
    neighbors:
      - aigp:
          send:
            cost_community:
              id: 100
              poi:
                igp_cost: true
                transitive: true
        description: merge neighbor
        neighbor_address: 198.0.2.1
        remote_as: "100"
        route_maps:
          - name: test-route
            out: true
    redistribute:
      - connected:
          metric: 10
          set: true
    timers:
      holdtime: 200
      keepalive: 100
      min_holdtime: 150

rendered:
  commands:
    - router bgp 65000
    - timers bgp 100 200 150
    - bgp advertise-best-external
    - bgp bestpath compare-routerid
    - bgp dampening 1 1 1 1
    - bgp graceful-shutdown all neighbors 50 local-preference 100 community 100
    - bgp log-neighbor-changes
    - bgp nopeerup-delay post-boot 10
    - neighbor 192.0.2.1 remote-as 100
    - neighbor 192.0.2.1 description merge neighbor
    - neighbor 192.0.2.1 aigp send cost-community 100 poi igp-cost transitive
    - neighbor 192.0.2.1 route-map test-route out
    - redistribute connected metric 10

deleted:
  commands:
    - router bgp 65000
    - no timers bgp 100 200 150
    - no bgp advertise-best-external
    - no bgp bestpath compare-routerid
    - no bgp dampening 1 1 1 1
    - no bgp graceful-shutdown all neighbors 50 local-preference 100 community 100
    - no bgp log-neighbor-changes
    - no bgp nopeerup-delay post-boot 10
    - no neighbor 192.0.2.1
    - no redistribute connected

  after:
    as_number: "65000"

rtt:
  commands:
    - router bgp 65000
    - no network 192.0.4.2