From 88fc955700e7ae41dedd20c12d32c6fa10cda44e Mon Sep 17 00:00:00 2001 From: muassif <32828975+muassif@users.noreply.github.com> Date: Sat, 21 Aug 2021 17:13:33 +0400 Subject: [PATCH] Update show_all_interfaces.py --- Chapter14/netconf/show_all_interfaces.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Chapter14/netconf/show_all_interfaces.py b/Chapter14/netconf/show_all_interfaces.py index 40e02c2..d3b385c 100644 --- a/Chapter14/netconf/show_all_interfaces.py +++ b/Chapter14/netconf/show_all_interfaces.py @@ -1,6 +1,6 @@ from ncclient import manager -with manager.connect(host='172.16.2.50', username='root', - password='rootroot', hostkey_verify=False) as m: +with manager.connect(host='172.16.2.34', username='root', + password='xxxx', hostkey_verify=False) as m: result = m.get_config("running", filter=('subtree', ''))