Subversion Repositories camp_sysinfo_client_3

Rev

Rev 253 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 253 Rev 256
Line 1... Line 1...
1
#!/usr/bin/env perl
1
#!/usr/bin/env perl
2
use warnings;
2
use warnings;
3
use strict;  
3
use strict;  
4
 
4
 
5
# Description: Networking for Unix systems
-
 
6
 
-
 
7
our $VERSION = '1.2';
5
use version ; our $VERSION = '1.2.0';
8
 
6
 
9
# Microsoft network module for sysinfo client
7
# Microsoft network module for sysinfo client
10
# Author: R. W. Rodolico
8
# Author: R. W. Rodolico
11
# Date:   2025-03-30
9
# Date:   2025-03-30
12
 
10
#
13
# module to get network interface information for Windows systems
11
# module to get network interface information for Windows systems
14
# uses Win32::Net::Info
12
# uses Win32::Net::Info
15
# install with cpan install Win32::Net::Info
13
# install with cpan install Win32::Net::Info
16
 
14
 
17
# find our location and use it for searching for libraries
15
# find our location and use it for searching for libraries
18
BEGIN {
16
BEGIN {
19
   use FindBin;
17
   use FindBin;
20
   use File::Spec;
18
   use File::Spec;
21
   use lib File::Spec->catdir($FindBin::Bin);
19
   # prepend the bin directory and its parent
22
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
20
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
23
   eval( 'use Data::Dumper;' );
21
   eval( 'use library;' );
-
 
22
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
24
}
23
}
25
 
24
 
-
 
25
#####
26
# check for valid OS. 
26
##### Change these to match your needs
-
 
27
#####
-
 
28
 
-
 
29
# Make this a list of all the modules we are going to use. You can replace undef with the version you need, if you like
-
 
30
my $modulesList = {
-
 
31
        'Data::Dumper'     => undef,
27
exit 1 unless &checkOS( { 'mswin32' => undef } );
32
        'Win32::Net::Info' => undef,
-
 
33
   };
28
 
34
 
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
35
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
30
# script returns a 2
36
# the full path (from which or where)
31
#foreach my $command (  ) {
37
my $commandsList = {
32
#   exit 2 unless &validCommandOnSystem( $command );
38
#        'smartctl' => undef,
33
#}
39
   };
34
 
40
 
-
 
41
# list of operating systems this module can be used on.
-
 
42
my $osList = {
-
 
43
         'mswin32' => undef,
-
 
44
#         'freebsd' => undef,
35
use Win32::Net::Info qw(:subs);
45
#         'linux'   => undef,
-
 
46
   };
36
 
47
 
-
 
48
# the category the return data should go into. See sysinfo for a list
37
my $CATEGORY = 'network';
49
my $CATEGORY = 'network';
38
 
50
 
-
 
51
#####
39
foreach my $adapter ( Win32::Net::Info->interfaces) {
52
##### End of required
-
 
53
#####
40
    my $interface = Win32::Net::Info->new( $adapter );
54
        
-
 
55
 
41
	my $name = $interface->name();
56
# some variables needed for our system
42
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'description', $interface->description() );
57
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
43
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'mac', $interface->mac() );
58
my @out; # temporary location for each line of output
-
 
59
 
44
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'address', $interface->ipv4() );
60
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
45
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'netmask', $interface->ipv4_netmask() );
61
for my $module ( keys %$modulesList ) {
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() );
62
   eval ( "use $module;" );
48
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'ip6address', $interface->ipv6() ) if $interface->ipv6();
63
   push @out, "$errorPrepend Could not load $module" if $@;
49
    printf ( "%s\t$name\t%s\t%s\n", $CATEGORY, 'ip6networkbits', $interface->ipv6_netmask() )if $interface->ipv6_netmask();
-
 
50
}
64
}
51
 
65
 
-
 
66
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
-
 
67
    push @out, "$errorPrepend Invalid Operating System";
-
 
68
}
-
 
69
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
-
 
70
   push @out, "$errorPrepend Can not find some commands needed";
-
 
71
}
-
 
72
if ( !@out ) { # we made it, we have everything, so do the processing
-
 
73
   #####
-
 
74
   ##### Your code starts here. Remember to push all output onto @out
-
 
75
   #####
-
 
76
   foreach my $adapter ( Win32::Net::Info->interfaces) {
-
 
77
      my $interface = Win32::Net::Info->new( $adapter );
-
 
78
      my $name = $interface->name();
-
 
79
      push @out, printf ( "%s\t$name\t%s\t%s", $CATEGORY, 'description', $interface->description() );
-
 
80
      push @out, printf ( "%s\t$name\t%s\t%s", $CATEGORY, 'mac', $interface->mac() );
-
 
81
      push @out, printf ( "%s\t$name\t%s\t%s", $CATEGORY, 'address', $interface->ipv4() );
-
 
82
      push @out, printf ( "%s\t$name\t%s\t%s", $CATEGORY, 'netmask', $interface->ipv4_netmask() );
-
 
83
      push @out, printf ( "%s\t$name\t%s\t%s", $CATEGORY, 'gateway', $interface->ipv4_default_gateway() ) if $interface->ipv4_default_gateway();
-
 
84
      push @out, printf ( "%s\t$name\t%s\t%s", $CATEGORY, 'mtu', $interface->mtu() );
-
 
85
      push @out, printf ( "%s\t$name\t%s\t%s", $CATEGORY, 'ip6address', $interface->ipv6() ) if $interface->ipv6();
-
 
86
      push @out, printf ( "%s\t$name\t%s\t%s", $CATEGORY, 'ip6networkbits', $interface->ipv6_netmask() )if $interface->ipv6_netmask();
-
 
87
   }
-
 
88
   #####
-
 
89
   ##### Your code ends here.
-
 
90
   #####
-
 
91
}
-
 
92
 
-
 
93
 
-
 
94
# If we are testing from the command line (caller is undef), print the results for debugging
-
 
95
print join( "\n", @out ) . "\n" unless caller;
-
 
96
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
-
 
97
my $return = join( "\n", @out );
52
 
98