Subversion Repositories ALCASAR

Rev

Rev 219 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 219 Rev 221
Line 1... Line 1...
1
#!/bin/bash
1
#!/bin/bash
2
#	$Id: alcasar-load_balancing.sh 219 2010-08-30 23:49:58Z jeremy $
2
#	$Id: alcasar-load_balancing.sh 221 2010-08-31 06:55:40Z franck $
-
 
3
 
3
# alcasar-load_balancing.sh             Load-balance internet connection over two or more local links
4
# alcasar-load_balancing.sh             Load-balance internet connection over two or more local links
4
#
5
#
5
# Version:              0.8.0 - Wed, Sep 01, 2010
6
# Version:              0.8.0 - Wed, Sep 01, 2010
6
#
7
#
7
# by Author:               BOUIJOUX Franck (3abTux) <3abtux@free.fr>
8
# by Author:               BOUIJOUX Franck (3abTux) <3abtux@free.fr>
Line 9... Line 10...
9
#
10
#
10
 
11
 
11
# Définion des poids des routes
12
# Définion des poids des routes
12
WEIGHT1=1
13
WEIGHT1=1
13
WEIGHT2=1
14
WEIGHT2=1
14
WEIGHT3=3
15
#WEIGHT3=3
15
 
16
 
16
# Set devices:
17
# Set devices:
17
DEV1=${1-eth0}  # defaut eth0
18
DEV1=${1-eth0}  # defaut eth0
18
DEV2=${2-eth0}  # defaut eth0 mais peut être autre chose :-)
19
DEV2=${2-eth0}  # defaut eth0 mais peut être autre chose :-)
19
DEV3=${3-eth0}  # defaut eth0 mais peut être autre chose :-)
20
DEV3=${3-eth0}  # defaut eth0 mais peut être autre chose :-)