- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to trace rlogin users
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
06-08-2003 05:07 PM
06-08-2003 05:07 PM
for syslog.log I cant get more info.
Regards
Ashan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2003 05:52 PM
06-08-2003 05:52 PM
Re: How to trace rlogin users
last -R
that will show you the name/ip address of the machine that they connected from.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2003 06:09 PM
06-08-2003 06:09 PM
Re: How to trace rlogin users
You can get all the info related with who are the persons logged in and what are the interfaces they used to connect by issueing
#last -R
If provided you have a valid /var/adm/wtmp file.
-suki
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2003 07:29 PM
06-08-2003 07:29 PM
Re: How to trace rlogin users
With Secure shell being free however, there is probably not a good reason not to dump the insecure Berkely protocols and go with ssh.
There are plenty of posts in my name showing how easy it is to upgrade and get the same functionality.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2003 09:07 PM
06-08-2003 09:07 PM
Re: How to trace rlogin users
how to add in the /etc/inetd.conf
give a example please.
Regards
Ashan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2003 09:57 PM
06-08-2003 09:57 PM
Re: How to trace rlogin users
You can use the logging facility of inetd itself. To enable you need to execute
#/usr/sbin/inetd -l
This command can be executed online.
Whenever a connetion established to your server using inetd services it will be logged in /var/adm/syslog/syslog.log file.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2003 10:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2003 10:57 PM
06-08-2003 10:57 PM
Re: How to trace rlogin users
Next step could be running accounting.
change START_ACCT to 1 in /etc/rc.config.d/acct
start accounting by running /sbin/init.d/acct start
All users commands are now logged in /var/adm/pacct. You can list commands with the command # lastcomm. By sure that you have enough space in /var.
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2003 11:13 PM
06-08-2003 11:13 PM
Re: How to trace rlogin users
in my earlier post i think i was wrong, -l to rlogind line in /etc/inetd.conf only limits the normal users expect root to use .rhosts for authentication.
inetd -l will do your work.
sorry for the same.
Regards