Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

hassar10_35518's avatar
hassar10_35518
Icon for Nimbostratus rankNimbostratus
18 years ago

m_interfaces.initialize

(m_interfaces.initialize(tb_Name.Text, tb_Login.Text, tb_Password.Text)

 

in this function can I pass the IP address for the first parameter for tb_name.txt

 

 

Thanks a lot

1 Reply

  • You can pass in either the IP address for the management port on the BIG-IP, or a DNS name that you have mapped to that management port. The usage is as follows

    initialize(string bigip_address, long port, string username, string password);
    initialize(string bigip_address, string username, string password);

    -Joe