1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#!/usr/bin/python3
#
# Delete an existing user from the running configuration using
# edit-config and the test-option provided by the :validate
# capability.
#
# $ ./nc05.py broccoli bob
import sys, os, warnings
warnings.simplefilter("ignore", DeprecationWarning)
from ncclient import manager
def demo(host, user, name):
snippet = """<nc:config xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0">
<aaa xmlns="http://tail-f.com/ns/aaa/1.1">
<authentication> <users> <user nc:operation="delete">
<name>%s</name>
</user></users></authentication></aaa></nc:config>""" % name
with manager.connect(host=host, port=22, username=user) as m:
assert(":validate" in m.server_capabilities)
m.edit_config(target='running', config=snippet,
test_option='test-then-set')
if __name__ == '__main__':
demo(sys.argv[1], os.getenv("USER"), sys.argv[2])
|