Update zvm code to handle class B/A networks.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8761 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
phamt 2011-01-27 21:44:56 +00:00
parent 8df8c91166
commit 338c4e1337

View File

@ -3053,6 +3053,10 @@ sub nodeSet {
# Get first 3 octets of node IP (IPv4)
@words = split( /\./, $hostIP );
my $octets = "$words[0].$words[1].$words[2]";
# Class B and A networks
my $octetsB = "$words[0].$words[1].0";
my $octetsA = "$words[0].0.0";
# Get networks in 'networks' table
my $entries = xCAT::zvmUtils->getAllTabEntries('networks');
@ -3065,7 +3069,7 @@ sub nodeSet {
$network = $_->{'net'};
# If networks contains the first 3 octets of the node IP
if ( $network =~ m/$octets/i ) {
if ( $network =~ m/$octets/i || $network =~ m/$octetsB/i || $network =~ m/$octetsA/i) {
# Exit loop
last;