From 59b21be36b2f4cd74aa0cea53492e3023b59770b Mon Sep 17 00:00:00 2001 From: Michael Larson Date: Fri, 14 Dec 2007 13:40:31 -0800 Subject: initial check wan lb Signed-off-by: Michael Larson --- src/loadbalance.conf | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/loadbalance.conf (limited to 'src/loadbalance.conf') diff --git a/src/loadbalance.conf b/src/loadbalance.conf new file mode 100644 index 0000000..85e6c5d --- /dev/null +++ b/src/loadbalance.conf @@ -0,0 +1,50 @@ +# +# Sample vyatta load balance configuration file. +# + +health { + interface eth1 { + target 10.0.0.1 + success-ct 2 + failure-ct 1 + ping-resp 100 + } + + interface eth2 { + target 10.0.0.1 + success-ct 1 + failure-ct 1 + ping-resp 1000 + } +} + +rule 1 { + protocol udp + interface eth1 { + weight 1 + } + interface eth2 { + weight 2 + } +} + +rule 2 { + protocol tcp + source { + address 1.1.1.1 + port-number 2222 + } + interface eth1 { + weight 1 + } + interface eth2 { + weight 3 + } +} + +#default rule w/o protocol specified +rule 10 { + interface eth2 { + weight 1 + } +} \ No newline at end of file -- cgit v1.2.3