Forgot your password?
typodupeerror

Comment Re:remote video streaming (Score 1) 80

I would use OpenVPN. One VPN going from each uplink to your data center. Then use channel bonding on the OpenVPN interfaces on both sides: remote location and data center. Of course you would need a modified version of Fault Tolerant Router to detect if an uplink goes down, otherwise your "channel bonded" connection would go down too...

Comment Re:Ruby?? (Score 1) 80

It's not aimed at embedded systems, so dependencies are not a problem for me. Then, installing dependencies with bundler it's a joke. It's clear you're not a Ruby fan! ;-) I agree it would have been better to write it in C, but I'm a little rusty on C, today I almost develop everything on Ruby, so it was a natural choice for me.

Comment Re:Strange (Score 1) 80

If I'm not wrong, ja kernel patches detect a dead route by pinging the interface gateway. In my experience, in my environment (Italy), this is not enough to detect a dead gateway: we often get dead DSL links or very disturbed radio links. In both cases the interface gateway is up and running, so the uplink would not be detected as down. And this unfortunately doesn't happen here "less than once or twice a year": we don't have a very nice internet infrastructure here in Italy, in some rural places it can happen once a month. About the RAID-0 analogy, it was just to let people better understand using a concept they are familiar with: I'm confident many Slashdot readers know what a RAID-0 is. And I still think the RAID-0 analogy is pertinent. If you don't have a mechanism to exclude dead uplinks, it's like losing a disk in a RAID-0 array: all your data is lost! In this case (almost) all of your LAN-to-WAN traffic is down. Actually you had a mechanism to exclude dead uplinks: ja kernel patches, they worked in your environment but, as I said before, not in mine.

Submission + - Linux and multiple internet uplinks: a new tool

Alessandro Zarrilli writes: Linux is able do multipath routing since a long time: it means being able to have routes with multiple gateways and to use them in a (weighted) round-robin fashion. But Linux misses a tool to actively monitor the state of internet uplinks and change the routing accordingly. Without it, on a LAN perspective, it's like having a RAID0 on network: just one uplink goes down and all of your LAN-to-WAN traffic goes down too. Documentation and examples on the subject are lacking, existing solutions are few and deeply integrated in firewall/routing specific distributions. To address these issues, a new stand alone tool was just released: Fault Tolerant Router. It also includes a complete (iptables + ip policy routing) configuration generator.

Slashdot Top Deals

Nothing will ever be attempted if all possible objections must be first overcome. -- Dr. Johnson

Working...