- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: syslog error ..
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2001 08:05 AM
08-14-2001 08:05 AM
I get this error in my syslog.
Aug 13 23:49:18 lvapp01 ftpd[10881]: PAM_TEXT_INFO: Last successful login for root: Mon Aug 13 23:47:07 CST6CDT 2001 on tty .
Aug 13 23:49:18 lvapp01 ftpd[10881]: PAM_TEXT_INFO: Last unsuccessful login for root: Mon Aug 13 16:13:07 CST6CDT 2001 on pts/ta .
Aug 13 23:49:18 lvapp01 ftpd[10881]: FTP LOGIN FROM lvapp14.prod.networkip.net [192.168.10.151], root
Aug 13 23:49:19 lvapp01 ftpd[10881]: FTP session closed
Can someone tell me what this means or if i should fixx it?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2001 08:11 AM
08-14-2001 08:11 AM
Re: syslog error ..
I suspect that you have enabled inetd logging. It will log when every process is spawned by inetd. Every telnet, every ftp, .... . Because of this, I only enable inetd logging for short periods when I am looking for specific problems. Separating the wheat from the chaff becomes difficult in short order. The PAM messages (Pluggable Authentication Module) indicate login attempts.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2001 08:17 AM
08-14-2001 08:17 AM
Re: syslog error ..
I presume that it's PAM who is bothering you ;-)
PAM stands for "Pluggable Authentication Modules" and is a framework for integrated login. Take a look at the man pages for it ('man 3 pam') for a start and also at chapter-8 "Administering a System: Managing System Security" in "Managing Systems and Workgroups: A Guide for HP-UX System Administrators":
http://docs.hp.com/hpux/onlinedocs/B2355-90701/B2355-90701.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2001 08:30 AM
08-14-2001 08:30 AM
Re: syslog error ..
Check you /etc/rc.config.d/netdaemons file and look for variable INETD_ARGS, if it is set to
export INETD_ARGS="-l"
then you would see this logging in the syslog.
To disable this, just set this variable to blank and bounce your inetd (/sbin/init.d/inetd stop; /sbin/init.d/inetd start).
It doesn't look like you have ftp logging enabled but look for the ftp entry in the /etc/inetd.conf.
-HTH
I am RU
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2001 08:32 AM
08-14-2001 08:32 AM
Re: syslog error ..
You have indeed enabled inetd logging , in case the server is critcal interms of restricting ftp/telnet logging then u need to have this on as you can monitor .
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2001 09:38 AM
08-14-2001 09:38 AM
Re: syslog error ..
But I am still getting this.
Aug 14 11:44:36 lvapp01 inetd[542]: Connection logging disabled
Aug 14 11:58:41 lvapp01 ftpd[24982]: PAM_TEXT_INFO: Last successful login for
root: Tue Aug 14 11:42:26 CST6CDT 2001 on pts/ta .
Aug 14 11:58:41 lvapp01 ftpd[24982]: PAM_TEXT_INFO: Last unsuccessful login for
root: Mon Aug 13 16:13:07 CST6CDT 2001 on pts/ta .
Aug 14 11:58:41 lvapp01 ftpd[24982]: FTP LOGIN FROM lvapp14.prod.networkip.net [
192.168.10.151], root
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2001 11:41 AM
08-14-2001 11:41 AM
Re: syslog error ..
Are you seeing this logging only for the ftpd?
Check if the logging option is enabled for ftpd in the /etc/inetd.conf file.
-Regards
I am RU
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2001 07:14 PM
08-15-2001 07:14 PM
Re: syslog error ..
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2001 07:30 PM
08-15-2001 07:30 PM
SolutionThe -l option means the loggin is on
From the man page of ftpd
-l Causes each FTP session to be logged in the syslog file.
-l logs each ftp session, where as -L logs each command sent to the ftpd server
-HTH
I am RU
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2001 09:37 PM
08-15-2001 09:37 PM
Re: syslog error ..
Did you check your /etc/pam.conf file and see if you have debug option on for ftp?. If so, you need to take it out to get rid of these message
-Sri