web-dev-qa-db-fra.com

Bloquer l'adresse IP sur le réseau hostapd

Je partage mon accès Internet via hostapd comment puis-je empêcher le client de l'AP d'accéder à une certaine adresse IP?

1
Youssef Bouhjira

Hostapd ne traite pas les adresses IP, mais vous pouvez restreindre les identifiants de votre station.

# Station MAC address -based authentication
# Please note that this kind of access control requires a driver that uses
# hostapd to take care of management frame processing and as such, this can be
# used with driver=hostap or driver=nl80211, but not with driver=madwifi.
# 0 = accept unless in deny list
# 1 = deny unless in accept list
# 2 = use external RADIUS server (accept/deny lists are searched first)
macaddr_acl=1

# Accept/deny lists are read from separate files (containing list of
# MAC addresses, one per line). Use absolute path name to make sure that the
# files can be read on SIGHUP configuration reloads.
accept_mac_file=/etc/hostapd/hostapd.accept
# deny_mac_file=/etc/hostapd/hostapd.deny

Habituellement hostapd.accept est suffisant pour restreindre l'accès.

2
user224465