On Wednesday 06 December 2006 02:48, Benjamin Adams wrote:
> I'm on a network that has a normal store firewall, setup as a NAT.
> I'm trying to find a way to monitor all bandwidth by clients through
> that firewall. I don't have the ability to just put an inline box to
> examine packets. Is ther
On Thu, 7 Dec 2006, M. Warner Losh wrote:
We see FreeBSD to FreeBSD NFS feeling fast enough for most things, but
when we do a full build of our system from scratch it takes 10 hours
over NFS vs 1 hour on a local disk.
I have a report that lost dotdot caching seems to be responsible for
most of
maillist ifiaas wrote:
Thanks Randall.
Am I right to say that, in SCTP, the loss information is reported to
the sender, instead of the receiver?
Correct... the sender is notified of the loss... you could
tell the receiver as well.. but the current BSD implementation
does not do this .. the info
M. Warner Losh wrote:
> In message: <[EMAIL PROTECTED]>
> Harti Brandt <[EMAIL PROTECTED]> writes:
> : MWL>Does anybody have experience with using FreeBSD 4.x or 6.x NFS clients
> : MWL>against a Windows 2003 NFS server? What is the performance relative
> : MWL>to using a FreeBSD NFS s
On Thu, 7 Dec 2006, M. Warner Losh wrote:
MWL>In message: <[EMAIL PROTECTED]>
MWL>Harti Brandt <[EMAIL PROTECTED]> writes:
MWL>: MWL>Does anybody have experience with using FreeBSD 4.x or 6.x NFS clients
MWL>: MWL>against a Windows 2003 NFS server? What is the performance relative
MWL
In message: <[EMAIL PROTECTED]>
Harti Brandt <[EMAIL PROTECTED]> writes:
: MWL>Does anybody have experience with using FreeBSD 4.x or 6.x NFS clients
: MWL>against a Windows 2003 NFS server? What is the performance relative
: MWL>to using a FreeBSD NFS server? What is the stability?
On Dec 7, 2006, at 10:54 AM, Ivo Vachkov wrote:
On 12/7/06, Michael Tuexen <[EMAIL PROTECTED]> wrote:
Hi Andre,
see my comments in-line.
Best regards
Michael
SCTP has a extension called PR-SCTP, which is implemented in BSD
and can be used to limit the number of retransmissions of a
DATA ch
In message: <[EMAIL PROTECTED]>
Harti Brandt <[EMAIL PROTECTED]> writes:
:
: Hi Warner,
:
: On Wed, 6 Dec 2006, M. Warner Losh wrote:
:
: MWL>Does anybody have experience with using FreeBSD 4.x or 6.x NFS clients
: MWL>against a Windows 2003 NFS server? What is the performance relat
Hello everybody,
I'm running FreeBSD 6.2-RC1 GENERIC i386 on a lenovo 3000 v100 laptop which
has a Intel 3945 wireless device. I found the driver here
http://people.freebsd.org/~flz/local/wpi/wpi-freebsd-20061109.tgz
This driver was made by Damien Bergamini (merci enormement à lui)
I compiled
Thanks Randall.
Am I right to say that, in SCTP, the loss information is reported to
the sender, instead of the receiver?
Btw, TCP Urel is a option. To use it, you have to add something like,
int rc = setsockopt( inSettings->mSock, IPPROTO_TCP,TCP_URE, (char*)
&val, len );
to enable Urel option
Sveiki,
Yep, it was a problem at the upstream which was seeing the packets
twice and adding them into the pipe twice because of that. There were
no skipto rules at the upstream.
---
HG> Timofej Dod wrote:
>> Hi,
>>
>> I got a firewall with ipfw + dummynet.
>> system is:
>> FreeBS
Timofej Dod wrote:
> Hi,
>
> I got a firewall with ipfw + dummynet.
> system is:
> FreeBSD 6.1-RELEASE-p10
>
> table 1 contains 211 IP addresses.
>
> 00502 pipe 11 ip from any to table(1) out via rl0
> 00502 skipto 2000 ip from any to table(1)
>
> and with pipe configured
> ipfw -q pipe 11 config
maillist ifiaas wrote:
Michael,
In PR-SCTP where retranmission is set off, does it allows the
applications to know which part of data is lost in the stream?
Thanks
Yep.. you subscribe for a notification event and SCTP will
return you the data that was not sent.
So not only does it let you kno
Ivo Vachkov wrote:
On 12/7/06, Michael Tuexen <[EMAIL PROTECTED]> wrote:
Hi Andre,
see my comments in-line.
Best regards
Michael
SCTP has a extension called PR-SCTP, which is implemented in BSD
and can be used to limit the number of retransmissions of a
DATA chunk to 0. The service you men
Andre Oppermann wrote:
[EMAIL PROTECTED] wrote:
How is this different from the recently integrated SCTP?
It doesn't try to retransmit at all. A lost segment is lost and
resending it would be pointless for realtime content. On the other
hand you don't want to blast the network at a fixed ra
maillist ifiaas wrote:
Hi George,
Compare to SCTP, TCP Urel is much simpler. Drawback is the (1) lack of
multihoming, (2) directly implmentation of partial reliabiliity. These
drawbacks, however, allows more flexibility for usage.
hmm... I don't think I agree here :-)
I am not very familiar
Michael,
In PR-SCTP where retranmission is set off, does it allows the
applications to know which part of data is lost in the stream?
Thanks
-gavin
On 12/7/06, Michael Tuexen <[EMAIL PROTECTED]> wrote:
Hi Andre,
see my comments in-line.
Best regards
Michael
On Dec 7, 2006, at 10:01 AM, Andr
On 12/7/06, Michael Tuexen <[EMAIL PROTECTED]> wrote:
Hi Andre,
see my comments in-line.
Best regards
Michael
SCTP has a extension called PR-SCTP, which is implemented in BSD
and can be used to limit the number of retransmissions of a
DATA chunk to 0. The service you mention above is therefo
Hi Andre,
see my comments in-line.
Best regards
Michael
On Dec 7, 2006, at 10:01 AM, Andre Oppermann wrote:
[EMAIL PROTECTED] wrote:
At Wed, 6 Dec 2006 23:09:39 +0800,
maillist ifiaas wrote:
Hi friends,
This is one of my research project. Our purpose is to modify TCP to
support unreliable
Thank you Andre. You explain it clearer than me.
Yes, TCP's interweaving with retransmission scares people from
multimedia streaming point of view. So we find a way to remove
retransmission in TCP.
Acctually it turns out to be easier than it looks. We only add another
750 lines of code in the sour
[EMAIL PROTECTED] wrote:
At Wed, 6 Dec 2006 23:09:39 +0800,
maillist ifiaas wrote:
Hi friends,
This is one of my research project. Our purpose is to modify TCP to
support unreliable but congestion controlled streaming. The
motivation is pretty similar to the one of DCCP CCID2. We have
implemen
Hi Warner,
On Wed, 6 Dec 2006, M. Warner Losh wrote:
MWL>Does anybody have experience with using FreeBSD 4.x or 6.x NFS clients
MWL>against a Windows 2003 NFS server? What is the performance relative
MWL>to using a FreeBSD NFS server? What is the stability? Does locking
MWL>work? Does the Wi
22 matches
Mail list logo