Silly IPFW question.

2007-09-24 Thread Grant Peel
Hi all, I am sorry if this is a no-brainer Is there anyway to make a rule in IPFW that will match MAC addresses instead of IP or port numnbers (and no, I didnt see anything in the docs :-)) -Grant ___ freebsd-questions@freebsd.org mailing

Re: Silly IPFW question.

2007-09-24 Thread Jeff Mohler
Well..where is the mac you want to firewall from/against? On 9/24/07, Grant Peel [EMAIL PROTECTED] wrote: Hi all, I am sorry if this is a no-brainer Is there anyway to make a rule in IPFW that will match MAC addresses instead of IP or port numnbers (and no, I didnt see anything in

Re: Silly IPFW question.

2007-09-24 Thread Mel
On Monday 24 September 2007 23:33:05 Grant Peel wrote: Is there anyway to make a rule in IPFW that will match MAC addresses instead of IP or port numnbers (and no, I didnt see anything in the docs :-)) Generally no, since IP FW works on IP level, not ethernet. That said, I just read about

Re: Silly IPFW question.

2007-09-24 Thread Chuck Swiger
On Sep 24, 2007, at 2:33 PM, Grant Peel wrote: Is there anyway to make a rule in IPFW that will match MAC addresses instead of IP or port numnbers (and no, I didnt see anything in the docs :-)) Search man ipfw for MAC. Something like this will: ipfw add 10 deny MAC any 10:20:30:40:50:60

Re: Silly IPFW question.

2007-09-24 Thread Grant Peel
@freebsd.org Sent: Monday, September 24, 2007 5:34 PM Subject: Re: Silly IPFW question. Well..where is the mac you want to firewall from/against? On 9/24/07, Grant Peel [EMAIL PROTECTED] wrote: Hi all, I am sorry if this is a no-brainer Is there anyway to make a rule

Re: Silly IPFW question.

2007-09-24 Thread RW
On Mon, 24 Sep 2007 17:33:05 -0400 Grant Peel [EMAIL PROTECTED] wrote: Hi all, I am sorry if this is a no-brainer Is there anyway to make a rule in IPFW that will match MAC addresses instead of IP or port numnbers (and no, I didnt see anything in the docs :-)) man ipfw and search

Re: Silly IPFW question.

2007-09-24 Thread Mel
On Monday 24 September 2007 23:44:07 Chuck Swiger wrote: On Sep 24, 2007, at 2:33 PM, Grant Peel wrote: Is there anyway to make a rule in IPFW that will match MAC addresses instead of IP or port numnbers (and no, I didnt see anything in the docs :-)) Search man ipfw for MAC. Something

Re: Silly IPFW question.

2007-09-24 Thread RW
On Mon, 24 Sep 2007 17:47:31 -0400 Grant Peel [EMAIL PROTECTED] wrote: Hi Jeff, I have a client to wants access to mysql on port 3306, but none (4) of his computers have static IPs. So, answer your question, he wants to access from several hops down the (internet) pipe. And I just DID