Re: How can I log every login via telnet?

2005-04-10 Thread Anthony Atkielski
Sandy Rutherford writes: See login.access(5) and login.conf(5). Both provide this functionality. I've tried this and I've obtained weird results. Supposedly login stops at the first match in the login.access file. So I used this: +:ALL:console +:ALL:LOCAL +:xxx yyy:ALL EXCEPT

Re: How can I log every login via telnet?

2005-04-10 Thread Chris
Anthony Atkielski wrote: Sandy Rutherford writes: See login.access(5) and login.conf(5). Both provide this functionality. I've tried this and I've obtained weird results. Supposedly login stops at the first match in the login.access file. So I used this: +:ALL:console +:ALL:LOCAL +:xxx yyy:ALL

Re: How can I log every login via telnet?

2005-04-09 Thread Sandy Rutherford
Anthony, On Fri, 8 Apr 2005 you wrote: Sandy Rutherford writes: Check /var/log/auth.log. They should be logged there by default. Thanks, that's just what I was looking for. You could also use tcpwrappers for better control over access and logging. See /etc/hosts.allow and man 5

How can I log every login via telnet?

2005-04-07 Thread Anthony Atkielski
Is there a way to log every login via telnet? -- Anthony ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: How can I log every login via telnet?

2005-04-07 Thread Chris
On Thu, 7 Apr 2005, Anthony Atkielski wrote: Is there a way to log every login via telnet? -- Anthony Anthony, have a look at /etc/syslog.conf In addition, see the man page also. It's pretty to the point. Best regards, Chris It is better for civilization to be going down the drain, than to be

Re: How can I log every login via telnet?

2005-04-07 Thread Chris
On Thu, 7 Apr 2005, Chris wrote: On Thu, 7 Apr 2005, Anthony Atkielski wrote: Is there a way to log every login via telnet? -- Anthony Anthony, have a look at /etc/syslog.conf In addition, see the man page also. It's pretty to the point. Actually, man 8 syslogd Best regards, Chris It is better

Re: How can I log every login via telnet?

2005-04-07 Thread LukeD
On Thu, 7 Apr 2005, Anthony Atkielski wrote: Is there a way to log every login via telnet? The system already records all logins in /var/log/auth.log. You could pull out the telnet entries with grep if those are the only ones you're interested in. If you're wanting to build your own log then I

Re: How can I log every login via telnet?

2005-04-07 Thread Chris
On Thu, 7 Apr 2005 [EMAIL PROTECTED] wrote: On Thu, 7 Apr 2005, Anthony Atkielski wrote: Is there a way to log every login via telnet? The system already records all logins in /var/log/auth.log. You could pull out the telnet entries with grep if those are the only ones you're interested in. If

Re: How can I log every login via telnet?

2005-04-07 Thread Bob Ababurko
Chris wrote: On Thu, 7 Apr 2005 [EMAIL PROTECTED] wrote: On Thu, 7 Apr 2005, Anthony Atkielski wrote: Is there a way to log every login via telnet? The system already records all logins in /var/log/auth.log. You could pull out the telnet entries with grep if those are the only ones you're

Re: How can I log every login via telnet?

2005-04-07 Thread Sandy Rutherford
On Thu, 7 Apr 2005 20:42:25 +0200, Anthony Atkielski [EMAIL PROTECTED] said: Is there a way to log every login via telnet? Check /var/log/auth.log. They should be logged there by default. You could also use tcpwrappers for better control over access and logging. See /etc/hosts.allow and

Re: How can I log every login via telnet?

2005-04-07 Thread Anthony Atkielski
Sandy Rutherford writes: Check /var/log/auth.log. They should be logged there by default. Thanks, that's just what I was looking for. You could also use tcpwrappers for better control over access and logging. See /etc/hosts.allow and man 5 hosts_options. I'd be mainly interested in