We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d12813 commit cbf9e3fCopy full SHA for cbf9e3f
Changes
@@ -11,6 +11,8 @@ core:
11
12
inventory:
13
* Fix rare windows perl error during drives, ipv6 network or videos inventory
14
+* Always keep disabled network interface on windows if it includes "vpn" string
15
+ in description
16
17
netdiscovery/netinventory:
18
* fix #768: Added Aerohive devices support
lib/GLPI/Agent/Tools/Win32/NetAdapter.pm
@@ -28,7 +28,7 @@ sub getInterfaces {
28
29
return $self->getInterfacesWithAddresses() if $self->hasAddresses();
30
31
- return unless $self->{_config}->{MACADDR};
+ return unless $self->{_config}->{MACADDR} || $self->_getDescription() =~ /vpn/i;
32
33
return $self->getBaseInterface();
34
}
0 commit comments