- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- How to log FTP Server activity on OpenVMS
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
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
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-03-2005 10:33 PM
тАО11-03-2005 10:33 PM
How to log FTP Server activity on OpenVMS
we are using OpenVMS 7.3-2 with TCPIP 5.4 ECO 4 and we would like to log the activity of a FTP server. Does anyone know how we can do this ? Are there logical names we can use to turn on and off this ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-03-2005 10:45 PM
тАО11-03-2005 10:45 PM
Re: How to log FTP Server activity on OpenVMS
FTP activity should be logged ,as I believe, by default. Check $ TCPIP SHOW SERVICE FTP /FULL. You should see 'Log Opts:' and log file defined there. Log file is usually in SYS$LOGIN dir of FTP account. For TCPIP$FTP it's usually SYS$SYSDEVICE:[TCPIP$FTP] and you should find there TCPIP$FTP_RUN.LOG .
To change log_options see
$ TCPIP HELP SET SERVICE /LOG_OPTIONS
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-03-2005 11:01 PM
тАО11-03-2005 11:01 PM
Re: How to log FTP Server activity on OpenVMS
Default location is SYS$SYSDEVICE:[TCPIP$FTP]FTP_RUN.LOG. If you have enabled anonymous FTP, you will have additional separate logging in TCPIP$FTP_ANONYMOUS.LOG in the same location.
There is also a LOGIN.COM in that directory that is empty but for a single comment line. I have not tried to put anything in it but it might be possible to add specific comments in there.
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-04-2005 04:20 AM
тАО11-04-2005 04:20 AM
Re: How to log FTP Server activity on OpenVMS
When you configure VMS TCPIP, the LOG files for all services will be created automatically, such as
FTP server activity log will be in
sys$manager:tcpip$ftp_server.log
Other FTP RUN activities will be available in the following file and locations...
sys$sysdevice:[TCPIP$FTP]TCPIP$FTP_ANAYMOUS.LOG
and
sys$sysdevice:[TCPIP$FTP]TCPIP$FTP_RUN.LOG
if you have TCPWare, then the all the FTP transactions occured between Client and Server will be logged in the login directory in SYS$LOGIN:FTPServer_DTP.LOG
also
you can create your own FTP log file to trace any specific activities using the following cmnd....
$ SET SERVICE FTP /LOG_OPTIONS=(FILE=SYS$SYSDEVICE:[TCPIP$FTP]myftplog.log, accept, activate, address, connetc, deactivate, error, exit_cleanup, login, logout, modify, reject)
Archunan
Archie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-04-2005 04:48 AM
тАО11-04-2005 04:48 AM
Re: How to log FTP Server activity on OpenVMS
FTP server activity log will be in
sys$manager:tcpip$ftp_server.log
Archie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-07-2005 12:35 AM
тАО11-07-2005 12:35 AM
Re: How to log FTP Server activity on OpenVMS
Heinz