Fix ios_l2_interfaces skipping relevant L2 interfaces facts (#63779)
* fix bug 63777 * fix comment
This commit is contained in:
parent
3e4ae42256
commit
d620a209a5
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class L2_InterfacesFacts(object):
|
|||
if get_interface_type(intf) == 'unknown':
|
||||
return {}
|
||||
|
||||
if intf.lower().startswith('gi'):
|
||||
if intf.upper()[:2] in ('HU', 'FO', 'TW', 'TE', 'GI', 'FA', 'ET', 'PO'):
|
||||
# populate the facts from the configuration
|
||||
config['name'] = normalize_interface(intf)
|
||||
|
||||
|
|
Loading…
Reference in a new issue