summaryrefslogtreecommitdiff
path: root/tools/frr-reload.py
diff options
context:
space:
mode:
authorDinesh G Dutt <ddutt@cumulusnetworks.com>2017-01-06 06:50:47 -0800
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-01-30 13:40:49 -0500
commit0bf7cc2888a984883522f07ddeb897fb1fdb9621 (patch)
tree057859c9dd773dd1602e75045dab9c08712f40fc /tools/frr-reload.py
parent4b78098d79d97abef352345221c3979efab1c373 (diff)
tools: Handle lack of "seq" in prefix-list statements.
Ticket: CM-14259 Reviewed By: CCR-5527 Testing Done: If users specify "ip prefix-list FOO permit 1.2.3.4/24", running config displays that line as "ip prefix-list FOO seq 5 permit 1.2.3.4/24", which causes reload to delete the running config line and add back the one in the config. This patch fixes that. Signed-off-by: Dinesh Dutt <ddutt@cumulusnetworks.com>
Diffstat (limited to 'tools/frr-reload.py')
-rwxr-xr-xtools/frr-reload.py23
1 files changed, 21 insertions, 2 deletions
diff --git a/tools/frr-reload.py b/tools/frr-reload.py
index 729f817d63..e15eab4a8f 100755
--- a/tools/frr-reload.py
+++ b/tools/frr-reload.py
@@ -610,10 +610,29 @@ def ignore_delete_re_add_lines(lines_to_add, lines_to_del):
table_num = re_importtbl.group(1)
for ctx in lines_to_add:
if ctx[0][0].startswith('ip import-table %s distance' % table_num):
- deleted = True
lines_to_del_to_del.append((('ip import-table %s' % table_num,), None))
lines_to_add_to_del.append((ctx[0], None))
-
+
+ '''
+ ip/ipv6 prefix-list can be specified without a seq number. However,
+ the running config always adds 'seq x', where x is a number incremented
+ by 5 for every element, to the prefix list. So, ignore such lines as
+ well. Sample prefix-list lines:
+ ip prefix-list PR-TABLE-2 seq 5 permit 20.8.2.0/24 le 32
+ ip prefix-list PR-TABLE-2 seq 10 permit 20.8.2.0/24 le 32
+ ipv6 prefix-list vrfdev6-12 permit 2000:9:2::/64 gt 64
+ '''
+ re_ip_pfxlst = re.search('^(ip|ipv6)(\s+prefix-list\s+)(\S+\s+)(seq \d+\s+)(permit|deny)(.*)$',
+ ctx_keys[0])
+ if re_ip_pfxlst:
+ tmpline = (re_ip_pfxlst.group(1) + re_ip_pfxlst.group(2) +
+ re_ip_pfxlst.group(3) + re_ip_pfxlst.group(5) +
+ re_ip_pfxlst.group(6))
+ for ctx in lines_to_add:
+ if ctx[0][0] == tmpline:
+ lines_to_del_to_del.append((ctx_keys, None))
+ lines_to_add_to_del.append(((tmpline,), None))
+
if not deleted:
found_add_line = line_exist(lines_to_add, ctx_keys, line)