Default interface type to ipv4 when checking flags for Solaris
Fixes #8330
This commit is contained in:
parent
bc2099b1ab
commit
74cbeb1292
1 changed files with 1 additions and 2 deletions
|
@ -2042,8 +2042,7 @@ class SunOSNetwork(GenericBsdIfconfigNetwork, Network):
|
||||||
else:
|
else:
|
||||||
current_if = interfaces[device]
|
current_if = interfaces[device]
|
||||||
flags = self.get_options(words[1])
|
flags = self.get_options(words[1])
|
||||||
if 'IPv4' in flags:
|
v = 'ipv4'
|
||||||
v = 'ipv4'
|
|
||||||
if 'IPv6' in flags:
|
if 'IPv6' in flags:
|
||||||
v = 'ipv6'
|
v = 'ipv6'
|
||||||
current_if[v].append({'flags': flags, 'mtu': words[3]})
|
current_if[v].append({'flags': flags, 'mtu': words[3]})
|
||||||
|
|
Loading…
Reference in a new issue