Connections
Connecting to BIG-IP with the SDK is done via f5.bigip.ManagementRoot
.
>>> from f5.bigip import ManagementRoot
>>> mgmt = ManagementRoot('192.168.1.1', 'user', 'pass')
The required parameters are host, username, and password, respectively.
You can, however, supply one or more of the following kwargs (defaults listed):
timeout |
30 |
port |
443 |
icontrol_version |
‘’ |
token |
False |
token_to_use |
None |
verify |
False |
auth_provider |
None |