summaryrefslogtreecommitdiff
path: root/docs/configexamples/wan-load-balancing.rst
blob: ace9a98112bfc691ec678a56aedae2df4775f7d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
:lastproofread: 2021-06-29

.. _wan-load-balancing:

.. stop_vyoslinter # pictures and text have to change

WAN Load Balancer examples
==========================


Example 1: Distributing load evenly
-----------------------------------

The setup used in this example is shown in the following diagram:

.. image:: /_static/images/Wan_load_balancing1.png
   :width: 80%
   :align: center
   :alt: Network Topology Diagram


Overview
^^^^^^^^
 * All traffic coming in through eth2 is balanced between eth0 and eth1
   on the router.
 * Pings will be sent to four targets for health testing (33.44.55.66,
   44.55.66.77, 55.66.77.88 and 66.77.88.99).
 * All outgoing packets are assigned the source address of the assigned
   interface (SNAT).
 * eth0 is set to be removed from the load balancer's interface pool
   after 5 ping failures, eth1 will be removed after 4 ping failures.

Create static routes to ping targets
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Create static routes through the two ISPs towards the ping targets and
commit the changes:

.. code-block:: none

   set protocols static route 33.44.55.66/32 next-hop 11.22.33.1
   set protocols static route 44.55.66.77/32 next-hop 11.22.33.1 
   set protocols static route 55.66.77.88/32 next-hop 22.33.44.1
   set protocols static route 66.77.88.99/32 next-hop 22.33.44.1

Configure the load balancer
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Configure the WAN load balancer with the parameters described above:

.. code-block:: none

   set load-balancing wan interface-health eth0 failure-count 5
   set load-balancing wan interface-health eth0 nexthop 11.22.33.1
   set load-balancing wan interface-health eth0 test 10 type ping
   set load-balancing wan interface-health eth0 test 10 target 33.44.55.66
   set load-balancing wan interface-health eth0 test 20 type ping
   set load-balancing wan interface-health eth0 test 20 target 44.55.66.77
   set load-balancing wan interface-health eth1 failure-count 4
   set load-balancing wan interface-health eth1 nexthop 22.33.44.1
   set load-balancing wan interface-health eth1 test 10 type ping
   set load-balancing wan interface-health eth1 test 10 target 55.66.77.88
   set load-balancing wan interface-health eth1 test 20 type ping
   set load-balancing wan interface-health eth1 test 20 target 66.77.88.99
   set load-balancing wan rule 10 inbound-interface eth2
   set load-balancing wan rule 10 interface eth0
   set load-balancing wan rule 10 interface eth1

Example 2: Failover based on interface weights
----------------------------------------------

This example uses the failover mode.

.. _wan:example2_overwiew:

Overview
^^^^^^^^
In this example, eth0 is the primary interface and eth1 is the secondary
interface. To provide simple failover functionality. If eth0 fails, eth1
takes over.

Create interface weight based configuration
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The configuration steps are the same as in the previous example, except
rule 10. So we keep the configuration, remove rule 10 and add a new rule
for the failover mode:

.. code-block:: none

   delete load-balancing wan rule 10
   set load-balancing wan rule 10 failover
   set load-balancing wan rule 10 inbound-interface eth2
   set load-balancing wan rule 10 interface eth0 weight 10
   set load-balancing wan rule 10 interface eth1 weight 1

Example 3: Failover based on rule order
---------------------------------------

The previous example used the failover command to send traffic through
eth1 if eth0 fails. In this example, failover functionality is provided
by rule order.

.. _wan:example3_overwiew:

Overview
^^^^^^^^
Two rules will be created, the first rule directs traffic coming in
from eth2 to eth0 and the second rule directs the traffic to eth1. If
eth0 fails the first rule is bypassed and the second rule matches,
directing traffic to eth1.

Create rule order based configuration
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
We keep the configuration from the previous example, delete rule 10
and create the two new rules as described:

.. code-block:: none

   delete load-balancing wan rule 10
   set load-balancing wan rule 10 inbound-interface eth2
   set load-balancing wan rule 10 interface eth0
   set load-balancing wan rule 20 inbound-interface eth2
   set load-balancing wan rule 20 interface eth1

Example 4: Failover based on rule order - priority traffic
----------------------------------------------------------

A rule order for prioritizing traffic is useful in scenarios where the
secondary link has a lower speed and should only carry high priority
traffic. It is assumed for this example that eth1 is connected to a
slower connection than eth0 and should prioritize VoIP traffic.


.. _wan:example4_overwiew:

Overview
^^^^^^^^
A rule order for prioritizing traffic is useful in scenarios where the
secondary link has a lower speed and should only carry high priority
traffic. It is assumed for this example that eth1 is connected to a
slower connection than eth0 and should prioritize VoIP traffic. 

Create rule order based configuration with low speed secondary link
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
We keep the configuration from the previous example, delete rule 20 and
create a new rule as described: 

.. code-block:: none

   delete load-balancing wan rule 20
   set load-balancing wan rule 20 inbound-interface eth2
   set load-balancing wan rule 20 interface eth1
   set load-balancing wan rule 20 destination port sip
   set load-balancing wan rule 20 protocol tcp
   set protocols static route 0.0.0.0/0 next-hop 11.22.33.1

Example 5: Exclude traffic from load balancing
----------------------------------------------

In this example two LAN interfaces exist in different subnets instead
of one like in the previous examples:

.. image:: /_static/images/Wan_load_balancing_exclude1.png                      
   :width: 80%                                                          
   :align: center                                                       
   :alt: Network Topology Diagram 

Adding a rule for the second interface
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Based on the previous example, another rule for traffic from the second
interface eth3 can be added to the load balancer. However, traffic meant
to flow between the LAN subnets will be sent to eth0 and eth1 as well.
To prevent this, another rule is required. This rule excludes traffic
between the local subnets from the load balancer. It also excludes
locally-sources packets (required for web caching with load balancing).
eth+ is used as an alias that refers to all ethernet interfaces:

.. code-block:: none

   set load-balancing wan rule 5 exclude
   set load-balancing wan rule 5 inbound-interface eth+
   set load-balancing wan rule 5 destination address 10.0.0.0/8

.. start_vyoslinter