Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

How can I find out what the mac address of the w-lan accesspoint I'm connected to is?

share|improve this question

1 Answer

up vote 4 down vote accepted

Any of these 3 works:

  • arping 192.168.0.1 Change the IP adress to whatever you use. The MAC address is in the reply between brackets.

  • iwconfig | grep "Access Point". Access point will be colored and behind it the MAC address.

  • iwlist wlan0 scan|grep Address same as previous command (color etc).

share|improve this answer
iwlist wlan0 scan|grep worked, thank you a lot :) – user1392185 Nov 27 '12 at 13:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.