For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

gmtiwill_127449's avatar
gmtiwill_127449
Icon for Nimbostratus rankNimbostratus
Jul 09, 2004

get_al_active_connections() crashes iControlPortal.cgi

Whenever I execute the following code, iControlPortal.cgi crahses. The error in the syslog is pid 381 (iControlPortal.c), uid 1: exited on signal 6 (core dumped). The code is as follows:

 

my $soap = SOAP::Lite

 

-> uri('urn:iControl:ITCMLocalLB/Connections')

 

-> proxy("https://$sHost:$sPort/iControl/iControlPortal.cgi"

 

);

 

 

my $resp = $soap->get_all_active_connections(

 

SOAP::Data->name(mirror_flag=> 0),

 

);

 

 

Am I doing something wrong here? I am able to execute this method against a BigIP that does not have any connections, but consistently get a 500 Internal Server Error when executing against the production SLB.

 

Thanks,

 

Will

11 Replies

  • bknotwell_12713's avatar
    bknotwell_12713
    Historic F5 Account
    [quote:e72e26c272="gmtiwill"]What Interface / Method should be used for querying the BigIP for AOL mega proxies? I don't see this in the SDK.

    Will[/quote:e72e26c272]

    It's get_address_class in ITCMLocalLB/Class. I've included a snippet below:

     
     !/usr/bin/env python 
     from F5Proxy import ProxyFactory,loadEnv 
      
     loadEnv('./iControl.env',globals(),locals()) 
     factory = ProxyFactory(user,passwd,host,protocol) 
      
     print factory('ITCMLocalLB/Class').get_address_class(class_name = 'aol') 
     
  • What Interface / Method should be used for querying the BigIP for AOL mega proxies? I don't see this in the SDK.

     

     

    Will