Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
Hi,I'm working on an NSO service, that configures BGP peerings on Juniper devices.I'm looking for a method to store authentication-key in an encrypted manner in my NSO service and deploying that to the device(s) via NETCONF.I've tried storing authent...
Hello,
We just renewed our botnet filter license, but when trying to update the dynamic filter database, we recieve an error. Any ideas?
novi-asa/pri/act# debug dynamic-filter updater-clientnovi-asa/pri/act# terminal monitornovi-asa/pri/act# dynami...
Hi,We've recieved two C170 as replacement for our existing C150. The two appliances are in a cluster, and I've read https://supportforums.cisco.com/thread/2090049 about how to replace the device.One thing that comes to mind is; what about mails in qu...
I simply cannot figure out how where to call the "partial-sync-from". If I put it in post_modification it times out - probably because the transaction is not closed, hence I'm creating a deadlock.I've tried making a "generic" kicker, that monitors th...
I'll just continue my "blabbering" This method has one major drawback. The kicker won't be activated when creating a new service, because it happens within one transaction, so the kicker is only active on subsequent edits to the service. Instead of ...
Ah. That got down the rabbit hole of trying to pass arguments to partial-sync-from, but this is not supported as per https://community.cisco.com/t5/nso-developer-hub-discussions/how-to-kick-and-action-with-action-parameters/td-p/4110045 So. My soluti...
Great. That works. Now I'll just print a message instead of the authentication-key when doing a dry run. It does, however, not solve my issue where the clear text password is stored in CDB until a sync-from is done.The documentation for the Juniper N...
Perfect. Thanks for sending me in that direction. The solution ended up looking like this.In my YANG-file leaf authentication-key { type tailf:aes-cfb-128-encrypted-string; // type string; mandatory true; }and in my Pyth...