]> git.ipfire.org Git - people/ms/network.git/blame - src/helpers/bridge-stp
Remove support for Rapid Spanning Tree Protocol
[people/ms/network.git] / src / helpers / bridge-stp
CommitLineData
30812a00
MT
1#!/bin/sh
2###############################################################################
3# #
4# IPFire - An Open Source Firewall Solution #
5# Copyright (C) 2011 IPFire development team #
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
6c95a49a
MT
22# Change LOG_FACILITY that we will find our messages in syslog.
23LOG_FACILITY=$(basename ${0})
24
4cf2e1dd
MT
25. /usr/lib/network/functions
26
e9df08ad
MT
27# Read network settings
28network_settings_read
df140026 29
6c95a49a 30zone=${1}
6c95a49a 31assert isset zone
7d85603e
MT
32
33action=${2}
6c95a49a
MT
34assert isset action
35
36# Exit immediately, if zone configuration does not exist.
37# This is for manually created bridges.
38if ! zone_exists ${zone}; then
7d85603e 39 exit ${EXIT_KERNEL_STP}
6c95a49a
MT
40fi
41
e9df08ad 42# Read zone settings
4e0bc093 43zone_settings_read "${zone}" --ignore-superfluous-settings STP
6c95a49a 44
7d85603e 45# Make sure STP is enabled for this zone.
4e0bc093
MT
46if ! enabled STP; then
47 log ERROR "The kernel tried to enable STP for zone ${zone}"
48 log ERROR "but our configuration disagrees"
49 exit ${EXIT_STP_ERROR}
50fi
7d85603e 51
4e0bc093
MT
52case "${action}" in
53 start)
54 log INFO "STP activated for ${zone}"
55 exit ${EXIT_STP_KERNEL}
6c95a49a 56 ;;
4e0bc093
MT
57 stop)
58 log INFO "STP deactivated for ${zone}"
59 exit ${EXIT_OK}
6c95a49a 60 ;;
4e0bc093
MT
61 *)
62 log ERROR "Unknown action: ${action}"
63 exit ${EXIT_STP_ERROR}
6c95a49a 64esac