Difference between revisions of "Multi-Path Routing"
Line 62: | Line 62: | ||
run "sh /etc/netstart" | run "sh /etc/netstart" | ||
run "sh /etc/rc.local" | run "sh /etc/rc.local" | ||
− | + | ||
− | |||
} | } | ||
if ! $pf_check { | if ! $pf_check { | ||
Line 71: | Line 70: | ||
</pre> | </pre> | ||
− | To break this file down so you can understand, the line pf_check is pinging another router every ten seconds. | + | To break this file down so you can understand, the line pf_check is pinging another router every ten seconds. If the ping works, keep things promoted. If ping fails then initiate set-state int_demoted. Very basic concept really. |
+ | |||
+ | So the default rc.local looks like this; | ||
+ | |||
+ | ifconfig gif0 tunnel external1 external2 | ||
+ | |||
+ | /sbin/route add -net 10.0.1.0/24 10.0.11.9 | ||
+ | /sbin/route add -net 10.0.2.0/24 10.0.11.9 | ||
+ | /sbin/route add -net 10.0.3.0/24 10.0.11.9 | ||
+ | |||
+ | |||
+ | and rc.local2 | ||
+ | |||
+ | ifconfig gif1 tunnel external1 external2 | ||
+ | |||
+ | /sbin/route add -net 10.0.1.0/24 10.0.11.1 | ||
+ | /sbin/route add -net 10.0.2.0/24 10.0.20.1 | ||
+ | /sbin/route add -net 10.0.3.0/24 10.0.20.1 | ||
+ | |||
+ | |||
+ | Note the two different gif interfaces (gif1 and gif2). The difference here is we're taking routes and redirecting things to another router. |
Revision as of 06:39, 24 October 2018
Multi-Path routing with OpenBSD/FreeBSD using GIF interfaces and ifstated.
Multi-Path routing allows you to do several different concepts and methodologies. This article will be focused on fault tolerance. You can certainly use public address space.. no one can stop you... yet this article is geared towards private gif interfaces. A few questions come to mind;
1.) Server outage and you have a ZFS mirror in another location, how can we get there? 2.) Core router that allows other routers to talk to one another has a fiber cut or hardware failure. 3.) Corporate wide redundancy
The first thing to do is install ifstated;
FreeBSD: pkg add ifstated OpenBSD: pkg_add ifstated
Assuming you have gif tunnels already established?
RouterA
- ifconfig gif0 create
- ifconfig gif0 internal1 internal2
- ifconfig gif0 tunnel external1 external2
RouterB
- ifconfig gif0 create
- ifconfig gif0 internal2 internal1
- ifconfig gif0 tunnel external2 external1
With ifstated installed we can go through the configuration file;
$ more /usr/local/etc/ifstated.conf init-state auto pf_check = '( "ping -q -c 1 -W 1 10.0.11.9 > /dev/null" every 10)' state auto { if ! $pf_check { set-state int_demoted } if $pf_check { set-state int_promoted } } state int_demoted { init { run "sh /etc/netstart" run "sh /etc/rc.local2" } if $pf_check { set-state int_promoted } } state int_promoted { init { run "sh /etc/netstart" run "sh /etc/rc.local" } if ! $pf_check { set-state int_demoted } }
To break this file down so you can understand, the line pf_check is pinging another router every ten seconds. If the ping works, keep things promoted. If ping fails then initiate set-state int_demoted. Very basic concept really.
So the default rc.local looks like this;
ifconfig gif0 tunnel external1 external2
/sbin/route add -net 10.0.1.0/24 10.0.11.9 /sbin/route add -net 10.0.2.0/24 10.0.11.9 /sbin/route add -net 10.0.3.0/24 10.0.11.9
and rc.local2
ifconfig gif1 tunnel external1 external2
/sbin/route add -net 10.0.1.0/24 10.0.11.1 /sbin/route add -net 10.0.2.0/24 10.0.20.1 /sbin/route add -net 10.0.3.0/24 10.0.20.1
Note the two different gif interfaces (gif1 and gif2). The difference here is we're taking routes and redirecting things to another router.