Operating System - HP-UX
1838613 Members
5512 Online
110128 Solutions
New Discussion

Re: REMOTE ACCESS MONITORING

 
Angus Spence_1
Occasional Contributor

REMOTE ACCESS MONITORING

I'm recently back to HP-UX after abut 1.5 yr out.

Could someone tell me if we have a method of watching who is accessing the system by modem ? and logging same for use later ?
1 REPLY 1
Ceesjan van Hattum
Esteemed Contributor

Re: REMOTE ACCESS MONITORING

In case your using HPUX 11, you can use ndd. For example:

ndd -get /dev/tcp tcp_status | grep ESTABLISHED | cut -f2 -d" "

You can put such a line in a script for logging.

Success,
Ceesjan