Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How do I install a new database type of Cisco Information Server? I have the .jar files for jdbc but don't know how to install them for use with Talend.
Thanks...
Hello,
Are you able to use tJDBCInput component to read your Cisco Information Server database using a JDBC API connection?
Here is online component reference about:TalendHelpCenter:tJDBCInput
Best regards
Sabrina
I also just wrote a netmiko-cfg CLI command which allows you to do this:
$ netmiko-cfg --infile test_file.txt cisco
Where 'cisco' is group of devices defined in a YAML file and 'test_file.txt' contains config commands.
$ cat test_file.txt
logging buffered 5000
logging buffered 6000
$ netmiko-cfg --infile test_file.txt cisco
pynet_rtr1.txt:config term
pynet_rtr1.txt:Enter configuration commands, one per line. End with CNTL/Z.
pynet_rtr1.txtynet-rtr1(config)#logging buffered 5000
pynet_rtr1.txtynet-rtr1(config)#logging buffered 6000
pynet_rtr1.txtynet-rtr1(config)#end
pynet_rtr1.txtynet-rtr1#
pynet_rtr2.txt:config term
pynet_rtr2.txt:Enter configuration commands, one per line. End with CNTL/Z.
pynet_rtr2.txtynet-rtr2(config)#logging buffered 5000
pynet_rtr2.txtynet-rtr2(config)#logging buffered 6000
pynet_rtr2.txtynet-rtr2(config)#end
pynet_rtr2.txtynet-rtr2#