Displaying 6 results from an estimated 6 matches for "udprcvbuf".
Did you mean:
udp_rcvbuf
2020 Jan 13
0
UDPbuffer adjustment
Hi,
Saw the below config from tinc’s manual:
UDPRcvBuf = bytes (OS default)
Sets the socket receive buffer size for the UDP socket, in bytes. If unset, the default buffer size will be used
by the operating system.
UDPSndBuf = bytes (OS default)
Sets the socket send buffer size for the UDP socket, in bytes....
2016 Feb 22
2
Tinc 1.0 - Limit Bandwidth
...sume 100Kbps bandwidth
(Send and Receive). I am not sure if I am setting the right option under
its main configuration file (tinc.conf) . Will these options serve my
purpose? I have set them up but the Tunnel Adapter (running on Windows)
still consumes all the bandwidth available.
================
UDPRcvBuf = 12500
UDPSndBuf = 12500
================
Regards
Yazeed
<yazeedfataar at hotmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.tinc-vpn.org/pipermail/tinc/attachments/20160222/98dcfd92/attachment.html>
2010 Nov 13
3
[PATCH 1/4] Experimental IFF_ONE_QUEUE support for Linux
---
doc/tinc.conf.5.in | 3 +++
src/linux/device.c | 7 +++++++
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/doc/tinc.conf.5.in b/doc/tinc.conf.5.in
index 2bfd5fe..01f7f81 100644
--- a/doc/tinc.conf.5.in
+++ b/doc/tinc.conf.5.in
@@ -255,6 +255,9 @@ a lookup if your DNS server is not responding.
This does not affect resolving hostnames to IP addresses from the
host
2015 Dec 30
2
Self-DoS
...then start them sequentially and delayed or this "perfect storm" starts all over again.
The overall configuration is switch mode, with mixed IPv4 and IPv6 host addressing. Otherwise config is empty with these tweaks added to attempt mitigating the issue (with no success):
PingTimeout=15
UDPRcvBuf=8388608
UDPSndBuf=8388608
ProcessPriority=high
The daemon was upgraded to vanilla built 1.0.26 on all but two nodes before the most recent event. Host OS is Debian based, ranging from Squeeze to Jessie and few Ubuntu Trusty, with their respective stock kernels.
Also, I have tried firewalling the...
2016 Feb 22
0
Tinc 1.0 - Limit Bandwidth
...bandwidth
> (Send and Receive). I am not sure if I am setting the right option under
> its main configuration file (tinc.conf) . Will these options serve my
> purpose? I have set them up but the Tunnel Adapter (running on Windows)
> still consumes all the bandwidth available.
>
> UDPRcvBuf = 12500
> UDPSndBuf = 12500
No, these options only control the size of some buffers, it has no direct
impact on bandwidth. There is no bandwidth limiting feature in tinc. You
can use other programs to do this for you. For Windows, have a look at
this page:
https://superuser.com/questions/13571...
2015 Dec 31
0
Self-DoS
...thout problems (even on underpowered hardware, like routers running
OpenWRT).
> The overall configuration is switch mode, with mixed IPv4 and IPv6 host addressing. Otherwise config is empty with these tweaks added to attempt mitigating the issue (with no success):
>
> PingTimeout=15
> UDPRcvBuf=8388608
> UDPSndBuf=8388608
> ProcessPriority=high
Apart from PingTimeout, the other options will not help. Increasing
PingTimeout may indeed prevent tinc from prematurely closing
connections in case of congestion.
> Also, I have tried firewalling the incoming UDP traffic on most nodes,...