Re: QOLSR

2004-06-15 Thread Christophe Prevotaux
I am also very interested in this however I know no one who is porting it. On Tue, 15 Jun 2004 09:40:11 +1000 (EST) User Ernie [EMAIL PROTECTED] wrote: Anybody tried to port QOLSR across to FreeBSD? http://qolsr.lri.fr/desc/qolsr.html It's basically OLSR with QoS, looks very

Re: Using netgraph for filtering/modifing packets

2004-06-15 Thread Paul Schenkeveld
On Mon, Jun 14, 2004 at 01:28:06PM -0400, James Housley wrote: Julian Elischer wrote: On Mon, 14 Jun 2004, James Housley wrote: For testing of a product I would like to be able to modify or even drop packets based on their content. What I have in mind is forcing the packets through a

Re: Using netgraph for filtering/modifing packets

2004-06-15 Thread Ruslan Ermilov
On Mon, Jun 14, 2004 at 01:51:15PM -0500, Jon Noack wrote: You can simulate a lossy link with dummynet. A week or so ago, I've written a simple ng_drop(4) module which drops packets with a programmed probability. If this is of any interest to anyone, let me know. There's also a thingie

Re: 100mhz Wavelab on -current PCI and PCCARD.

2004-06-15 Thread Roman Kurakin
Hi, We use SMC cards, and SMS hubs (they have a couple of normal ports). I didn't heard about problems with pccard variant and hubs works just fine. But pci cards works unstable.Since I do not work in that segment and I don't have any in my PCs I can't say why we have problems with them. rik

Re: QOLSR

2004-06-15 Thread Richard Neese
I am looking at it now. seeing what I can do... Will give you headsp in the next few days.. ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: QOLSR

2004-06-15 Thread Christophe Prevotaux
It seems the QOS part of it has not been released yet. On Tue, 15 Jun 2004 11:52:07 -0400 Richard Neese [EMAIL PROTECTED] wrote: I am looking at it now. seeing what I can do... Will give you headsp in the next few days.. -- ===

Bridging Code - MAC Filtering

2004-06-15 Thread Aldrin Leal
Hello, Does the bridging code in FreeBSD 5.2-RELEASE have the hability to perform mac checking for a given IP? If it doesn't, does any kernel hacker could point me to places where i could do it myself? Maybe proper pointers on debugging the bridging facilities, tips, general guidance

Re: Bridging Code - MAC Filtering

2004-06-15 Thread Jose Hidalgo Herrera
I use arpwatch to monitor IPs, because I filter everything via IP address(ipfw) so if any user plays hacker I'm gonna kick his xxx : - ) On Tue, 2004-06-15 at 12:57, Aldrin Leal wrote: Hello, Does the bridging code in FreeBSD 5.2-RELEASE have the hability to perform mac checking for a

Re: Bridging Code - MAC Filtering

2004-06-15 Thread Bruce M Simpson
On Tue, Jun 15, 2004 at 03:57:12PM -0300, Aldrin Leal wrote: Does the bridging code in FreeBSD 5.2-RELEASE have the hability to perform mac checking for a given IP? Please don't cross-post. You need to look at ipfw2 or pf's layer 2 filtering capabilities; this isn't a function of the

Re: Bridging Code - MAC Filtering

2004-06-15 Thread Jeremie Le Hen
Does the bridging code in FreeBSD 5.2-RELEASE have the hability to perform mac checking for a given IP? Since you can filter bridged packets using ipfw(8) and the latter is able to match against MAC address, I would say yes. Nevertheless, it may not be suitable enough for your needs,

Re: Bridging Code - MAC Filtering

2004-06-15 Thread David Malone
On Tue, Jun 15, 2004 at 03:57:12PM -0300, Aldrin Leal wrote: Does the bridging code in FreeBSD 5.2-RELEASE have the hability to perform mac checking for a given IP? You could use ipfw2, which can match both on IP address and MAC address. David.