Finding IP address of a user on ur network
we can use netstat command to find out who is actually present on our network.
use netstat -a.
netstat -f will give fully qualified domain names
But i want to know what is the ip address of some user.
for example after using netstat -f i got
Proto Local Address Foreign Address State
TCP 127.0.0.1:49948 SPL-PC:49949 ESTABLISHED
Now i want to know the ip address of this SPL-PC:49949.
Is this possible ?😀