Skip to content

Commit 9d7d785

Browse files
authored
Merge pull request #163 from CiscoTestAutomation/harish_ipv6_route
Added orderless config
2 parents 0616e4c + 6e78fbd commit 9d7d785

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ncdiff/src/yang/ncdiff/runningconfig.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@
105105
(re.compile(r'^ *ospfv3 neighbor '), 1),
106106
(re.compile(r'^ *ospfv3 \d+ ipv(\d) neighbor'), 1),
107107
(re.compile(r'^ *ospfv3 \d+ neighbor '), 1),
108+
(re.compile(r'^ *ipv6 route '), 0),
109+
(re.compile(r'^ *ip route '), 0),
108110
]
109111

110112
# Some commands can be overwritten without a no command. For example, changing
@@ -758,4 +760,4 @@ def indent(self, str_in):
758760
str_ret += diff_type + ' ' + line + '\n'
759761
else:
760762
str_ret += ' ' + line + '\n'
761-
return str_ret
763+
return str_ret

0 commit comments

Comments
 (0)