From c631a0107d2c5cad07e7ee41c87933eb522e8844 Mon Sep 17 00:00:00 2001 From: lissav Date: Mon, 13 Oct 2014 08:28:55 -0400 Subject: [PATCH] new fix for 4285 --- xCAT-server/lib/xcat/plugins/configfpc.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/configfpc.pm b/xCAT-server/lib/xcat/plugins/configfpc.pm index ab7fc233e..5a5c1623e 100644 --- a/xCAT-server/lib/xcat/plugins/configfpc.pm +++ b/xCAT-server/lib/xcat/plugins/configfpc.pm @@ -161,7 +161,7 @@ sub configfpc { } # Build route, if defaultip is 192.168.0.100, then route is 192.168.0.101/16 my ($a1,$a2,$a3,$a4)=split(/\./, $fpcip); - my $a4="101"; + my $a4 = $a4 +1; my $a5="\/16"; my $route=join(".", $a1, $a2, $a3,$a4); my $route = $route . $a5;