| When running facter networking.interfaces on osx 10.15, the output for interface utun2 is:
utun2 => { |
bindings => [ |
{ |
address => "10.16.132.213", |
network => "10.16.132.213" |
} |
], |
ip => "10.16.132.213", |
mtu => 1500, |
network => "10.16.132.213" |
}
|
and the correct output should be:
utun2 => { |
bindings => [ |
{ |
address => "10.16.132.213", |
netmask => "255.255.254.0", |
network => "10.16.132.0" |
} |
], |
ip => "10.16.132.213", |
mtu => 1500, |
netmask => "255.255.254.0", |
network => "10.16.132.0" |
}
|
As you can see the netmask is missing and the network is incorrect |