Community discussions

MikroTik App
 
qudama
Frequent Visitor
Frequent Visitor
Topic Author
Posts: 57
Joined: Mon Feb 24, 2014 2:26 am

How to allow specific wireless mac address to connect?

Tue May 20, 2014 1:36 am

Hello,
How to allow specific wireless mac address to connect in my wireless network and i am using RB951G.

for example
mac1
mac2
mac3
are trusted and all other drop

thanks.
You do not have the required permissions to view the files attached to this post.
 
User avatar
rextended
Forum Guru
Forum Guru
Posts: 12652
Joined: Tue Feb 25, 2014 12:49 pm
Location: Italy
Contact:

Re: How to allow specific wireless mac address to connect?

Tue May 20, 2014 1:59 am

Why the photo?
 
qudama
Frequent Visitor
Frequent Visitor
Topic Author
Posts: 57
Joined: Mon Feb 24, 2014 2:26 am

Re: How to allow specific wireless mac address to connect?

Tue May 20, 2014 2:16 am

same thing :D
 
Spirch
Member Candidate
Member Candidate
Posts: 119
Joined: Sat May 03, 2014 5:04 am

Re: How to allow specific wireless mac address to connect?

Tue May 20, 2014 2:34 am

simply put the wireless interface to
arp=reply-only 
then add a dhcp-server
/ip dhcp-server
add add-arp=yes disabled=no interface=interface-WLAN lease-time=10m name=dhcp-server-WLAN
then add some lease
/ip dhcp-server lease
add address=192.168.100.130 address-list=support client-id=1:***** comment="***** Android Phone" mac-address=***** server=dhcp-server-WLAN
add address=192.168.100.131 address-list=support client-id=1:***** comment="***** Laptop" mac-address=***** server=dhcp-server-WLAN
this should do it.. unless i forgot something
 
qudama
Frequent Visitor
Frequent Visitor
Topic Author
Posts: 57
Joined: Mon Feb 24, 2014 2:26 am

Re: How to allow specific wireless mac address to connect?

Tue May 20, 2014 2:43 am

Thanks Spirch ☺
I will try it tomorrow and tell you if worked.