From 4837a8831c89c17aa343ffae91e9f8c1f3573bcc Mon Sep 17 00:00:00 2001 From: yinle Date: Fri, 1 Jun 2012 03:53:16 +0000 Subject: [PATCH] Remove the part adding multicast route, suggest the user to add and delete it to avoid potential issues. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.7@12979 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/SLP.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/perl-xCAT/xCAT/SLP.pm b/perl-xCAT/xCAT/SLP.pm index 31f8a591c..7078b29a7 100644 --- a/perl-xCAT/xCAT/SLP.pm +++ b/perl-xCAT/xCAT/SLP.pm @@ -325,9 +325,9 @@ sub send_service_request_single { my $ip = $sip; $ip =~ s/\/(.*)//; my $maskbits = $1; - if (xCAT::Utils->isAIX()) { - my $runcmd = `route add 239.255.255.253 $ip`; - } + #if (xCAT::Utils->isAIX()) { + # my $runcmd = `route add 239.255.255.253 $ip`; + #} my $ipn = inet_aton($ip); #we are ipv4 only, this is ok my $ipnum=unpack("N",$ipn); $ipnum= $ipnum | (2**(32-$maskbits))-1;