similar to: Multiple Tinc servers HA cross multiple regions

Displaying 20 results from an estimated 700 matches similar to: "Multiple Tinc servers HA cross multiple regions"

2009 Mar 22
2
GraphDumpFile - Feature request
Hi Guus, I've been a huge fan of the GraphDumpFile parameter in tinc -- it certainly beats sending USR2 to tincd, and ploughing through syslog to figure out which nodes are connected. Could I request that GraphDumpFile dumps a little more data to the file, namely, the subnet; changing the output file from (for example): digraph { nodeA [label = "nodeA"];
2015 Jun 11
2
tinc as layer 2 switch doesn't automatically mesh with other nodes
We have a handful of nodes set up. Some are NAT'd but a few have direct access to the Internet. Sample confs: HostA: Name = HostA AddressFamily = any Interface = tap0 Mode = switch Connectto = HostB GraphDumpFile = /tmp/mesh HostB: Name = HostB AddressFamily = any Interface = tap0 Mode = switch Connectto = HostA GraphDumpFile = /tmp/mesh And so on. If I use HostA as the main meta sever.
2015 Jun 11
0
tinc as layer 2 switch doesn't automatically mesh with other nodes
tinc uses direct UDP communication for performance, not reliability. If you want to establish more metaconnections for increased reliability, you can use AutoConnect (though it probably won't work across NATs). A better solution is to use two central nodes (instead of one) for redundancy. On 11 June 2015 at 18:59, Daniel J. Grinkevich <danielgrinkevich at gmail.com> wrote: > If we
2013 Dec 15
1
graphviz
Hi, I propose that the "ad-hoc connections" (localdiscovery) are also displayed in the graph (graphdumpfile) as it is useful for debugging. I find the command-line tooling a bit cumbersome to find out where the problem is - maybe a web-interface can be added to tincd? Implementing a http server is trivial I found out. Folkert van Heusden -- Curious about the inner workings of your
2011 Mar 23
1
Tinc graph and label info.
Hi, I use tinc with the option GraphDumpFile=/etc/tinc/ci00036/grapd.dot In the graph there is the label section: ci00036 [label = "ci00036"]; ci00037 [label = "ci00037"]; ci00038 [label = "ci00038"]; Is there an option to set the label in the tinc config file or host file to a custom text ? Something that is easy to read and has some meaning
2002 Oct 09
0
parent and hierarchy problems with cbq.init
Hello Everyone :), i''m using cbq.init version 7.1 for traffic shaper, the rule did work well with flat rule (without parent/child)..here the condition of my network : - have a DMZ (and i not want the traffic to DMZ be bounded) - i made the CBQ engine also a bridge and i put it before NAT server (so if
2019 Aug 26
0
[Announcement] Tinc version 1.0.36 released
With pleasure we announce the release of tinc versions 1.0.36. Here is a summary of the changes in tinc 1.0.36: * Fix compiling tinc with certain versions of the OpenSSL library. * Fix parsing some IPv6 addresses with :: in them. * Fix GraphDumpFile output to handle node names starting with a digit. * Fix a potential segmentation fault when fragmenting packets. Thanks to Rosen Penev, Quentin
2019 Aug 26
0
[Announcement] Tinc version 1.0.36 released
With pleasure we announce the release of tinc versions 1.0.36. Here is a summary of the changes in tinc 1.0.36: * Fix compiling tinc with certain versions of the OpenSSL library. * Fix parsing some IPv6 addresses with :: in them. * Fix GraphDumpFile output to handle node names starting with a digit. * Fix a potential segmentation fault when fragmenting packets. Thanks to Rosen Penev, Quentin
2010 Apr 14
1
ipv6 via tinc
Hi, At my provider (xs4all) I've got an ipv6 tunnel working. Now I would like to distribute ipv6 via the tinc tunnel. My tinc.conf: ------------ Name=server AddressFamily=ipv4 Device=/dev/net/tun PrivateKeyFile=/etc/tinc/fvhglobalnet/rsa_key.priv GraphDumpFile=|/usr/bin/dot -Tpng -o /var/www/htdocs.keetweej.vanheusden.com/stats/tinc-fvh-network-graph.png Mode=switch KeyExpire=299
2013 Oct 21
2
Very slow network speed using Tinc
Hi all, We are using Tinc 2.0.22 as a layer 2 VPN between nodes over the Internet. We are experiencing very slow network speed using Tinc. Between 2 nodes, we have 150 Mbit/s network speed without Tinc (public IPv4 to public IPv4 using iperf), and only 3 Mbit/s using Tinc (private IPv4 to private IPv4). Here is the configuration of Tinc we use : AddressFamily = ipv4 BindToInterface = vmbr1
2018 Apr 30
1
Slow Speed
Hi, I´m using Tinc for several years, but I didn´t fix a performance problem. There a about 20 nodes in this network. Master: 10.0.0.12 (dedicated host in a datacenter, debian, 100mBit port) tinc.conf: Name = TincKnoten12 AddressFamily = ipv4 Interface = tun ProcessPriority=high mode = router #DirectOnly = no Compression=0 PMTUDiscovery = yes #IndirectData = yes #ReplayWindow = 64 #ConnectTo
2014 Feb 25
3
PMTU = 1518 over local network at 1500 MTU
Hi all, I have two nodes, connected to a switch, using Tinc 1.1 from git. They connect each other with sptps, and to other nodes in the Internet with old protocol because they have Tinc 1.0. There is no problem with remote nodes, but between my 2 local nodes, they see 1518 PMTU. But local network is 1500 MTU !!! So nodes can ping each other but larger data does not go. test1=sllm1 test2=sllm2
2016 Jan 22
2
Having more info, like the ip address of the vpn nodes in the xdot graph file of tinc
Hello, I am using tinc's feature to dump a graph of the vpn extensively to view the machines which are currently part of the vpn. In my tinc.conf I have this: GraphDumpFile = /tmp/tinc-graph Then I have a desktop starter that executes /usr/bin/xdot /tmp/tinc-graph to open the graph. I would love to have the ip addresses of the vpn ips of the tinc nodes in that graph, e.g. if one tinc node
2015 Apr 06
2
Strange tinc behavior on OSX Yosemite
Hi, I have already working set of tinc nodes and tried to add one more machine, mac mini with osx yosemite onboard. Tincd starts and connects to other nodes as supposed but I can't connect to mini from any of other nodes. When I try to use ssh the following lines appears repeatedly in mini's logs along with the regular logs about making connections and MTU probes: > Got PACKET from
2020 Apr 15
1
Re: [PATCH nbdkit 4/9] common/regions: Use new vector type to store the list of regions.
On 4/15/20 11:16 AM, Richard W.M. Jones wrote: > A fairly straightforward replacement, but note that we must rename all > variables called ‘regions’ as something else (eg. ‘rs’) because > -Wshadow warns about them (which is surprising to me since I thought > this warning only applied to local vs global variable, not local > variable vs global typedef). > > Also I got rid of
2012 Jun 03
1
Regions of significance plots with ggplot2
I'd like to create a plot similar to this one from Kochanska et al. (Development and Psychopathology, 2011): <http://pages.videotron.com/do999/r-help/Kochanska_graph_ros.jpg> http://pages.videotron.com/do999/r-help/Kochanska_graph_ros.jpg I am new to ggplot2 and can't see any obvious way to create distinct coloured regions for the background, nor can I find any relevant
2011 Aug 12
1
Extract named regions from an Excel file using XLConnect?
Hi Everybody In R, the XLConnect package can read and write named region to and from Excel. In order to read a named region with the readNamedRegion function you need to know it's name. You can check is a name exists with existsName, but you still have to know the name. Is there a way to actually get a list of the named regions in XLConnect sinilar to getRanges in the xlsx package. On that
2011 May 13
0
Coloring Continents/Regions of World Map
Dear All, This may be a silly question, but I have tried searching through a few of the existing threads already, and haven't found any information on this. I am trying to color code entire continents/regions (Asia, North America, Africa, etc.) based on the number of relevant companies. The data would look like: World Location Companies North America 4848 Western Europe 1972 East Asia
2018 May 15
0
find common regions between two kinds of tests
Dear R community, For 100 sites at human chromosomes, I ran two tests, one is to consider an experiment measurement as a continuous variable, so doing multiple regression; the other is to compare top 25% samples to bottom 25% samples based on values of the measured variable, so categorical analysis. A total of 16 sites show significance; In the following results, I only show five variables (
2008 Jan 10
1
[LLVMdev] Multi basic block regions
The open projects page at <http://llvm.org/OpenProjects.html> lists superblock formation as a possible idea for profile-guided transformations. Is anyone working on formation of regions consisting of multiple basic blocks? I don't recall any posts on llvmdev to that effect. It would be quite useful to have a general facility for grouping basic blocks within a function, as that could be