summaryrefslogtreecommitdiff
path: root/src/migration-scripts/quagga
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2018-12-31 12:40:58 +0100
committerDaniil Baturin <daniil@baturin.org>2018-12-31 12:40:58 +0100
commitb86f752fc6163938c879a3274777170b76800495 (patch)
tree475617c55d7543aacdd35f32bb0a2ef69fdfda9b /src/migration-scripts/quagga
parentdd2a15158e8f22b8b1ba68160b686ff1047babf4 (diff)
downloadvyos-1x-b86f752fc6163938c879a3274777170b76800495.tar.gz
vyos-1x-b86f752fc6163938c879a3274777170b76800495.zip
T1112: migrate BGP redistribute options (patch by Merijn).
Diffstat (limited to 'src/migration-scripts/quagga')
-rwxr-xr-xsrc/migration-scripts/quagga/2-to-311
1 files changed, 11 insertions, 0 deletions
diff --git a/src/migration-scripts/quagga/2-to-3 b/src/migration-scripts/quagga/2-to-3
index 99d96a0aa..88063470f 100755
--- a/src/migration-scripts/quagga/2-to-3
+++ b/src/migration-scripts/quagga/2-to-3
@@ -178,6 +178,17 @@ else:
for peer_group in peer_groups:
migrate_neighbor(config, peer_group_path, peer_group)
+ ## Migrate redistribute statements
+ redistribute_path = ['protocols', 'bgp', asn, 'redistribute']
+ if config.exists(redistribute_path):
+ config.set(bgp_path + af_path + ['redistribute'])
+
+ redistributes = config.list_nodes(redistribute_path)
+ for redistribute in redistributes:
+ config.set(bgp_path + af_path + ['redistribute', redistribute])
+
+ config.delete(redistribute_path)
+
try:
with open(file_name, 'w') as f:
f.write(config.to_string())