- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: checking who&where remote login to the server
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
11-12-2002 10:37 PM
11-12-2002 10:37 PM
checking who&where remote login to the server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2002 10:51 PM
11-12-2002 10:51 PM
Re: checking who&where remote login to the server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2002 10:53 PM
11-12-2002 10:53 PM
Re: checking who&where remote login to the server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2002 11:34 PM
11-12-2002 11:34 PM
Re: checking who&where remote login to the server
you can use "netstat -an" or "arp -a" to see the connected systems...
if you have samba installed you can even use nmblookup - NetBIOS over TCP/IP client used to lookup NetBIOS names
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2002 12:10 AM
11-13-2002 12:10 AM
Re: checking who&where remote login to the server
Give this command
#who -u | more
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2002 12:12 AM
11-13-2002 12:12 AM
Re: checking who&where remote login to the server
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2002 01:03 AM
11-13-2002 01:03 AM
Re: checking who&where remote login to the server
/usr/sbin/acct/fwtmp < /var/adm/wtmp > /var/tmp/wtmp.tmp
now you could make changes to it, you could remove you own entry with:
vi /var/tmp/wtmp.tmp
and then recreate the wtmp file by doing this:
/usr/sbin/acct/fwtmp -ic < /var/tmp/wtmp.tmp > /var/adm/wtmp
BR
Jannik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2002 01:55 AM
11-13-2002 01:55 AM
Re: checking who&where remote login to the server
who -R
see syslog.log for ftp logins..
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2002 06:17 AM
11-13-2002 06:17 AM
Re: checking who&where remote login to the server
last gets it's info from /var/adm/wtmp. If it doesn't exist, simply touch it. You'll need to keep watch over the size of this file as it grows without bounds.
who, by default, displays info about the currently logged in users. You can get historical info by specifying /var/adm/wtmp as an option:
who -R /var/adm/wtmp
man last and who for more info.
Darrell