- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- VMS Workstation Security Monitoring
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
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
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
тАО09-27-2005 03:36 AM
тАО09-27-2005 03:36 AM
VMS Workstation Security Monitoring
I'm hoping it is to syslog and can be configured to redirect syslog to a syslog host.
Please Help.. Thanks...
M
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-27-2005 03:48 AM
тАО09-27-2005 03:48 AM
Re: VMS Workstation Security Monitoring
The process in VMS is AUDIT_SERVER, and the datafile is by default
sys$common:[sysmgr]SECURITY.AUDIT$JOURNAL
The commands to set parameters for audit are SET AUDIT,
and analysis of the audit data:
ANALYZE/AUDIT.
See HELP SET AUDIT and HELP ANALYZE /AUDIT,
and read the VMS system manager manual.
As far I know, there is no implementation of a syslog client for VMS. Somewhere on a freeware archive I saw a syslogd for VMS, i.e. sending syslog entries from other systems to VMS should be possible.
The VMS audit server can be asked to send its events down a listener mailbox. This would be the place to plugin a syslog client: reading the listener mailbox, format and write to the remote syslogd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-27-2005 04:22 AM
тАО09-27-2005 04:22 AM
Re: VMS Workstation Security Monitoring
Great.......
M
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-27-2005 04:23 AM
тАО09-27-2005 04:23 AM
Re: VMS Workstation Security Monitoring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-27-2005 12:24 PM
тАО09-27-2005 12:24 PM
Re: VMS Workstation Security Monitoring
Security in VMS was designed sometime back by some very clever people. Bear in Mind, that when it was the "thing to do" VMS was consistently getting the US DOD NCSC C2 tick of approval, and there was a product (SEVMS) that was B1 rated. (And even an internal project that had a working A1 secure system, but that's a story for beer-o-clock).
q
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-27-2005 09:22 PM
тАО09-27-2005 09:22 PM
Re: VMS Workstation Security Monitoring
set aud/list will enable that audit_server writes all audit messages to a mailbox.
Your program reads this and passes the info to whatever you want.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-27-2005 11:01 PM
тАО09-27-2005 11:01 PM
Re: VMS Workstation Security Monitoring
You can set audit for logging, which is logged in SYS$MANAGER:SECURITY.AUDIT$JOURNAL, or for alarm, which is logged there as well, and on OPERATOR.LOG.
However, audit on VMS is (by design?) something node-local.
If your workstation boots from a common system disk, it will have it's own SYS$SYSTEM and, quite likely, it's own SYS$MANAGER, so it's own security and (if enabled) operator.log. Be sure to have this closed for unauthorized access. (which is a general recommendation).
If the system has it's own systemdisk, these files will normally reside on it as well. OPEARTOR.LOG may be disabled, but OPCOM will try to send it;s messages to other clusternodes as well. Have big systems set to handle all messages (from itself and all incoming ones) and the small ones (that have no OPERATOR.LOG locally) to disallow incoming messages, but allow sending them.
By that, the bigger hosts will function as loghost - not the Unix way since messages will be sent by the cluster communication protocol (which is (AFAIK) secure).
If your workstation is stand-alone, it will audit on it's own system disk - or, if you define so, to a security mailbox. AYou have to create a listener that reads this mailbox, and handles the message - but you will be able to specify what it will do: sending it to another host, for example, for further processing.
Bear in mind however, that is that case you have to add the nodename to the message, before storing. Since Audit is local, there is no nodename mentioned in the audit message.
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-28-2005 12:45 AM
тАО09-28-2005 12:45 AM
Re: VMS Workstation Security Monitoring
by default, the audit log file is
SYS$COMMON:[SYSMGR]SECURITY.AUDIT$JOURNAL
So on cluster with a common system disk, there is one common audit log.
In a cluster with several system disks, one can use SET AUDIT/DESTINATION to have a common file.(Although one has to take care using /SERVER=NEW_LOG).
In addition there is the AUDIT/ARCHIVE feature to send all or selected (like security only) events to a common log file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-28-2005 06:49 PM
тАО09-28-2005 06:49 PM
Re: VMS Workstation Security Monitoring
Just curious on this:
In a NON-clustered environment, would /DESTINATION=node::disk:[dirpath] be possible (assuming DECNet installed and running)? Accoring HELP SET AUDIT /DESTINATION, it must be a disk, but it doesn't state whether it must be local or can be remote.
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-28-2005 06:56 PM
тАО09-28-2005 06:56 PM
Re: VMS Workstation Security Monitoring
It is possible to route all messages to bigger machine(s) and not log events on the workstation. On that bigger machine, one terminal (CRT of hardcopy) can be designated as OPER console for class SECURITY only, and all security-related messages will be signalled on that terminal - virtually real-time.
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-28-2005 07:59 PM
тАО09-28-2005 07:59 PM
Re: VMS Workstation Security Monitoring
The operator messages are independent of audit journal or archive, they always are sent clusterwise from opcom.
Just don't have an operator log file started on all other nodes (the default anyway on workstations), and no OPCOM enabled terminals except the one wanted.
Setting the audit journal destination to a decnet address: I doubt it is possible, but hey : why don't You just test it and report what happens ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-28-2005 09:00 PM
тАО09-28-2005 09:00 PM
Re: VMS Workstation Security Monitoring
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-29-2005 12:53 AM
тАО09-29-2005 12:53 AM
Re: VMS Workstation Security Monitoring
I would if I had two (non-clustered) systems communicating via DECNet (I have plans to create such a network but time is limited)
Willem
OpenVMS Developer & System Manager