You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
#!/usr/bin/perl |
|
# |
|
|
|
use strict; |
|
use warnings; |
|
use Anvil::Tools; |
|
use XML::Simple; |
|
use JSON; |
|
use Math::BigInt; |
|
use Data::Dumper; |
|
use Net::Netmask; |
|
|
|
my $THIS_FILE = ($0 =~ /^.*\/(.*)$/)[0]; |
|
my $running_directory = ($0 =~ /^(.*?)\/$THIS_FILE$/)[0]; |
|
if (($running_directory =~ /^\./) && ($ENV{PWD})) |
|
{ |
|
$running_directory =~ s/^\./$ENV{PWD}/; |
|
} |
|
|
|
# Turn off buffering so that the pinwheel will display while waiting for the SSH call(s) to complete. |
|
$| = 1; |
|
|
|
#print "Starting test.\n"; |
|
my $anvil = Anvil::Tools->new({debug => 2}); |
|
$anvil->Log->secure({set => 1}); |
|
$anvil->Log->level({set => 2}); |
|
|
|
$anvil->Database->connect({debug => 3, check_if_configured => 1}); |
|
$anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 2, secure => 0, key => "log_0132"}); |
|
|
|
my $ip = "10.255.4.1"; |
|
my $subnet = "255.255.0.0"; |
|
my $test1 = "10.255.255.254"; |
|
my $test2 = "10.200.255.254"; |
|
|
|
my $block = Net::Netmask->new($ip."/".$subnet); |
|
foreach my $this_gw ($test1, $test2) |
|
{ |
|
if ($block->match($this_gw)) |
|
{ |
|
print "The gateway: [".$this_gw."] DOES apply to: [".$ip."/".$subnet."]\n"; |
|
} |
|
else |
|
{ |
|
print "The gateway: [".$this_gw."] DOES NOT apply to: [".$ip."/".$subnet."]\n"; |
|
} |
|
}
|
|
|