RE: urgent question regarding IP-in-IP encapsulation

2002-01-17 Thread Kshitij Gunjikar
Hi Radhika, It's not clear what is not working correctly. The encapsulation, the forwarding ? Also, please ensure that the interface you are forwarding to supports multicasting and you put the source address of the outgoing interface. Regards Kshitij -Original Message- From: [EMAIL PROT

RE: ICMP Redirect

2002-01-17 Thread Reto Trachsel (NetModule)
Hi Crist Hi, i'll describe a little more in detail: "Router"FreeBSD-4.5-RC Machine, configured as Router with multiple aliases on a interface "WinHost" A Client machine with Windows 2000 "BSDHost" A FreeBSD-Current machine Sysctl settings on Router and BSDHost: net.inet.ip.

Re: ICMP Redirect

2002-01-17 Thread Crist J . Clark
On Thu, Jan 17, 2002 at 10:15:11AM +0100, Reto Trachsel (NetModule) wrote: > Hi Crist > > Hi, i'll describe a little more in detail: > > "Router" FreeBSD-4.5-RC Machine, configured as Router with multiple > aliases on a interface > "WinHost" A Client machine with Windows 2000 > "BSDHost

RE: ICMP Redirect

2002-01-17 Thread Reto Trachsel (NetModule)
Hi Crist Here the Logs and outputs for you Regards Reto # tcpdump -vvXs 1500 'icmp' 172.16.224.24 -> BSD Host 172.16.1.254 -> BSD Router 12:00:43.658869 172.16.1.254 > 172.16.224.24: icmp: redirect 172.24.0.2 to host 172.16.1.252 for 172.16.224.24 > 172.24.0.2: icmp: echo request (t

Re: urgent question regarding IP-in-IP encapsulation

2002-01-17 Thread mark tinguely
> I have a question regarding Ip-in-IP encapsulation in > freeBSD. In my implementation, I want a multicast > router to encapsulate multicast packets destined for > certain groups with an extra IP header before > forwarding them out. What you describe is exactly a DVMRP tunnel. mrouted(8) p

netgraph: how to setsockopt on ksocket node ?

2002-01-17 Thread Florent Parent
Anyone has an example on how to setsockopt on a ksocket node in netgraph? struct opts { int level; int name; int value; } myopts = { SOL_SOCKET, SO_REUSEADDR, 1 }; ret = NgSendMsg(cs, epath, NGM_KSOCKET_COOKIE, NGM_KSOCKET_SETOPT,

dummynet byte counters

2002-01-17 Thread Luigi Rizzo
Hi, i got request from some people on how can i know how many bytes were used by a dummynet pipe -- essentially i guess for accounting reasons, or to export these values with mrtg as some people do, etc. For this to work you would need to count packets and bytes coming out of the queue. But at th

interface creation notification

2002-01-17 Thread Harti Brandt
Hi, how is a daemon supposed to get informed that a network interface has been created? I had hoped, that an RTM_IFINFO message would be created on the routing socket, but this is not the case. If an interface is destroyed, the routing socket gets a message for whatever reason. Wouldn't it be si

Re: netgraph: how to setsockopt on ksocket node ?

2002-01-17 Thread Rogier R. Mulhuijzen
>ret = NgSendMsg(cs, epath, NGM_KSOCKET_COOKIE, NGM_KSOCKET_SETOPT, > (struct ng_ksocket_sockopt *)&myopts, > sizeof(myopts))); > >return error 14 "Bad address". Could it be that your path to the node is not correct? (missing a : maybe...?) Doc To Unsubs

Re: netgraph: how to setsockopt on ksocket node ?

2002-01-17 Thread Florent Parent
--On 2002-01-17 19:11:45 +0100 [EMAIL PROTECTED] wrote: > >>ret = NgSendMsg(cs, epath, NGM_KSOCKET_COOKIE, NGM_KSOCKET_SETOPT, >> (struct ng_ksocket_sockopt *)&myopts, >> sizeof(myopts))); >> >> return error 14 "Bad address". > > Could it be that your path to the no

which 802.11b card for 4.4?

2002-01-17 Thread Lars Eggert
Hi, we're looking to buy a bunch of 802.11b cards that need to work under FreeBSD-4.4 (soon 4.5) with 128bit WEP and Cisco access points (which are not under our direct administration). The cheapest right now seems to be the "Netgear MA401NA 802.11b Wireless PC Card" ($49 at Outpost.com) - but p

Re: which 802.11b card for 4.4?

2002-01-17 Thread Brooks Davis
On Thu, Jan 17, 2002 at 11:51:21AM -0800, Lars Eggert wrote: > we're looking to buy a bunch of 802.11b cards that need to work under > FreeBSD-4.4 (soon 4.5) with 128bit WEP and Cisco access points (which > are not under our direct administration). > > The cheapest right now seems to be the "Netg

Re: netgraph: how to setsockopt on ksocket node ?

2002-01-17 Thread Julian Elischer
archie is Mr ksocket. On Thu, 17 Jan 2002, Florent Parent wrote: > > > --On 2002-01-17 19:11:45 +0100 [EMAIL PROTECTED] wrote: > > > > >>ret = NgSendMsg(cs, epath, NGM_KSOCKET_COOKIE, NGM_KSOCKET_SETOPT, > >> (struct ng_ksocket_sockopt *)&myopts, > >> sizeof(myop

IPNAT -- Can't send file thru it with any instant messengers.....

2002-01-17 Thread Dominic Blais
Hi! I'm using IPNAT in order to split many local IPs over 5 external IPs. I can receive ICQ or MSN file transfers but I can't send any of those thru the NAT I have a friend which uses natd and he can send/receive files without any problems So.. I'm just wondering what's the big di

Re: netgraph: how to setsockopt on ksocket node ?

2002-01-17 Thread Archie Cobbs
Florent Parent writes: > Anyone has an example on how to setsockopt on a ksocket node in netgraph? > > struct opts { > int level; > int name; > int value; > } myopts = { SOL_SOCKET, SO_REUSEADDR, 1 > }; > > ret = NgSendMsg(cs, epath, NGM_KSOCKET_COOKIE, NG

Re: netgraph: how to setsockopt on ksocket node ?

2002-01-17 Thread Florent Parent
--On 2002-01-17 18:16:08 -0800 [EMAIL PROTECTED] wrote: > Florent Parent writes: >> Anyone has an example on how to setsockopt on a ksocket node in netgraph? >> >> struct opts { >> int level; >> int name; >> int value; >> } myopts = { SOL_SOCKET, SO_REUSEADDR, 1