- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ftp sessions log
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
05-14-2004 08:12 PM
05-14-2004 08:12 PM
I am using unix tru64 4.0f. Is there any way in which I can record the ftp session connecting my server along with the user id.
Thanx in anticipation.
shashang.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2004 08:41 PM
05-14-2004 08:41 PM
Re: ftp sessions log
This is what i will do on HPUX M/c.
(Go thr SAM, go to syslog viewer and user Filter to get the FTP related log from syslog.log file.)
See if you can do same thing on TRU64.4
Hope this helps you out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2004 08:08 AM
05-15-2004 08:08 AM
Re: ftp sessions log
This is the HPUX forum and not the Tru64 forum. So if i am not correct, i have an excuse....
the ftpd is spawned by the inetd, to alter the logging of that deamon you will have to edit the /etc/inetd.conf. There should be a line that has ftpd in it. Alter that line so the ftpd is started in debugging mode. ftpd -dl
In addition to that you can alter the /etc/syslog.conf so all ftp warnings are logged. ( check man pages for exact syntax please)
HTH,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2004 08:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 12:45 PM
05-16-2004 12:45 PM
Re: ftp sessions log
at /etc/inetd.conf, look for the ftp line. at the end of the line, default is "ftpd -l". replace it with "ftp -oil" and do this to re-start inetd:
# inetd -c
this will generate a log file, xferlog under the directory, /var/adm/syslog/
however, take note that -o option is overriden by the /etc/ftpd/ftpaccess file.
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 07:09 PM
05-16-2004 07:09 PM
Re: ftp sessions log
In HPUX, using the option -l -a at the ftpd line within the inetd.conf you force ftpd to use the ftpaccess file in /etc/ftpd.
In this file you can specify what to log with the line:
log transfers real inboud,outbound
All loggings are placed in /var/adm/syslog/xferlog
The ftpaccess file can also enable access lists for ftpsessions from networks/hosts, block specific files for ftp.
For more details check the man pages for the correct syntax.
Hopes this helps you on your way.
Edwin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 07:13 PM
05-16-2004 07:13 PM
Re: ftp sessions log
There are various means to accomplish what you are looking for. Perhaphs the 2 discussion threads below give you all the information that you are looking for
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=187078
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=96479
regards
Mobeen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 10:18 PM
05-16-2004 10:18 PM
Re: ftp sessions log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 10:22 PM
05-16-2004 10:22 PM
Re: ftp sessions log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 10:27 PM
05-16-2004 10:27 PM
Re: ftp sessions log
have you try, adding "ftp -oil" to the end of the line for ftpd in the inetd.conf file?
as for what HUP means:
# kill -HUP
is equivalent to doing
# inetd -c
to restart the process.
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 02:21 AM
05-17-2004 02:21 AM
Re: ftp sessions log
editing the inetd.conf doesn't do you any good because the inetd is not aware of any change. kill -HUP forces it to reread the conf file.
greetings,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 02:24 AM
05-17-2004 02:24 AM
Re: ftp sessions log
overlooked the question in the second post of you. Could you please explain, what you want exactly?
thanks,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 09:51 PM
05-17-2004 09:51 PM
Re: ftp sessions log
Regards,
shashang.