Subversion Repositories camp_sysinfo_client_3

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
253 rodolico 1
#!/usr/bin/env perl
2
use warnings;
3
use strict;  
4
 
5
# Description: Networking for Unix systems
6
 
7
our $VERSION = '1.2';
8
 
9
# Microsoft network module for sysinfo client
10
# Author: R. W. Rodolico
11
# Date:   2025-03-30
12
 
13
# module to get network interface information for Windows systems
14
# uses Win32::Net::Info
15
# install with cpan install Win32::Net::Info
16
 
17
# find our location and use it for searching for libraries
18
BEGIN {
19
   use FindBin;
20
   use File::Spec;
21
   use lib File::Spec->catdir($FindBin::Bin);
22
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
23
   eval( 'use Data::Dumper;' );
24
}
25
 
26
# check for valid OS. 
27
exit 1 unless &checkOS( { 'mswin32' => undef } );
28
 
29
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
30
# script returns a 2
31
#foreach my $command (  ) {
32
#   exit 2 unless &validCommandOnSystem( $command );
33
#}
34
 
35
use Win32::Net::Info qw(:subs);
36
 
37
my $CATEGORY = 'network';
38
 
39
foreach my $adapter ( Win32::Net::Info->interfaces) {
40
    my $interface = Win32::Net::Info->new( $adapter );
41
	my $name = $interface->name();
42
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'description', $interface->description() );
43
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'mac', $interface->mac() );
44
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'address', $interface->ipv4() );
45
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'netmask', $interface->ipv4_netmask() );
46
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'gateway', $interface->ipv4_default_gateway() ) if $interface->ipv4_default_gateway();
47
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'mtu', $interface->mtu() );
48
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'ip6address', $interface->ipv6() ) if $interface->ipv6();
49
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'ip6networkbits', $interface->ipv6_netmask() )if $interface->ipv6_netmask();
50
}
51
 
52