How to check under Linux who is connected to my ad-hoc network

1

1

I made ad-hoc wireless network on my Gentoo workstation using NetworkManager. Is there any way to see what network adapters are connected to this network?

gumik

Posted 2011-10-05T18:59:09.040

Reputation:

Answers

0

netstat should be able to show this.

netstat -aenp | grep 'INSERT_IP_OF_ETH_ADAPTER_HERE'

For example:

[ 12:13 root@host ~ ]# netstat -aenp | grep '10.10.1.11'
tcp        0     52 10.10.1.11:22               198.74.40.169:46429         ESTABLISHED 0          34722586   29599/sshd: jon [pr
tcp        0      0 10.10.1.11:5109             10.10.1.34:62142            ESTABLISHED 505        23721631   28772/istatd
udp        0      0 10.10.1.11:123              0.0.0.0:*                               38         30885053   1611/ntpd
......
......
......

should show who is connected on a certain interface. If you don't know the IP or interface to use, do ifconfig -a and see which is running your ad-hoc network and it should show the IP address.

chown

Posted 2011-10-05T18:59:09.040

Reputation: 1 679

1Thanks for answer. But I would rather want to know what device (mac address) is connected. Above shows connections made through my adapter. – None – 2011-10-05T20:01:30.187