Forum Discussion

hassar10_35518's avatar
hassar10_35518
Icon for Nimbostratus rankNimbostratus
Jan 23, 2008

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