-
How do you use Netmiko's delay_factor or global_delay_factor in Nornir. |
Beta Was this translation helpful? Give feedback.
Answered by
ktbyers
Jan 11, 2021
Replies: 1 comment 3 replies
-
First, always set fast_cli = False in the ConnectHandler. Inventory format for this is: # Shows setting both fast_cli = False and global_delay_factor
eos:
platform: eos
connection_options:
netmiko:
platform: arista_eos
extras:
fast_cli: False
global_delay_factor: 2 Then you would just add the delay_factor argument to your relevant call. For example, nr.run(task=netmiko_send_command, command_string="show ip int brief", delay_factor=4) |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
ktbyers
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
First, always set fast_cli = False in the ConnectHandler. Inventory format for this is:
Then you would just add the delay_factor argument to your relevant call. For example,