icontrol assembly
38 Topicsicontrol api corresponding to high availability
Hi, I would like to know the follwoing. icontrol api to configure system > platform > high avilability and icontrol api to configure system > high avilability > redundancy , config sync, network failover and network mirrorring? couldn't find it under https://devcentral.f5.com/wiki/iControl.System.ashx333Views0likes6CommentsiControl 10.4.2 jar file
Hi Guys, I'm new here and I will be doing some system integration between F5. Would you know where I can get a copy of the assembly/jar file for an older version of the iControl? 10.4.0 or 10.4.2 will do. I searched the net but I can only see the latest version 11. Thanks in Advance! Aldrich271Views0likes2CommentsInconsistent results from ManagementDevice.get_list
Hi, Given the hostname or IP address of a single LTM running version 11.2, I'm needing to enumerate the management addresses of that LTM and any other LTMs which are peers for failover and ConfigSync. I started with iControlAssembly 11.2 and the following C code fragment which worked properly the first time I ran it but not when executed again. The get_list method is returning an empty array on those subsequent executions. After waiting 24 hours and trying it again, I got the same result--it worked only the first time it was run. static void Main(string[] args) { Interfaces ifaces = new Interfaces(); if (!ifaces.initialize("192.168.10.10", 443, "admin", "password")) { throw ifaces.LastException; } string[] devices = ifaces.ManagementDevice.get_list(); string[] addresses = ifaces.ManagementDevice.get_management_address(devices); foreach (string addr in addresses) { Console.WriteLine(addr); } } Testing of other function calls with LocalLBVirtualServer are all working every time it executes. Any ideas? Thanks in advance! Ryan202Views0likes1CommentInitialize method gives False
HI I am new to the F5 world and first time trying to use IControl interface DLL. My purpose is to create a Monitoring dashboard for the production F5 we are using. Once I load the DLL in powershell, when I call Initialize method, it gives me False and so it never succeeds. I am giving Device's DeviceASelfIp for the IP filed and 443 for port number. Username and password I am giving are the same that I use in Big-IP configuration Utility. Can anyone please explain what these paramaters are and how can I validate what should be given for IP,port and username, and password ? Thanks billu192Views0likes0Comments