Kirk Byers

Results 492 comments of Kirk Byers

@jbotello7381 Okay, there are some other things that I still need to fix in this PR.

There are some other issues going on with the Arista SSH driver and there was an underlying Netmiko issue...so I am still working through those. The Netmiko issue and fix...

Can you show the output of: `"show mac address-table"` from your device?

@vaderisback77 It is probably better to create a fix and submit a pull-request on it (then waiting for someone to help you).

@viholla Have you tried setting `fast_cli=False` as an argument to ConnectHandler? Yes, in order to push a change in Git/GitHub, you need to fork the Netmiko repository in GitHub and...

@ashweeja Can you show the code that you were using for this test? Also which version of Netmiko are you using?

Okay, so it looks like the issue is here (at least on the read_channel() case: ``` ---> 82 if self.remote_conn.recv_ready(): 83 outbuf = self.remote_conn.recv(MAX_BUFFER) ``` This is in the read_buffer()...

@achhabr1 Does your SSH proxy setup work outside of Netmiko. Can you post your SSH proxy setup here?

It looks like the end device is responding slowly. I would try adding a global_delay_factor and set it either to 2, 4, or 8. This is an argument to ConnectHandler.

Probably the way to do this is to add a parameter to the class like 'global_debug'. If you pass in this parameter then debugging would be enabled. You could then...