From f613505c8267c075ff3a15e2c280c703f2bbee80 Mon Sep 17 00:00:00 2001 From: Edgar Magana Date: Thu, 24 May 2012 14:56:53 -0700 Subject: [PATCH] Changing the subsystem from netconf to xmlagent --- ncclient/transport/ssh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ncclient/transport/ssh.py b/ncclient/transport/ssh.py index 14082da9..886ac914 100644 --- a/ncclient/transport/ssh.py +++ b/ncclient/transport/ssh.py @@ -204,8 +204,8 @@ def connect(self, host, port=830, timeout=None, unknown_host_cb=default_unknown_ self._connected = True # there was no error authenticating c = self._channel = self._transport.open_session() - c.set_name("netconf") - c.invoke_subsystem("netconf") + c.set_name("xmlagent") + c.invoke_subsystem("xmlagent") self._post_connect()