Hey everyone,
FYI: This is my first post in this forum. Pardon my english - I'm from Germany
For our ERS-4550T Rollout i want to use an ASCII configuration script that runs completely silent without any user/admin interaction. Therefore i disable the 'Password Security' feature with the following command.
no password security
By disabling this feature, there should be no password verification and the passwords can be provided in-line in cleartext, for example:
username "admin" "cleartextpassword" rw
radius server host 1.2.3.4 key "cleartextkey"
Everything is working fine and the script does it's job from the beginning to the end.
Because I want to use TACACS for the user authentication, i replaced the RADIUS config with the TACACS config. Technically the config is working, but the script doesn't like TACACS cleartext keys.
switch(config)#tacacs server host 1.2.3.4 key "cleartextkey"
^
% Invalid input detected at '^' marker.
So my script will never run completely without asking me for the TACACS key. Though I disabled "Password Security", I'm asked for the TACACS key twice, whereas the RADIUS key can be entered in-line and cleartext.
I've also tried providing the key in the following two config lines, but this also didn't work:
tacacs server host 1.2.3.4 key
"cleartextkey"
"cleartextkey"
Any ideas what the problem could be or how to get my script running?
Thanks in Advance for you help!!
Greetings from Germany
Tom