diff options
| author | Andreas Klemm <andreas@FreeBSD.org> | 1998-06-27 11:20:34 +0000 |
|---|---|---|
| committer | Andreas Klemm <andreas@FreeBSD.org> | 1998-06-27 11:20:34 +0000 |
| commit | 491a4a3d9607145cd4f24bde33d14645e68319f5 (patch) | |
| tree | 6b07b44677a8b1072b835b6d06223552ba6918ec /etc/security | |
| parent | 8b4d9bd89688982b804a0e9db486e0f3a157825b (diff) | |
Notes
Diffstat (limited to 'etc/security')
| -rw-r--r-- | etc/security | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/etc/security b/etc/security index 3f3d168af298..25efe07279b9 100644 --- a/etc/security +++ b/etc/security @@ -1,7 +1,7 @@ #!/bin/sh - # # @(#)security 5.3 (Berkeley) 5/28/91 -# $Id: security,v 1.16.2.3 1997/08/01 01:28:01 brian Exp $ +# $Id: security,v 1.16.2.4 1997/09/26 01:41:30 alex Exp $ # PATH=/sbin:/bin:/usr/bin LC_ALL=C; export LC_ALL @@ -84,4 +84,14 @@ if dmesg 2>/dev/null > $TMP; then fi fi +# show login failures +separator +echo "$host login failures:" +grep -i "login failures" $LOG/messages + +# show tcp_wrapper warning messages +separator +echo "$host refused connections:" +grep -i "refused connect" $LOG/messages + rm -f $TMP |
