On Sun, May 11, 2008 at 7:28 AM, Didier Wiroth <[EMAIL PROTECTED]> wrote:
> hello,
> I'm using a ral wireless interface in host ap with wpa:
> $ ifconfig ral0
> ral0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
> lladdr 00:
> groups: wlan
> media: IEEE802.11 autoselect mode 11g hostap
> status: active
> ieee80211: nwid wifi2 chan 2 bssid 00:12:0e:61:80:6c wpapsk
> <not displayed> wpaprotos wpa2 wpaakms psk,802.1x wpaciphers tkip,ccmp
> wpagroupcipher tkip 100dBm
> inet6 fe80::212:eff:fe61:806c%ral0 prefixlen 64 scopeid 0x5
> inet 192.168.0.1 netmask 0xffffff00 broadcast 192.168.0.255
>
> Is it possible to use a MAC filter in this mode?
> What is the easiest way to implement a MAC filter in host ap mode?
If you are using DHCPD to serve address you can manually add mac
address and IP served. And then don't have a range of IPs for set for
the shared-network since you are manually adding them.
man dhcpd
host haagen {
hardware ethernet 08:00:2b:4c:59:23;
fixed-address 239.252.197.9;
filename "haagen.boot";
option domain-name-servers 192.5.5.1;
option domain-name "vix.com";
}
You will be doing something very similar to this.
Jonathan