]> git.ipfire.org Git - people/arne_f/network.git/blame - functions.bonding
Fix weird device CLI command.
[people/arne_f/network.git] / functions.bonding
CommitLineData
d61a01d4
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2010 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
711ffac1
MT
22function bonding_init() {
23 if ! grep -q "^bonding" /proc/modules; then
24 modprobe bonding
25
26 bonding_remove bond0
27 fi
28}
29
dfdef890
MT
30init_register bonding_init
31
d61a01d4
MT
32function bonding_create() {
33 local device=${1}
34 local mac=${2}
35
36 [ -z "${mac}" ] && mac=$(mac_generate)
37
38 log INFO "Creating bonding device '${device}' (${mac})."
39
40 echo "+${device}" > /sys/class/net/bonding_masters
711ffac1 41 device_set_address ${device} ${mac}
d61a01d4
MT
42 device_set_up ${device}
43}
44
45function bonding_remove() {
46 local device=$(devicify ${1})
47
711ffac1
MT
48 assert isset device
49
d61a01d4
MT
50 log INFO "Remove bonding device '${device}'."
51
52 device_set_down ${device}
53 echo "-${device}" > /sys/class/net/bonding_masters
54}
55
56function bonding_set_mode() {
57 local device=${1}
58 local mode=${2}
59
60 log INFO "Setting bonding mode on '${device}' '${mode}'."
61
62 echo "${mode}" > /sys/class/net/${device}/bonding/mode
63}
64
711ffac1
MT
65function bonding_get_mode() {
66 local device=${1}
67
68 local mode mode_num
69 read mode mode_num < ${SYS_CLASS_NET}/${device}/bonding/mode
70 echo "${mode}"
71}
72
d61a01d4
MT
73function bonding_enslave_device() {
74 local device=$(devicify ${1})
75 local slave=$(devicify ${2})
76 shift 2
77
711ffac1
MT
78 assert isset device
79 assert isset slave
80
d61a01d4
MT
81 log INFO "Enslaving slave '${slave}' to '${device}'."
82
83 device_set_down ${slave}
84 echo "+${slave}" > /sys/class/net/${device}/bonding/slaves
85}
711ffac1
MT
86
87function bonding_get_slaves() {
88 local device=${1}
89
90 cat ${SYS_CLASS_NET}/${device}/bonding/slaves
91}
92
93function bonding_get_active_slave() {
94 local device=${1}
95
96 cat ${SYS_CLASS_NET}/${device}/bonding/active_slave
97}
98
99# XXX function bonding_get_lacp_rate?
100
101function bonding_get_miimon() {
102 local device=${1}
103
104 cat ${SYS_CLASS_NET}/${device}/bonding/miimon
105}
106
107function bonding_set_miimon() {
108 local device=${1}
109 local miimon=${2}
110
111 echo "${miimon}" > ${SYS_CLASS_NET}/${device}/bonding/miimon
112}
113
114function bonding_device_print() {
115 local device=${1}
116
117 ethernet_device_print ${device}
118
119 echo # Empty line
120
121 printf "${DEVICE_PRINT_LINE1}" "Mode:" "$(bonding_get_mode ${device})"
122 printf "${DEVICE_PRINT_LINE1}" "Slaves:" "$(bonding_get_slaves ${device})"
123}
124
125function bonding_slave_get_master() {
126 local slave=${1}
127
128 assert isset slave
129 assert device_is_bonded ${slave}
130
131 local device
132 for device in $(devices_get_all); do
133 if device_is_bonding ${device} && listmatch ${slave} $(bonding_get_slaves ${device}); then
134 echo "${device}"
135 return ${EXIT_OK}
136 fi
137 done
138
139 return ${EXIT_ERROR}
140}