Forum Discussion
dvalve_376192
Nov 05, 2018Nimbostratus
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...
- 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)
Karol_Biernack5
Nimbostratus
It aint pretty , but it should do the trick, one possible improvment would be implementing list with all commands you need and for loop
import paramiko,time
device_1 = '172.16.1.53'
devices = [device_1]
username = 'cisco'
password = 'cisco'
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
for device in devices:
ssh.connect(device, username=username, password=password,allow_agent=False,look_for_keys=False)
file_template = 'output.{}.txt'.format(device)
with open(file_template, 'wb') as file_handler:
channel = ssh.invoke_shell()
channel.send('term length 0\n')
time.sleep(2)
out = channel.recv(9999)
channel.send('show running-config\n')
time.sleep(15)
out = channel.recv(9999)
file_handler.write(out)
file_handler.close()
ssh.close()
Peter_Baumann_5
Apr 03, 2019Nimbostratus
@Karol Biernacki
Very good that F5 is now included in Terraform, but it still lacks support for TLS/SSL certificate handling, an essential part of a load balancer :-(
Do you know of any plans to support in Terraform the new AS3 declarative method by F5?
-> https://clouddocs.f5.com/products/extensions/f5-appsvcs-extension/latest/
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects