Forum Discussion

dvalve_376192's avatar
dvalve_376192
Icon for Nimbostratus rankNimbostratus
Nov 05, 2018
Solved

python show running-config

I am trying to get a Python script to output the running config of my F5, to show everything from authentication to pools to ntp settings. With TMSH/SSH it's so easy doing 'show running-config' and t...
  • Malware_Mike_37's avatar
    Nov 21, 2018

    I was able to get the running config to show with Python, please see the code below:

     

    from f5.bigip import ManagementRoot
    mgmt = ManagementRoot("your_f5_ip", 'username', 'password')
    x = mgmt.tm.util.bash.exec_cmd('run', utilCmdArgs='-c "tmsh show running-config"')
    print(x.commandResult)