LARTC
[Top] [All Lists]

Re: [LARTC] Redundant internet connections.

To: Grant Taylor <gtaylor@riverviewtech.net>
Subject: Re: [LARTC] Redundant internet connections.
From: Peter Rabbitson <rabbit@rabbit.us>
Date: Thu, 21 Jun 2007 17:35:13 +0200
Cc: lartc@mailman.ds9a.nl
Delivered-to: sp-com-lists@consult.net
Delivered-to: lartc-list@securepoint.com
Delivered-to: lartc@outpost.ds9a.nl
In-reply-to: <467A2354.1070805@riverviewtech.net>
List-archive: <http://mailman.ds9a.nl/pipermail/lartc>
List-help: <mailto:lartc-request@mailman.ds9a.nl?subject=help>
List-id: "Mailinglist of the Linux Advanced Routing &amp; Traffic Control project" <lartc.mailman.ds9a.nl>
List-post: <mailto:lartc@mailman.ds9a.nl>
List-subscribe: <http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc>, <mailto:lartc-request@mailman.ds9a.nl?subject=subscribe>
List-unsubscribe: <http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc>, <mailto:lartc-request@mailman.ds9a.nl?subject=unsubscribe>
References: <467A2354.1070805@riverviewtech.net>
Sender: lartc-bounces@mailman.ds9a.nl
User-agent: Mozilla-Thunderbird 2.0.0.4 (X11/20070618)
Grant Taylor wrote:

I need a way for the Linux kernel to try to use a default gateway and switch to another one if it does not see any traffic.

I don't know about any working in-kernel solutions, but you can do it trivially with netfilter and a cronjob:

* In netfilter do this:
        -t mangle -N ispA
        -t mangle -A ispA -j RETURN
        -t mangle -N ispB
        -t mangle -A ispB -j RETURN
        -t mangle -A PREROUTING -i $ifA -s ! a.a.a.a/aa -j ispA
        -t mangle -A PREROUTING -i $ifB -s ! b.b.b.b/bb -j ispB

where a.a.a.a and b.b.b.b are subnets describing your first 1 - 2 hops, so traffic from your upstream router will not count.

* Then make a cron job that run this every minute:
        iptables -t mangle -vnxZL isp[AB]
and will look for the first number on the third line. If it is not 0 - the link is alive, otherwise change the routing tables accordingly.

Of course you can have up to 1 minute of downtime, but it does not look so bad IMO.

HTH

Peter
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc

<Prev in Thread] Current Thread [Next in Thread>