Networking Forums

Networking Forums > Network Hardware > Home Networking > How can I filter Mac addresses ?

Reply
Thread Tools Display Modes

How can I filter Mac addresses ?

 
 
Jim
Guest
Posts: n/a

 
      09-23-2004, 01:41 PM
How can I filter Mac addresses ?

anyone know where I can get buy a cheap router or device to filter
[access] mac addresses.

I need to allow a pool of mac addresses [users] through to the gateway.
and block any other mac's.
Im using fixed ip and a DHCP pool on the network.

I know its possible with a Linux machine but I need something more admin
friendly such as a web interface on a router.

I havent found an easy way using a PC and windows, but windows is not
reliable.

We do have Cisco switches which I find too complicated to set up a mac
filter system. There also in the wrong path.


Thanks for any replies

 
Reply With Quote
 
 
 
 
Alex Fraser
Guest
Posts: n/a

 
      09-23-2004, 03:01 PM
"Jim" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> How can I filter Mac addresses ?
>
> anyone know where I can get buy a cheap router or device to filter
> [access] mac addresses.


A Linux box...

> I need to allow a pool of mac addresses [users] through to the gateway.
> and block any other mac's.
> Im using fixed ip and a DHCP pool on the network.
>
> I know its possible with a Linux machine but I need something more admin
> friendly such as a web interface on a router.


More "admin friendly" than a text file of MAC addresses? All you'd need
would be something like the following (untested) in the firwall script:

# Flush FORWARD chain and set policy to DROP
iptables -F FORWARD
iptables -P FORWARD DROP

# Forward everything that made it so far from eth0
iptables -A FORWARD -i eth0 -j ACCEPT

# Forward everything that made it so far from eth1, if the source MAC
# address appears in /path/to/maclist
for MAC in `cat /path/to/maclist`; do
iptables -A FORWARD -i eth1 --mac-source $MAC -j ACCEPT
done

> We do have Cisco switches which I find too complicated to set up a mac
> filter system. There also in the wrong path.


Doing it with a switch makes more sense, really.

Alex


 
Reply With Quote
 
Dr Zoidberg
Guest
Posts: n/a

 
      09-23-2004, 04:15 PM
Jim wrote:
> How can I filter Mac addresses ?
>
> anyone know where I can get buy a cheap router or device to filter
> [access] mac addresses.
>
> I need to allow a pool of mac addresses [users] through to the
> gateway. and block any other mac's.
> Im using fixed ip and a DHCP pool on the network.
>
> I know its possible with a Linux machine but I need something more
> admin friendly such as a web interface on a router.
>
> I havent found an easy way using a PC and windows, but windows is not
> reliable.
>
> We do have Cisco switches which I find too complicated to set up a mac
> filter system. There also in the wrong path.
>
>

My Belkin wireless router allows MAC address filtering.

--
Alex

"We are now up against live, hostile targets"

"So, if Little Red Riding Hood should show up with a bazooka and a bad
attitude, I expect you to chin the bitch! "

www.drzoidberg.co.uk
www.ebayfaq.co.uk


 
Reply With Quote
 
THe NuTTeR
Guest
Posts: n/a

 
      09-23-2004, 09:56 PM

"Dr Zoidberg" <AlexNOOOOO!!!!@drzoidberg.co.uk> wrote in message
news:(E-Mail Removed)...
> Jim wrote:
>> How can I filter Mac addresses ?
>>
>> anyone know where I can get buy a cheap router or device to filter
>> [access] mac addresses.
>>

> My Belkin wireless router allows MAC address filtering.
>

Probably only on the wireless side tho, its a standard thing in
wireless. I could be wrong, but I set one up with MAC security, and
don't remember having to add the wired PC
G


 
Reply With Quote
 
Dr Zoidberg
Guest
Posts: n/a

 
      09-24-2004, 06:38 AM
THe NuTTeR wrote:
> "Dr Zoidberg" <AlexNOOOOO!!!!@drzoidberg.co.uk> wrote in message
> news:(E-Mail Removed)...
>> Jim wrote:
>>> How can I filter Mac addresses ?
>>>
>>> anyone know where I can get buy a cheap router or device to filter
>>> [access] mac addresses.
>>>

>> My Belkin wireless router allows MAC address filtering.
>>

> Probably only on the wireless side tho, its a standard thing in
> wireless. I could be wrong, but I set one up with MAC security, and
> don't remember having to add the wired PC


It claims to be for both wired and wireless.
Its on a separate config page to the wireless setup

--
Alex

"We are now up against live, hostile targets"

"So, if Little Red Riding Hood should show up with a bazooka and a bad
attitude, I expect you to chin the bitch! "

www.drzoidberg.co.uk
www.ebayfaq.co.uk


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
"Call filter" and "Data filter", firewall clarification wanted please tinnews@isbd.co.uk Home Networking 2 04-15-2008 09:16 AM
What is Anti-Spam Filter.(thunderbird spam filter) zak07000 Broadband 0 03-27-2008 03:41 PM
DHCP Server Leasing Addresses to MAC Addresses of 00-00-00-00-00-00 nomorespameventhoughthejapanesespamgivesmeachuckle Linux Networking 9 12-05-2006 09:49 PM
How can I filter Mac addresses ? Jim Windows Networking 1 09-29-2004 05:49 AM
Static Ip's and BT - I have just recieved A BT router with 5 static IP Addresses. However, I want 5 computers in the office to use only one of the addresses. ery Difficult Question Nattasian Broadband 3 07-13-2004 08:55 AM



1 2 3 4 5 6 7 8 9 10 11