Jul 6, 2001 #1 andyraff Technical User Feb 20, 2001 10 GB I need to trace the ip address of a process
Jul 6, 2001 #2 crowe Technical User Jun 12, 2001 255 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 Jun 9, 2001 41 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