search for: grinkevich

Displaying 12 results from an estimated 12 matches for "grinkevich".

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 Nov 16
2
Upcoming Tinc Talk at FOSSETCON 2015
Yes, slides will be available afterwards. Additionally, a very similar talk will be presented at SCALE this year as well. Do you have any more info about how tinc is used by NYC mesh? Ben On Sun, Nov 15, 2015 at 3:55 PM, Daniel J. Grinkevich < danielgrinkevich at gmail.com> wrote: > Will the slides be posted after the talk? > > We use tinc for NYC Mesh to connect nodes that do not have line of sight. > > Dan > > On Sun, Nov 15, 2015 at 6:47 PM, Benjamin Kero <ben.kero at gmail.com> wrote: > >>...
2015 Jun 11
0
tinc as layer 2 switch doesn't automatically mesh with other nodes
...ion 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 have one meta node and it goes offline none of the other nodes can > talk to each other. I was under the assumption the mesh would stay up of > that happens. > > We are using tinc strictly as a layer 2 switch, no IP addresses assi...
2016 Jan 29
2
respawning dead tinc process
...exec /usr/sbin/tincd -n "$network" -D --debug=3 --logfile ``` I removed the default init script and switched over to Upstart. Restarts will occur as soon as the process dies. Save the job as ?/etc/init/tinc.conf?. From: tinc [mailto:tinc-bounces at tinc-vpn.org] On Behalf Of Daniel J. Grinkevich Sent: Friday, January 29, 2016 8:25 AM To: tinc at tinc-vpn.org Subject: Re: respawning dead tinc process This is what we use on our routers, running once a minute via crontab. if pgrep "tincd" >/dev/null; then echo "tincd is running" else echo "tincd isn't run...
2015 Sep 07
1
Asymmetric routing and firewalls dropping UDP packets
We are running tinc (v. 1.0.26) in switch mode with bmx6 (another mesh protocol) running on top of the tap0 interface on about 25 devices. The asymmetric routing of UDP packets is causing my firewall and I presume others to drop some of the packets, since there are no outbound SYN packets originating from the device running tinc. Is there any way to mitigate this issue besides enabling tcponly
2016 Jan 29
0
respawning dead tinc process
...> ``` > > I removed the default init script and switched over to Upstart. Restarts will occur as soon as the process dies. Save the job as ?/etc/init/tinc.conf?. > > From: tinc [mailto:tinc-bounces at tinc-vpn.org <mailto:tinc-bounces at tinc-vpn.org>] On Behalf Of Daniel J. Grinkevich > Sent: Friday, January 29, 2016 8:25 AM > To: tinc at tinc-vpn.org <mailto:tinc at tinc-vpn.org> > Subject: Re: respawning dead tinc process > > This is what we use on our routers, running once a minute via crontab. > > if pgrep "tincd" >/dev/null; then &g...
2015 Nov 15
2
Upcoming Tinc Talk at FOSSETCON 2015
Hi tincfolks, I'd like to announce that we're planning a talk [1] about tinc and some of the uses that we've developed for it. It'll be given at FOSSETCON 2015 [2] in Orlando, Florida on Nov 19-21. If anybody is in the area, please consider attending. Ben [1] http://www.fossetcon.org/2015/sessions/secure-peer-networking-tinc [2] http://www.fossetcon.org/ -------------- next part
2016 Jan 29
2
respawning dead tinc process
I have tinc 1.1pre11 running on various routers and linux cloud servers. On one of the cloud servers, under Ubuntu 12.04, tinc is mysteriously dying once in a while, leaving a dangling PID. I have been unable to track down why it is dying, but it happens infrequently enough that I care less about why it is dying than how to robustly respawn it when it dies. Before I re-invent the wheel, has
2015 Jul 22
0
Please help debug Windows setup
Thanks. I played with it some more, and finally got it working. I am willing to write up a detailed how-to, including screen shots, if you guys are interested. Just tell me in what format you want the write-up. Cheers, From: Daniel J. Grinkevich Sent: Wednesday, July 22, 2015 7:26 AM To: tinc at tinc-vpn.org Subject: RE: Please help debug Windows setup Your port forward needs to point to the ip address of the ethernet interface not the tap interface. Also, the subnet you are using for the VPN are public addresses. You should use differe...
2015 Aug 18
0
Way to verify the public key?
I have tried various openssl commands. Does anyone know a way to use openssl to verify the public key is an actual key? Thanks, Dan -- --- GPG Key: 0x160B24D1C08FB4E4 <https://pgp.mit.edu/pks/lookup?op=get&search=0x160B24D1C08FB4E4> -------------- next part -------------- An HTML attachment was scrubbed... URL:
2015 Nov 15
0
Upcoming Tinc Talk at FOSSETCON 2015
Will the slides be posted after the talk? We use tinc for NYC Mesh to connect nodes that do not have line of sight. Dan On Sun, Nov 15, 2015 at 6:47 PM, Benjamin Kero <ben.kero at gmail.com> wrote: > Hi tincfolks, > > I'd like to announce that we're planning a talk [1] about tinc and some of > the uses that we've developed for it. It'll be given at FOSSETCON
2016 Jan 29
0
respawning dead tinc process
This is what we use on our routers, running once a minute via crontab. > if pgrep "tincd" >/dev/null; then > echo "tincd is running" > else > echo "tincd isn't running, restarting" > tincd -n nycmesh > fi On Fri, Jan 29, 2016 at 9:07 AM, pjv <pjv at pjv.me> wrote: > I have tinc 1.1pre11 running on various routers and linux