search for: babeld

Displaying 3 results from an estimated 3 matches for "babeld".

Did you mean: babel
2019 Nov 04
0
Rationale behind MACExpire
...s there a security motivation involved? Would it be possible to disable it completely? I am running babel routing protocol with tinc with options Forwarding=off, DirectOnly=yes and Broadcast=direct. In this configuration, tinc only takes care of the tunnel mesh, leaving forwarding completely to babeld and kernel. I find the connections getting interrupted whenever the MAC address of the tinc interface changes. I have to set MACExpire=31536000 to tinc.conf mitigate this. Yours, Benda
2015 Oct 01
2
Tinc + OSPF - is it feasible?
Hello, Please tell me if it's possible to use tinc together with OSPF (instead of static routes in LAN). By OSPF I mean Quagga's GNU/Linux daemon. Namely, I have a group of LANs (private 192.168.x.0/24 each). Each LAN has a GNU/Linux default gateway, 192.168.x.1, that also connects to the Internet via a public IP address (does NAT and firewall for the LAN "behind" it). tinc
2023 Jun 20
8
[Bug 3581] New: ssh-keyscan fails with `fdlim_get: bad value` with large file descriptor limit due to type confusion
...-keyscan: fdlim_get: bad value $ ulimit -n 4294967295 $ ssh-keyscan -t ed25519 github.com ssh-keyscan: fdlim_get: bad value $ ulimit -n 2147483648 $ ssh-keyscan -t ed25519 github.com ssh-keyscan: fdlim_get: bad value $ ulimit -n 2147483647 $ ssh-keyscan -t ed25519 github.com # github.com:22 SSH-2.0-babeld-6732d282 github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl ``` Looking at the code of openssh-portable here[1] shows that `fdlim_get` returns an `int`, but the fields of `struct rlimit` and the return value of `sysconf`[2] are `long`, thus 64-bit. Given t...