ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Coding Snacks

IDEA: Password tool to update multiple servers

(1/1)

Mizraim:
I realized I put this in the wrong place, so here it is again. Sorry about that.

In my job, I have to do a lot of user password resets for multiple clients, on multiple servers. I was wondering if there was a tool or an application that can be made, or already has been made, to enter in the information and have it do it over multiple servers?

Example:

YOUR ID: johndoe
CLIENT ID: janedoe
Machine(s): server1, server2, server3, server4
YOUR PASS: password
NEW PASS: password


To do this manually, you'd have to enter something like this:

>ssh server1
(password prompt)
>sudo /usr/bin/passwd (userID)
(password prompt)
>exit

>ssh server2
(password prompt)
>sudo /usr/bin/passwd (userID)
(password prompt)
>exit

And so on. So if there is anyway to code this to work on Linux/Unix machines I'd really appreciate the help, and so would my co-workers.

Any questions, feel free to send me a PM.

Miz

argv:

You should check the "expect" command from linux and do something like:

ssh $host
expect "Username:"
send "Login\r"
expect "Password:"
send "Passwd\r"


man expect

NAME
       expect - programmed dialogue with interactive programs

Navigation

[0] Message Index

Go to full version