How to automatically enter password in a script?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to automatically enter password in a script?
# 8  
Old 04-08-2015
Quote:
Originally Posted by rbatte1
Assuming that you are not using ssh at all, can I presume that rlogin would be allowed? You can grant (for a given user) the source addresses that can rlogin to it without further credentials being required.


Does that offer an option? I would try to avoid expect if possible because of the risks and complexities that it introduces.




Robin
I would like to write a script to connect from an AIX server to a SAN switch running FabOS 6.4 ( which can't upgrade to version 7 ) to monitor somethings. FabOS version 7 has a feature allowing an admin account to import authentication key for any users, but FabOS 6 doesn't. In FabOS 6, an admin account can import authentication key for only itself. It means that if I connect to that SAN switch using ssh-keygen, I'll have to login directly to an admin account, and this isn't my choice. I just want to do this by an user account.

Not using ssh-keygen means that each time I run the script, I have to enter the password. It's the problem I'm facing SmilieSmilieSmilie.
# 9  
Old 04-08-2015
As i see in documentation, you can create a user with admin role for which you can use ssh keys.

"The default admin user must set up the allowed-user with the admin role."

I haven't done this myself, but i suspect that admin role for user will be able to fulfill your request regarding "monitoring somethings"


Hope the helps.

Regards
Peasant.
This User Gave Thanks to Peasant For This Post:
# 10  
Old 04-14-2015
Quote:
Originally Posted by Peasant
As i see in documentation, you can create a user with admin role for which you can use ssh keys.

"The default admin user must set up the allowed-user with the admin role."

I haven't done this myself, but i suspect that admin role for user will be able to fulfill your request regarding "monitoring somethings"


Hope the helps.

Regards
Peasant.
As what I read. there's no option to do that in FabOS, admin is admin.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script that automatically issue "yes" and press enter

Team, Got a thousand servers. I created a script to say hello on every server. But is there a script or whatever that will issue a yes on every key checking. for i in `cat myserverlist` do echo $i ssh-copy-id $i done The authenticity of host 'server1 (162.162.0.10)' can't be... (7 Replies)
Discussion started by: invinzin21
7 Replies

2. Shell Programming and Scripting

Automatically enter input in command line

Hi, This is a script which to create an opvn user, I want which answer automatically to a certain part so, I try this, it works without the red part but I must type manually.. : #!/bin/bash ## Environnement ## LC_ALL=C ## Paths ## rsa_dir="etc/openvpn/easy-rsa"... (10 Replies)
Discussion started by: Arnaudh78
10 Replies

3. Shell Programming and Scripting

Input password to bash script, save, and enter when needed

I am looking for a way to start a script and have it prompt for a password that will be used later on in the script to SSH to another host and to SFTP. I don't want the password to be hard coded. Below is my script with the actual IP's and usernames removed. #!/usr/bin/expect -f... (2 Replies)
Discussion started by: jbrass
2 Replies

4. Shell Programming and Scripting

Shell Script to Automatically Read My Password

I have a shell script to run set of commands every week . I dont have a root access on the server but I can run the commands using pbrun cat myscript.sh * * * pbrun command.... each time I run the script , it asks me for my password then it executes fine. ./myscript.sh Password... (7 Replies)
Discussion started by: Sara_84
7 Replies

5. Shell Programming and Scripting

Script to automatically enter a password

I need to retrieve thousands of lines of information from hundreds of nodes. Each node requires a passowrd in order to retrieve the information. Fortunately, the password is the same for each one of them. So I am trying to come up with a script that would allow me to include the password so I can... (0 Replies)
Discussion started by: Ernst
0 Replies

6. UNIX for Dummies Questions & Answers

how to enter hardcoded password automatically

In the script i am passing a command from script which is called from cron. When this command is called from cron the unix prompt asks for password. Can we automatically enter the password when promted(if the password is hardcoded in script)?? Please let me know how to enter the password... (4 Replies)
Discussion started by: abhi_n123
4 Replies

7. Shell Programming and Scripting

enter password at prompt during a script?

I'm using rsync with the "-e ssh" option so of course it asks for a password using a prompt. Is there a way to tell a script to expect a prompt, wait for it, and give a password when it arrives? There is a way to give rsync a password as part of its options using a file, but it only works with... (2 Replies)
Discussion started by: davidstvz
2 Replies

8. Shell Programming and Scripting

How to enter a password in the script automatically when prompted?

Hi Friends, We need to create a script which will invoke a command with diffrent parameters. The command invoked needs the password. So how automatically we can enter password in the script to the command? example.: #!/bin/ksh for par in `cat parfile` do # Here is the main command... (1 Reply)
Discussion started by: sourabhsharma
1 Replies

9. Shell Programming and Scripting

Script to automatically change password.

I want to write a script which will automatically take password sequentially from a file after every 10 days. i.e the passwd command should be executed automatically every 10 days and it should take the input from the password file sequentially. Has any1 got a solution?????????????? (1 Reply)
Discussion started by: rahulrathod
1 Replies

10. UNIX for Dummies Questions & Answers

How would I telnet & change user password automatically in a script

I would like to create a script that logs into a list of several servers 50+ and changes my password all at once. Every 60 days we are required to login to each system and change our passwords or else they expire and our login account is deleted. I have an idea on how I could do this but... (4 Replies)
Discussion started by: darthur
4 Replies
Login or Register to Ask a Question