-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathmerged_example_01.txt
More file actions
70 lines (70 loc) · 1.62 KB
/
merged_example_01.txt
File metadata and controls
70 lines (70 loc) · 1.62 KB
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
# Using merged
#
# Before state:
# -------------
#
#!
#router bgp 4
# router-id 10.1.1.4
#!
#
#- name: Merge provided BGP Global configuration in device
# sonic_bgp:
# config:
# - bgp_as: 4
# router_id: 10.2.2.4
# log_neighbor_changes: False
# graceful_restart:
# enabled: True
# preserve_fw_state: True
# bestpath:
# as_path:
# confed: True
# ignore: True
# multipath_relax: False
# multipath_relax_as_set: True
# compare_routerid: True
# med:
# confed: True
# missing_as_worst: True
# - bgp_as: 10
# router_id: 10.2.2.32
# log_neighbor_changes: True
# vrf_name: 'VrfCheck1'
# - bgp_as: 11
# log_neighbor_changes: True
# vrf_name: 'VrfCheck2'
# bestpath:
# as_path:
# confed: False
# ignore: True
# multipath_relax_as_set: True
# compare_routerid: True
# med:
# confed: True
# missing_as_worst: True
# state: merged
#
# After state:
# ------------
#
#!
#router bgp 10 vrf VrfCheck1
# router-id 10.2.2.32
# log-neighbor-changes
#!
#router bgp 11 vrf VrfCheck2
# log-neighbor-changes
# bestpath as-path ignore
# bestpath med missing-as-worst confed
# bestpath compare-routerid
#!
#router bgp 4
# router-id 10.2.2.4
# graceful-restart enable
# graceful-restart preserve-fw-state
# bestpath as-path ignore
# bestpath as-path confed
# bestpath med missing-as-worst confed
# bestpath compare-routerid
#!