f5-common-python icon indicating copy to clipboard operation
f5-common-python copied to clipboard

Python SDK for configuration and monitoring of F5® BIG-IP® devices via the iControl® REST API.

Results 101 f5-common-python issues
Sort by recently updated
recently updated
newest added

Hi all, I'm want to create a nat64 listener. For web, I could set nat64=enable in this web page. ![image](https://user-images.githubusercontent.com/3353168/142370816-f7b61d0a-5905-4e25-bc17-59b9733c2ecf.png) Or I could use tmsh cli like this: `create ltm...

I am getting an error when trying to retrieve the web-acceleration collection, that i have not seen in previous calls: Here is the code: ``` mgmt = ManagementRoot(ip, usr, pwd)...

Hi, I made some test with Virtual 13.1.1 BIG-IP and Python SDK. The following simple code gives this error: rom f5.bigip import ManagementRoot mgmt = ManagementRoot('172.16.0.124', 'XXX', 'XXX') fw =...

Problem: SDK does not support Chinese character Solution: when Requests library sending requests, The keyword parameter json is the syntax sugar of the keyword parameter data. when use keyword parameter...

Hi Team, Wanted to request if we can have custom sessions option present in the sdk. I'm still looking around the sdk to find where exactly the request calls are...

Profile module doesn't contain websockets class implemetation

I can't use F5 SDK load pool objects after created it. `from f5.bigip import ManagementRoot from f5.bigip.contexts import TransactionContextManager if __name__ == "__main__": for x in range(1, 50): mgmt =...

Hi! I noticed that there's no support to obtain all trunk stats at once. The solution (AFAIK) is just adding `Stats` to the `allowed_lazy_attributes` of the class `Trunks`. If you...

Issues: Runtime error sanitizing python keywords from dictionary Fixes #1561 Problem: In Python 3.8 a Runtime error is thrown when sanitizing python keywords from response dictionary. ```python def _check_keys(self, rdict):...

In Python 3.8 the following error is generated when sanitizing python keywords for a dictionary Traceback ```python Traceback (most recent call last): File "python3.8/site-packages/f5/bigip/resource.py", line 813, in get_collection instance._local_update(item) File...