Workaround for unicast RPF check (#24519)
This commit is contained in:
parent
d07f18fbb9
commit
ea2569db92
1 changed files with 2 additions and 0 deletions
|
@ -239,6 +239,8 @@ class Interfaces(FactsBase):
|
|||
|
||||
def populate_ipv6_interfaces(self, data):
|
||||
for key, value in iteritems(data):
|
||||
if key in ['No', 'RPF'] or key.startswith('IP'):
|
||||
continue
|
||||
self.facts['interfaces'][key]['ipv6'] = list()
|
||||
addresses = re.findall(r'\s+(.+), subnet', value, re.M)
|
||||
subnets = re.findall(r', subnet is (.+)$', value, re.M)
|
||||
|
|
Loading…
Reference in a new issue