1834299 Members
2255 Online
110066 Solutions
New Discussion

tracing user ipaddress

 
SOLVED
Go to solution
Henry Chua
Super Advisor

tracing user ipaddress

Hi guys,

From the "who" command I am able to learn about who is on the system.. but is there anyway to trace the user via its ipaddress i.e.
if a user was logged in remotely.

Best regards
Henry
4 REPLIES 4
Muthukumar_5
Honored Contributor
Solution

Re: tracing user ipaddress

Use can get ipaddress as,

who -u

specifically,
who -u | awk '{ print $8 }'

HTH.
Easy to suggest when don't know about the problem!
Biswajit Tripathy
Honored Contributor

Re: tracing user ipaddress

# who -R

Last field gives the system name from where the
user has logged in.

- Biswajit
:-)
Adisuria Wangsadinata_1
Honored Contributor

Re: tracing user ipaddress

Hi Henry,

Good day to you !
Check this tread below :

http://forums1.itrc.hp.com/service/forums/questionanswer.do?admit=716493758+1112162618315+28353475&threadId=792729

Hope this can help you.

Cheers,
Adisuria Wangsadinata
now working, next not working ... that's unix
Henry Chua
Super Advisor

Re: tracing user ipaddress

thanks guys!