Suppress SSH login logs of a user


 
Thread Tools Search this Thread
Operating Systems HP-UX Suppress SSH login logs of a user
# 1  
Old 03-28-2012
Suppress SSH login logs of a user

Hi,
I want to suppress ssh login logs of a particular user to get logged in /var/adm/syslog/syslog.log

As am using a user to monitor a server over ssh in 5 miute interval..and that creating un-necessary logs in my syslog.log file .. Please help me if there any way I can suppress this logs only for this particulat user .

--Shirish Shukla
# 2  
Old 03-29-2012
Use -q switch when connecting.

Regards
Peasant.
# 3  
Old 03-29-2012
Thanks! But Have tried using and login log logged ...in syslog.log file ..

Code:
# ssh -q nag@mynode

# 4  
Old 03-29-2012
I'm not sure how to disable those but,you can setup syslog to log auth messages in separate file.

Other then that, i don't know the way to suppress those messages in normal way (other then ugly shell hacks or similar).

Perhaps someone else will be able to help you more.
# 5  
Old 03-29-2012
As peasant suggests you can send your logs out of syslog.log but you cannot filter on a user basis
By default on HP-UX, syslogfacility is set to AUTH and log level to INFO
So adding the following line to your /etc/syslog.conf file should send all your sshd logs to auth.log:
Code:
auth.info                       /var/adm/syslog/auth.log

This User Gave Thanks to vbe For This Post:
# 6  
Old 03-30-2012
Thanks guys..
Have got the temporary solution ... that at every check that script itself delete it's login logs from syslog.log file and it's working as temp solution Smilie
# 7  
Old 03-30-2012
Quote:
that at every check that script itself delete it's login logs from syslog.log
Be very careful that whatever editing method is used does not change the inode of the file because the file is open by syslogd.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Ssh public/private key user login problem

I have a user account configuration with ssh public/private key that works on multiple servers centos and rhel. One server (Server F) that is not working in centos 6.8. When i ssh into server f I get prompted for a password. I have verified the config and it all is good. I put sshd into debug... (8 Replies)
Discussion started by: bash_in_my_head
8 Replies

2. AIX

Ssh not allowing NIS user to login

As I do a ssh <nis_user>@server1 from server2, ssh prompts for certificates (as expected the first time), then it prompts for the users password, as soon as I enter the password, I get a Connection to server1 closed by remote host, and connection to server1 closed. and I disconnect back to the... (3 Replies)
Discussion started by: mrmurdock
3 Replies

3. Solaris

How can i setup ssh password-less login for particular user?

HI Community. I was trying to create ssh password less authentication for one user called night and it's not working for me. These are the steps I followed:- I have logged into the server and issued ssh-ketgen -t rsabash-3.2$ ssh-keygen -t rsa Generating public/private rsa key pair.... (4 Replies)
Discussion started by: bentech4u
4 Replies

4. Red Hat

SFTP user include/exclude without preventing SSH login

I have been asked to see if we can restrict SFTP access to authorised users only. There will be business users who will log on with SSH, but they are locked into a menu. They will have write access to the production data to do their job, but we don't want them to have access to read/write the... (8 Replies)
Discussion started by: rbatte1
8 Replies

5. Shell Programming and Scripting

Email alerts whenever someone logs into server via SSH any user?

Hi all, Thanks in Advance!! I dont know how to start to write script for this process, my requirement is if any user logs into server automatically Admin get mail alert. how is this possible? any one guide me to complete this process. (1 Reply)
Discussion started by: anishkumarv
1 Replies

6. Shell Programming and Scripting

Help to hide shell terminal and run prompt program after ssh login for specified user

Hey guys, I have some task from my office to lock user on the specified directory after the user logged on using ssh. And then run prompt program to fill the required information. Yeah, just like an ATM system. My question: How could I do those?? AFAIK I have to edit the ~./bashrc. But the... (1 Reply)
Discussion started by: franzramadhan
1 Replies

7. UNIX for Dummies Questions & Answers

$USER is not set in remsh but works fine via ssh login

1) ssh a@b echo $USER it display the correct value as a (even though i have not defined it in .profile) 2) remsh b -l a echo $USER it does not display the value as a (variable is not set any idea why $USER variable is not initialized when i login via remsh or rlogin but shows the... (10 Replies)
Discussion started by: reldb
10 Replies

8. UNIX for Advanced & Expert Users

How to allow particular user only to login as a root using "ssh" ?

Q1 I want to allow particular user only to login into root using ssh. I have set PermitRootLogin no for security purpose but I want to allow some of the users to login as a root using ssh how to do this? I have tried with Allowusers user1 user2 its working for only the user1 and... (3 Replies)
Discussion started by: ungalnanban
3 Replies

9. Shell Programming and Scripting

SSH login with user name and script.

I want to login to server using ssh or telnet and execute one command then exit to the shell Please let me know how to write script for this? (1 Reply)
Discussion started by: svenkatareddy
1 Replies

10. HP-UX

User not able to login directly using ssh

HI, We are facing a problem while trying to login using ssh. The user is able to login using telnet. We are able to login as another user using ssh and then su to that user which is successfull. What should i be checking for the user to be able to login directly using ssh. Thanks in... (2 Replies)
Discussion started by: sag71155
2 Replies
Login or Register to Ask a Question