]> TLD Linux GIT Repositories - rc-scripts.git/blob - lib/ifup-bond
- version 0.5.4
[rc-scripts.git] / lib / ifup-bond
1 #!/bin/sh
2 #
3 #    ifup-bond - bonding configuration script
4 #    Copyright (C) 2014 Marcin Krol <hawk@tld-linux.org>
5 #
6 #    This program is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    This program is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with this program; if not, write to the Free Software
18 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 #
20 #
21 PATH=/sbin:/usr/sbin:/bin:/usr/bin
22
23 . /etc/sysconfig/network
24 . /etc/rc.d/init.d/functions
25 . /lib/rc-scripts/functions.network
26
27 CONFIG=$1
28 source_config
29
30 if [ "x${2}" = "xboot" ] && is_no "${ONBOOT}"; then
31         exit
32 fi
33
34 # check for bonding support
35 if [ ! -f /sys/class/net/bonding_masters ]; then
36         modprobe -s bonding || exit 1
37         # delete default bond0
38         ip link del bond0 type bond
39 fi
40
41 # set all major variables
42 setup_ip_param
43
44 # create bonding master
45 if [ ! -d "/sys/class/net/${DEVICE}" ]; then
46         ip link add "${DEVICE}" type bond
47 fi
48
49 # add the bits to setup driver parameters here
50 # taken from Fedora initscripts
51 for arg in ${BONDING_OPTS} ; do
52         key=${arg%%=*};
53         value=${arg##*=};
54         if [ "${key}" = "arp_ip_target" -a "${value:0:1}" != "+" ]; then
55                 OLDIFS=$IFS;
56                 IFS=',';
57                 for arp_ip in $value; do
58                         if ! grep -q $arp_ip /sys/class/net/${DEVICE}/bonding/$key; then
59                                 echo +$arp_ip > /sys/class/net/${DEVICE}/bonding/$key
60                         fi
61                 done
62                 IFS=$OLDIFS;
63         elif [ "${key}" = "arp_ip_target" ]; then
64                 if ! grep -q ${value#+} /sys/class/net/${DEVICE}/bonding/$key; then
65                         echo "$value" > /sys/class/net/${DEVICE}/bonding/$key
66                 fi
67         elif [ "${key}" != "primary" ]; then
68                 echo $value > /sys/class/net/${DEVICE}/bonding/$key
69         fi
70 done