Locate a user by their IP address


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Locate a user by their IP address
# 1  
Old 05-21-2003
Locate a user by their IP address

We have a user that is sending rather large print jobs to a windows printer, we need to track them down and advise a sensible approach to printing. The only thing that shows up in the windows print manager is the IP address of the source.

Is this achievable?

Smilie
# 2  
Old 05-21-2003
Yes, contact your network administrator and ask them to help you. The person responsible for the network should know the physical location of all network devices, including computers.
# 3  
Old 05-22-2003
On a windows box you can run this command to see who is logged into the offending box if it is a windows box:

nbtstat -A xxx.xxx.xxx.xxx

Like Neo said too, your Net Admins are probably the proper channel to get this info.
# 4  
Old 05-22-2003
when all users are logged in use the 'who' command
Code:
# who
user1       pts/1        May 22 13:31    (x.x.x.x)

# 5  
Old 05-22-2003
The poster seems to want to track down a person, perhaps wants a phone number to call them. Hence, the person to contact is the network administrator and give them the network information the network admin requires to find the physical location of the person.

IP addresses and userids generally do not map to people and phone number without a configuration management process managed by your network admins.

If you work for a company, contact the network administrator for assistance.
# 6  
Old 05-22-2003
Optimus_P has come up with all I need.

% who

is more than sufficent. Most of the Unix users are in the building I am in. I understand that the Admin person should normally be able to help here but our company has 12 domains spaning the entire planet. Big job to find the offending culprit, yeah.

Giving me a PC serial nuber or user ID is more than enough, because we use Exceed and Citrix as our interface to Solaris.

So I can use NET SEND from a DOS prompt, or send a subtle email using the login ID as the email tracer.

Any way thanks for all of you help.

luil pts/78 May 22 18:59 (10.220.12.141:0.0)
chcel pts/128 May 21 22:24 (unix:14.0)
chcel pts/139 May 20 21:07 (unix:31.0)
fosteb1 pts/135 May 18 23:01 (10.220.11.111:0.0)
# 7  
Old 05-22-2003
Quote:
Originally posted by Neo
The poster seems to want to track down a person, perhaps wants a phone number to call them. Hence, the person to contact is the network administrator and give them the network information the network admin requires to find the physical location of the person.

IP addresses and userids generally do not map to people and phone number without a configuration management process managed by your network admins.

If you work for a company, contact the network administrator for assistance.

i understand the function of the net admin. but all usernames should map to a properly filled out gecos field. then you can look the user up in your company address book or send them an email.

a decent unix admin should be able to track down who is connecting to there machine.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

MySQL select user with the same IP address

Dear community, I woul like to make a query to output all the users having the same IP address. The table is somethig like: name logged_ip ==== ========= user1 127.0.0.1 user2 127.0.0.2 user3 127.0.0.3 user4 127.0.0.1 user5 127.0.0.2 user6 127.0.0.5I used this query... (4 Replies)
Discussion started by: Lord Spectre
4 Replies

2. Shell Programming and Scripting

Email sent to multiple user address?

hi all, This is user that i want sent the email: Email = allan@gmail.com bruce8899@gmail.com Chris@gmail.com echo "$dir : $filecount is over the limit $limit " | mailx -s "${SUBJECT}" "${email}" However it cannot sent to 3 user..only sent to 1 user email address. Any 1 can help me... (15 Replies)
Discussion started by: proghack
15 Replies

3. Linux

500 OOPS: vsftpd: cannot locate user specified in 'ftp_username':ftp

I've been fighting this for about a year: vsftp does not work on any of my RedHat Server 5.x systems - I keep getting a variation on 500 OOPS: vsftpd: cannot locate user specified in 'ftp_username':ftp or 500 OOPS: cannot locate user entry:nobody (different errors on different systems). I spent... (0 Replies)
Discussion started by: thomn8r
0 Replies

4. UNIX for Dummies Questions & Answers

Panic kernal-mode address fault on user address 0x14

:) Firstly Hi all!!, im NEW!! and on here hoping that someone might be able to offer me some help... i have a server that keeps crashing every few days with the error message: PANIC KERNAL-MODE ADDRESS FAULT ON USER ADDRESS 0X14 KERNAL PAGE FAULT FROM (CS:EIP)=(100:EF71B5BD) EAX=EF822000... (10 Replies)
Discussion started by: Twix
10 Replies

5. OS X (Apple)

Ho do I masquerade the "user@user.local" address in mail/mailx?

Hi, I'm brand new here and looking for a solution: I'm using mail or mailx. The default reply address is «myshortusername@mylongusername.local» which makes absolutely no sense for anybody receiving my emails. But how do I change it? There seem to be many solutions but none for Mac OS X.... (0 Replies)
Discussion started by: gczychi
0 Replies

6. Ubuntu

500 OOPS: vsftpd: cannot locate user specified in 'ftp_username':ftp

I've been tearing my hair out over this: vsftp does not work on any of my RedHat Server 5.x systems - I keep getting a variation on 500 OOPS: vsftpd: cannot locate user specified in 'ftp_username':ftp or 500 OOPS: cannot locate user entry:nobody (different errors on different systems). I spent... (2 Replies)
Discussion started by: thomn8r
2 Replies

7. UNIX for Dummies Questions & Answers

remote user ip address

can anybody help me to get a remote user ip address in SCO 5.0.5 (5 Replies)
Discussion started by: naushad
5 Replies

8. Programming

Get user name from ip address

hi all i am new in unix programming i want some help from this forum, i want to know how to get user name of other machine in local network from its ip address or suggest any books for networking programming on unix sachin (6 Replies)
Discussion started by: munnu
6 Replies

9. Shell Programming and Scripting

replace <Address> with a var input by user

Hi, All here is not a full version script, just post a sample. #/bin/bash read -p 'Addr: ' addr sed 's/<Address>/'"$addr"'/' pf.mod>$1 If the input string include `/', sed will return error message. I know that s/// can be replaced with s::: or s!!!, etc, but the input var can accept... (4 Replies)
Discussion started by: r2007
4 Replies
Login or Register to Ask a Question