ssh login authenication


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting ssh login authenication
# 1  
Old 01-24-2009
ssh login authenication

Hi,

I need to shell script if anyone logins Via ssh to my box a mail authentication should be received to my email id.

Thank you
Siva
# 2  
Old 01-24-2009
So you want to be emailed whenever someone logs in? One way that may work is to add a line to /etc/bashrc (if that's the default shell for all users). You may be able to add something like:
Code:
mail -s "$USER has logged in." email@host.tld < /dev/null

I haven't tried this but maybe someone who has can chime in.
# 3  
Old 01-24-2009
Not sure what OS you're using but if you have a logcheck and a logcheck.ignore file you could set it up so that user logins with login id's and system ip/dns name gets logged and emailed as a system event log file using cron. That would give you multiple records in a single email ever hour.

I've seen hundreds of ssh entries in a day to my servers. We have server logs emailed every hour using cron, keeps the emails from piling up so bad.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

SSH login issue

Dear All , recently i have configured sftp for a user for which i have done chroot. but after this , sftp is working fine . but ssh is not working when we connect to the server. When we try to ssh <user>@<server ip> , the below is the error message that we get and not able to login. ... (2 Replies)
Discussion started by: jegaraman
2 Replies

2. Shell Programming and Scripting

Getting ssh to try login only once

spawn ssh remotehost -l skysmart when the password is incorrect, this will attempt to log in 2 more times, before it exits. is there an option I can pass to ssh that'll make it try only once and will then abort immediately if the password is incorrect? something like: spawn ssh... (1 Reply)
Discussion started by: SkySmart
1 Replies

3. Shell Programming and Scripting

ssh login

Hi, I am trying to login Server2 from server1 in a shell script and need to perfrom few commands, Below is the command i used to login to server2 from server1 ssh -l username server2 However everytime it executes it asking for password. How do write a script in such way it takes... (1 Reply)
Discussion started by: ch33ry
1 Replies

4. HP-UX

telnet login successful ,but ssh can not login

why I can login by telnet using root account but when i use login by ssh using root account it is not successful ,is it different password i am sure ssh service is started (2 Replies)
Discussion started by: alert0919
2 Replies

5. Shell Programming and Scripting

Help with ssh login and command

Hi I want to make a ssh login and excute a command in the same step. I am trying something like ssh -t -t -Y hostname 'sh myscript' However I recive connection to "host" closed and nothing has happend. I can succesfully log in to the host and then excute my script if I do it in... (2 Replies)
Discussion started by: Mtepe
2 Replies

6. Ubuntu

Likewise AD Authenication with proxy

I am running Ubuntu 10.04 on my laptop and have successfully joined it to our domain for authentication. we use a proxy server for internet access that requires the AD user and password. Even though the computer is added and I am logged on as the AD user when accessing the internet via Firefox,... (3 Replies)
Discussion started by: Ikon
3 Replies

7. Shell Programming and Scripting

ssh login help

I would like to login to host and once logged into host would like to run script. i.e "ssh hostname -l username /opt/share/scripts/vol" Can someone please have this run as script .. Many Thanks -sam (1 Reply)
Discussion started by: sam786
1 Replies

8. Red Hat

help with ssh login

hi, to ssh login i give the command.. root@localhost~] # ssh ip_add it allows me to login on a remote machine if i know the password, but i work on wireless network so the ip keeps on changing for the remote machine, how can i access that machine with some unique name , that does not changes.i... (3 Replies)
Discussion started by: ankita tux
3 Replies

9. UNIX for Dummies Questions & Answers

help with ssh login

hi, i have red hat RHEL-5 on my machine, i ma trying to ssh login on remote machine root@localhost~]# ssh ip_address(of remote machine) it works fine if i know the password, i use wireless network so the ip keeps on changing,so is there any way to access the machine with some unique name, which... (1 Reply)
Discussion started by: ankita tux
1 Replies

10. Shell Programming and Scripting

How can we ssh login with script?

Hi all, Normally, we give ip address to login with ssh like ssh 172.168.0.1 And we can give login name to ssh like ssh -l root 172.10.0.21 Then the shell asks the password, we enter the password and login to the system. While using the script file, we are not able to supply the password to... (5 Replies)
Discussion started by: pcsaji
5 Replies
Login or Register to Ask a Question