Displaying 5 results from an estimated 5 matches for "tinc_ip".
Did you mean:
in_ip
2016 Dec 27
2
tinc using docker containers
I've recently built a docker container to easily install and configure tinc
1.1pre14 in any machine using docker containers. I've created a Github repo
in https://github.com/bys-control/docker-tinc
I'm working in a WEB based admin interface for managing tinc daemons. Right
now it's just a JSON API for tinc, but I'm working in developing the front
end.
Any
2016 Dec 29
0
tinc using docker containers
...gt; in https://github.com/bys-control/docker-tinc
Great! One comment: ifconfig is considered deprecated on Linux. I'm sure
the command will stay around, but it is better to use the "ip" command
in new projects. The recommended way to write a tinc-up script is:
#!/bin/sh
ip addr add $TINC_IP dev $INTERFACE
ip link set dev $INTERFACE up
You don't need a separate netmask, you can use CIDR notation (for
example: TINC_IP=192.168.1.1/24).
> I'm working in a WEB based admin interface for managing tinc daemons. Right
> now it's just a JSON API for tinc, but I'm working...
2016 Dec 29
0
Allow direct connection between some (but not all) nodes on the network (Guus Sliepen)
...trol/docker-tinc
>
> Great! One comment: ifconfig is considered deprecated on Linux. I'm sure
> the command will stay around, but it is better to use the "ip" command
> in new projects. The recommended way to write a tinc-up script is:
>
> #!/bin/sh
> ip addr add $TINC_IP dev $INTERFACE
> ip link set dev $INTERFACE up
>
> You don't need a separate netmask, you can use CIDR notation (for
> example: TINC_IP=192.168.1.1/24).
>
> > I'm working in a WEB based admin interface for managing tinc daemons.
> Right
> > now it's just a...
2015 May 04
1
Isolating a subnet on demand
I'm still confused, but in any case, there's nothing stopping "miou"
from impersonating "apeliote"'s subnets in your case, unless you use
StrictSubnets.
Here's the easiest way to do the spoofing:
In miou's own node file (on the miou machine itself), add apeliote's
subnets with a Weight smaller than 10 (which is the default), so that
it overrides them.
2015 May 04
3
Isolating a subnet on demand
On 4 May 2015 at 20:53, Anne-Gwenn Kettunen <anwen at asphodelium.eu> wrote:
> We started to take a look about that, and apparently, it seems that the IP
> in the public key is taken into account when a client connects to a gateway.
> Spoofing at that level doesn't seem easy, because the IP address seems to be
> part of the authentication process.
I'm having trouble