How to automatically store/cache password for kerberos authentication


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to automatically store/cache password for kerberos authentication
# 1  
Old 08-07-2014
How to automatically store/cache password for kerberos authentication

Hi All,

I am currently writing script to get the details for lot of hosts from jump server. Means each and every time it will ssh to the host and get the information. To achieve that I need to automatically accept the password from Jump server to that main hosts. We are using kerberos password to access the hosts. Pls let me know how to cache the password & accept it automatically ? Pls advice

Regards
Kannan
# 2  
Old 08-07-2014
I dont get you here, kerberos uses granting ticket to aknowledge trusted users...
# 3  
Old 08-07-2014
Thanks for your reply !

My intention is to ssh mutiple hosts from jump server without passing the password each and every time. We have perl script to accept the password & run to the mutliple hosts without asking password. But my goal to acheive via shell. I dont have much idea about perl scripting. I have attached the perl script in this post. Pls review and let me know how they acheived the logic. Thanks !

Regards
# 4  
Old 08-08-2014
I see no attachment... Never mind, As said Kerberos uses tickets, once you are granted in kerberos you need no password while the granted ticket is valid (usually one month ) then you are to renew your ticket. Otherwise it is using key exchange ssh but does it work with ssh? I have some doubts because Kerberos implementation means also using its own shell and commands, so for me you should more likely enquire how kerberos is implemented and for what usage before trying to go further, it may only be to authenticate through an AD ldap which means you must be authenticated by the AD before you can try to login to an AD unix host, in this case the ticket is to be generated by ?? on all concerned hosts then you use ssh which means you will have to generate your keys in order to copy them around for no passwd connection, on the subject search the forums here, there are plenty exemples of how to do...
# 5  
Old 08-08-2014
thanks for your reply !

Sorry i forgot the attachment. Pls find the link to see the script.

https://drive.google.com/file/d/0B3Q...it?usp=sharing

Regards
Kannan
# 6  
Old 08-08-2014
If I understand you correctly, your goal is to take an existing Perl script and convert it to a shell script. Correct?

Last edited by fpmurphy; 08-08-2014 at 10:25 AM..
# 7  
Old 08-08-2014
Thanks for your email,

My intention is to make use of only that password function inside the perl script & avoid from the password prompt each and every time

Regards
Kannan
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. IP Networking

Packet going out of wrong interface due to OS automatically added cache route with lower metric

RHEL 7.0, IPV6 Scenario: I have routed specific network using network scripts. 1. "ip -6 route show" shows that route has been added. ( with metric 1024) 2. Ping of the specific IP through that route is successful. 3. Now after few days, for some reason, we see that cache route appears for... (3 Replies)
Discussion started by: msr1981
3 Replies

2. Shell Programming and Scripting

PERL and Kerberos authentication

I am installing Authen::Krb5::Easy and during make test I am getting the follwing error : kinit not ok 2 error was: could not get initial credentials: Cannot contact any KDC for requested realm we are stroring krb5.conf in diff location ( not in /etc/krb5.conf) , but, PERL is... (1 Reply)
Discussion started by: talashil
1 Replies

3. UNIX for Dummies Questions & Answers

Kerberos Authentication error

Hi , I am trying to authenticate my id on client server with Kerberos and receiving below error kinit rpagadala@BDC.soft.net kinit: Cannot contact any KDC for realm 'BDC.soft.net' while getting initial credentials Please find krb5.conf on the client server configuration which is... (1 Reply)
Discussion started by: Tomlight
1 Replies

4. AIX

SSH and kerberos authentication problem AIX 5.3

I've configured an AIX 5.3 client to use our Windows AD for user authentication via Kerberos. When I try to ssh to the server using the AD credentials, I eventually get access but not after getting prompted for a password 3 times (which doesn't work) followed by an accepted login on the 4th... (3 Replies)
Discussion started by: jmroderick
3 Replies

5. Red Hat

PAM configuration: Kerberos authentication and NIS authorization problem

Hi, I've configured two linux boxes to authenticate against Windows Active Directory using Kerberos while retrieving authorization data (uids, gids ,,,)from NIS. The problem I ran into with my PAM configuration is that all authentication attempts succeed in order.i.e. if someone tried his... (0 Replies)
Discussion started by: geek.ksa
0 Replies

6. Programming

Kerberos Authentication c/c++

I am in the process of developing a application that needs to be able to authenticate users details with a kerberos server, which is proving to be rather difficult. There seems to be a lack of good information on how to do this using the MIT kerberos api. Can anyone point me in the right... (0 Replies)
Discussion started by: mshindo
0 Replies

7. Linux

IPSec using racoon w/ kerberos authentication

Hi, Anyone can point me a good link to setup IPSec using racoon IKE which uses gssapi_krb authentication method? I have a debain linux box and Windows 2003R2 system, and I want them to communicate using IPSec. Thanks, Emily. (0 Replies)
Discussion started by: egyfan
0 Replies

8. UNIX for Dummies Questions & Answers

Kerberos Authentication from Application

Hi, We've configured Kerberos to authenticate AIX 5.3 users with Active Directory and I now have to port an application written in C to the new security model. Currently, our users can login as normal and running a "klist" command reveals that they have been successfully granted a ticket. ... (2 Replies)
Discussion started by: phykell
2 Replies
Login or Register to Ask a Question