Jul 6, 2001 #1 andyraff Technical User Joined Feb 20, 2001 Messages 10 Location GB I need to trace the ip address of a process
Jul 6, 2001 #2 crowe Technical User Joined Jun 12, 2001 Messages 255 Location US Find out who owns the process check to see where they logged in from perform a traceroute. ps-ef|grep process who -u OR last username|pg traceroute 192.168.1.1 (whatever IP address really is) crowe Upvote 0 Downvote
Find out who owns the process check to see where they logged in from perform a traceroute. ps-ef|grep process who -u OR last username|pg traceroute 192.168.1.1 (whatever IP address really is) crowe
Jul 6, 2001 #3 IPconfig Technical User Joined Jun 9, 2001 Messages 41 Location UG well you see you have many ways of doing this ..let me break down a couple of ways netstat -p lsof both these commands let you know what ipaddress and port number are used by that proccess then you have other commands like lsof -i :<portnumber> this will tell you what is listening on that port or what is going through that port i hope this helps Upvote 0 Downvote
well you see you have many ways of doing this ..let me break down a couple of ways netstat -p lsof both these commands let you know what ipaddress and port number are used by that proccess then you have other commands like lsof -i :<portnumber> this will tell you what is listening on that port or what is going through that port i hope this helps