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
11-18-2002 07:03 PM
11-18-2002 07:03 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2002 07:05 PM
11-18-2002 07:05 PM
SolutionIn your /etc/inetd.conf config file, find the line for your ftpd daemon and add a '-l' at the end of it. The '-l' option will log all the ftp sessions in the /var/adm/syslog/syslog.log file. If you want to see all the individual ftp commands from each session, use the '-L' option instead, but be warned, if you have a lot of ftp traffic it will put lots of entries in your syslog.log file.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2002 07:09 PM
11-18-2002 07:09 PM
Re: ftp log
Add this entry to your /etc/syslog.conf file at or near the top
daemon.notice /var/adm/syslog/daemon.log
Doing this will, reroute logging for ftp (and all the daemon processes started by inetd and a few others) to this file. Not the the complete segregation of ftp, but places them elsewhere.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2002 07:10 PM
11-18-2002 07:10 PM
Re: ftp log
inetd -c
to get the inetd daemon to re-read the inetd.conf file and pick up on your ftpd change.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2002 07:10 PM
11-18-2002 07:10 PM
Re: ftp log
To check if it enabled, have a look in your '/etc/inetd.conf' file.
The entry should look like this:
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l
if it is not, then change the entry and restart 'inetd'
# inetd -c
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2002 07:14 PM
11-18-2002 07:14 PM
Re: ftp log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2002 07:31 PM
11-18-2002 07:31 PM
Re: ftp log
I'm pretty sure the IP address [or the hostname if it can be resolved] is included in the log.
Michael, thanks for the info on redirecting the ftp log entries. I've been wondering how to do that.
JP