Operating System - Tru64 Unix
1753632 Members
5801 Online
108798 Solutions
New Discussion юеВ

Tracking login failures

 
SOLVED
Go to solution
Art Dantonio
Occasional Contributor

Tracking login failures

Want to write failed login attempts to a file as they occur on a V5.1 2650 alpha.
4 REPLIES 4
Victor Semaska
Frequent Advisor

Re: Tracking login failures

You probably would want to enable auditing. It's best you refer to the Security Admin manual on how to do this.

Here's the URL to the on-line doc.s
http://h30097.www3.hp.com/docs/

Vic
Mobeen_1
Esteemed Contributor

Re: Tracking login failures

Art,
You could try lastb -R (last command) and see if that helps. It basically gives you the timestamp, from where the connection came from.

regards
Mobeen
Cortes Albertino
Trusted Contributor
Solution

Re: Tracking login failures

Hello,

Before configuring ACCOUNTING or audit features,

You could try first this;

#touch /var/adm/sialog
#chmod 644 /var/adm/sialog
#chown root.adm /var/adm/sialog

Then try and fails to login and have a look to sialog file.

Hope it helps,

Albertino Cortes
Art Dantonio
Occasional Contributor

Re: Tracking login failures

The sialog did the trick. Thanks