02-15-2018 11:24 AM
11-28-2019 09:45 AM
Hi,
If you are doing the configuration from Extreme Management Center then I believe the issue is the following:
After each command execution, the Extreme Management Center does wait for prompt.
The prompt is defined in CLIRules.xml
We need to create myCLIRules.xml and handle the prompt properly.
The other option is to use Python and instruct the send function to not wait for the prompt.
emc_cli.send( 'configure failsafe-account', False)
emc_cli.send( 'failUser', False)
emc_cli.send( 'failPassword', False)
emc_cli.send( 'failPassword', False)
02-16-2018 03:01 PM
02-16-2018 03:01 PM
08-26-2019 02:43 PM