Jonathan Yang

Results 5 comments of Jonathan Yang

I've created https://github.com/ncclient/ncclient/pull/308 to fix the issue observed by @smalls12

Even augment is preferred for some reason, the common way to retreive any configurational data is to use the top module with a proper filter that can define which part...

The root of Cisco IOS-XE native models, `/ios:native`, is defined in `Cisco-IOS-XE-native.yang`. Say we want to retrieve config under `/ios:native/ios:aaa/ios-aaa:group` and `nc` is the Netconf session object: ``` from ncclient...

Would increasing timeout help in your case? ``` >>> from ncdiff import manager >>> m = manager.connect(host='2.3.4.5', port=830, username='admin', password='admin', hostkey_verify=False, look_for_keys=False) >>> m.timeout = 120 >>> m.scan_models() ```

@Harishv01 I try to reproduce the issue but cannot. Could you provide your two running-config pieces that generate the diff above? Thanks.