nkhambal
nkhambal
Has anyone found a solution to this? x_pos and y_pos with 'kk', does not seem to work.
Just FYI, cDev.unlock() is something I added to see if thats the issue. But the timeout happens with or without it.
Made some progress. Used lock = False option to avoid locking the config db. `cDev = IOSXR(hostname=aHost, username=uName, password=uPassWd, port=22, timeout=300, lock=False, logfile=file)` changed the _XML_SHELL command to 'xml echo...
I printed the response for the CLI. Looks like there are 2 XML declaration at the top. One for request and other for response. It is probably why XML parsing...
Following playbook worked with one exception of "commit" tag. It commits even when it is set to "No". Is there an option to perform a commit "validate" and then "rollback"...
Replying the answer to my own query. To skip commit and discard candidate after validate, use "commit: False". Default is "commit: True". Following playbook worked. It fetches the template and...