Subversion Repositories camp_sysinfo_client_3

Rev

Rev 69 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
20 rodolico 1
#!/usr/bin/env perl
2
use warnings;
26 rodolico 3
use strict;  
2 rodolico 4
 
37 rodolico 5
# Description: Networking for Unix systems
20 rodolico 6
 
65 rodolico 7
our $VERSION = '1.3';
37 rodolico 8
 
2 rodolico 9
# Linux network module for sysinfo client
10
# Author: R. W. Rodolico
20 rodolico 11
# Date:   2016-04-08
2 rodolico 12
 
13
# module to get network interface information for Linux systems
14
# assumes ifconfig is on the system and executable by the user
15
# NOTE: this takes the ifconfig output and parses it, so changes to 
16
#       this output invalidates this module
65 rodolico 17
#
18
# 2018-05-20 RWR
19
# Modified to use ip vs ifconfig, and changed the regex's.
20
# kept the original ifconfig code but commented it out
2 rodolico 21
 
251 rodolico 22
# find our location and use it for searching for libraries
2 rodolico 23
BEGIN {
251 rodolico 24
   use FindBin;
25
   use File::Spec;
26
   use lib File::Spec->catdir($FindBin::Bin);
27
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
28
   eval( 'use Data::Dumper;' );
2 rodolico 29
}
30
 
251 rodolico 31
# check for valid OS. 
32
exit 1 unless &checkOS( { 'linux' => undef } );
2 rodolico 33
 
251 rodolico 34
# 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
# script returns a 2
36
foreach my $command ( 'ip' ) {
37
   exit 2 unless &validCommandOnSystem( $command );
38
}
48 rodolico 39
 
2 rodolico 40
my $CATEGORY = 'network';
65 rodolico 41
 
42
# get list of all interfaces except lo
251 rodolico 43
my @interfaces = `ip -o a s | cut -d' ' -f2 | sort | uniq | grep -v 'lo'`;
65 rodolico 44
chomp @interfaces;
45
 
46
my $ipv4Regex = '\b(?:[0-9]{1,3}\.){3}[0-9]{1,3}\b';
47
my $ipv6Regex = '(([a-f0-9]+):{1,2})+[a-z0-9]+';
48
 
49
foreach my $if ( @interfaces ) {
251 rodolico 50
   foreach my $line ( `ip address show $if` ) {
65 rodolico 51
      # mtu
52
      if ( $line =~ m/mtu\s+(\d+)/i ) {
53
         print "$CATEGORY\t$if\tmtu\t$1\n";
54
      # MAC
55
      } elsif ( $line =~ m/((([a-f0-9]{2}):){5}[a-f0-9]+)/i ) {
56
         print "$CATEGORY\t$if\tmac\t$1\n";
57
      # inet 6
58
      } elsif ( $line =~ m"inet6\s*((([a-f0-9]+):{1,2})+[a-z0-9]+)/(\d{1,2})"i ) {
59
         print "$CATEGORY\t$if\tip6address\t$1\n";
60
         print "$CATEGORY\t$if\tip6networkbits\t$4\n";
61
      # inet 4
62
      } elsif ( $line =~ m"inet.*($ipv4Regex)/(\d{2})" ) {
63
         print "$CATEGORY\t$if\taddress\t$1\n";
64
         print "$CATEGORY\t$if\tnetmask\t$2\n";
2 rodolico 65
      }
66
   }
67
}
65 rodolico 68
 
69
# this is the original code, in case we ever need it again
70
 
71
## eth1      Link encap:Ethernet  HWaddr 00:16:3E:1F:EF:4F
72
#my $regexHWADDR = 'hwaddr[^0-9a-f:]+([0-9a-f:]+)[^0-9a-f:]';
73
## inet addr:10.110.110.2  Bcast:10.110.110.255  Mask:255.255.255.0
74
#my $regexINET = 'inet addr:\s*([0-9.]+)[^0-9].*mask:([0-9.]+)';
75
## inet6 addr: fe80::216:3eff:fe1f:ef4f/64 Scope:Link
76
#my $regexINET6 = 'inet6 addr: ([0-9a-f:]+)\/([0-9]+)[^0-9]';
77
## UP LOOPBACK RUNNING  MTU:16436  Metric:1
78
#my $regexMTU = 'mtu:([0-9]+)[^0-9]';
79
#my $temp = qx/$command/;
80
#my @temp = split( "\n", $temp );
81
#my $currentIF;
82
#while ( @temp ) {
83
#   my $line = shift @temp;
84
#   next unless $line;
85
#   if ( $line =~ m/^([^ ]+) /) { # if the first character is not a space, starting new entry
86
#      $currentIF = $1;
87
#      if ( $line =~ m/$regexHWADDR/i ) {
88
#         print "$CATEGORY\t$currentIF\tmac\t$1\n";
89
#      } else {
90
#         print "$CATEGORY\t$currentIF\tmac\tunknown\n";
91
#      }
92
#   } elsif ( $line =~ m/$regexINET/i ) {
93
#      print "$CATEGORY\t$currentIF\taddress\t$1\n";
94
#      print "$CATEGORY\t$currentIF\tnetmask\t$2\n";
95
#   } elsif ( $line =~ m/$regexINET6/i )  {
96
#      print "$CATEGORY\t$currentIF\tip6address\t$1\n";
97
#      print "$CATEGORY\t$currentIF\tip6networkbits\t$2\n";
98
#   } elsif ( $line =~ m/$regexMTU/i )  {
99
#      print "$CATEGORY\t$currentIF\tmtu\t$1\n";
100
#   }
101
#}
102
#