commit
8dde35dd31
2 changed files with 3 additions and 3 deletions
|
@ -81,7 +81,7 @@ class Network(object):
|
|||
#
|
||||
for addr in ip6_addr:
|
||||
addr["addr"] = addr["addr"].replace('%{}'.format(interface), '')
|
||||
addr["netmask"] = addr["netmask"].split('/')[0]
|
||||
addr["mask"] = addr["mask"].split('/')[0]
|
||||
ip_addr.append(addr)
|
||||
|
||||
mac = open('/sys/class/net/{}/address'.format(interface), 'r').read().strip()
|
||||
|
@ -109,7 +109,7 @@ class Network(object):
|
|||
'ip': [
|
||||
'{}/{}'.format(
|
||||
x['addr'],
|
||||
IPAddress(x['netmask']).netmask_bits()
|
||||
IPAddress(x['mask']).netmask_bits()
|
||||
) for x in ip_addr
|
||||
] if ip_addr else None, # FIXME: handle IPv6 addresses
|
||||
'ethtool': Ethtool(interface).parse(),
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
pynetbox==7.3.4
|
||||
netaddr==1.3.0
|
||||
netifaces==0.11.0
|
||||
netifaces2==0.0.22
|
||||
pyyaml==6.0.1
|
||||
jsonargparse==4.32.0
|
||||
python-slugify==8.0.4
|
||||
|
|
Loading…
Reference in a new issue