]> git.ipfire.org Git - people/ms/network.git/blame - hooks/zones/bridge.configs/ipv4-dhcp
Rework colours.
[people/ms/network.git] / hooks / zones / bridge.configs / ipv4-dhcp
CommitLineData
e9ea243e
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
f41fa3d7 22. /usr/lib/network/header-config
e9ea243e
MT
23
24HOOK_SETTINGS="HOOK DELAY"
25
26# Default settings.
27DELAY=0
28
29function _check() {
30 assert isset DELAY
31 assert isinteger DELAY
32}
33
34function _create() {
35 local zone=${1}
36 shift
37
38 while [ $# -gt 0 ]; do
39 case "${1}" in
40 --delay=*)
41 DELAY=${1#--delay=}
42 ;;
43 esac
44 shift
45 done
46
47 config_write $(zone_dir ${zone})/configs/${HOOK} ${HOOK_SETTINGS}
48
49 exit ${EXIT_OK}
50}
51
52function _up() {
53 local zone=${1}
54 local config=${2}
55 shift 2
56
57 if ! device_exists ${zone}; then
58 error "Zone '${zone}' doesn't exist."
59 exit ${EXIT_ERROR}
60 fi
61
62 # Start dhclient for IPv4 on this zone.
63 dhclient_start ${zone} ipv4
64
65 exit ${EXIT_OK}
66}
67
68function _down() {
69 local zone=${1}
70 local config=${2}
71 shift 2
72
73 if ! device_exists ${zone}; then
74 error "Zone '${zone}' doesn't exist."
75 exit ${EXIT_ERROR}
76 fi
77
78 # Stop dhclient for IPv4 on this zone.
79 dhclient_stop ${zone} ipv4
80
81 exit ${EXIT_OK}
82}
83
84function _status() {
85 local zone=${1}
86 local config=${2}
87 shift 2
88
89 if ! device_exists ${zone}; then
90 error "Zone '${zone}' doesn't exist."
91 exit ${EXIT_ERROR}
92 fi
93
94 config_read $(zone_dir ${zone})/configs/${config}
95
96 printf " %10s - " "${HOOK}"
97 if zone_has_ip ${zone} ${ADDRESS}/${PREFIX}; then
98 echo -ne "${COLOUR_UP} UP ${COLOUR_NORMAL}"
99 else
100 echo -ne "${COLOUR_DOWN}DOWN${COLOUR_NORMAL}"
101 fi
102 echo " - ${ADDRESS}/${PREFIX}"
103
104 if [ -n "${GATEWAY}" ]; then
105 echo " Gateway: ${GATEWAY}"
106 fi
107
108 exit ${EXIT_OK}
109}