Skip to content

how to perform netmiko.send_command_timing() method on napalm? #1908

Closed Answered by ktbyers
teliahuseyinturhan asked this question in Q&A
Discussion options

You must be logged in to vote

.cli() doesn't support that.

I would just do the following:

# napalm_obj.device is the Netmiko connection object
netmiko_conn = napalm_obj.device
netmiko_conn.send_command_timing(...)

# or, alternatively
netmiko_conn.send_command(cmd, expect_string="whatever")

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
2 replies
@teliahuseyinturhan
Comment options

@ktbyers
Comment options

Answer selected by teliahuseyinturhan
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants