]> git.ipfire.org Git - people/ms/network.git/blob - hooks/zones/pppoe.ports/ethernet
network: Again very much changes that are hard to break down.
[people/ms/network.git] / hooks / zones / pppoe.ports / ethernet
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
22 . /lib/network/header-port
23
24 function _add() {
25 local zone=${1}
26 local port=${2}
27 shift 2
28
29 assert isset zone
30 assert isset port
31
32 if ! port_exists ${port}; then
33 error "Port '${port}' does not exist."
34 exit ${EXIT_ERROR}
35 fi
36
37 touch $(zone_dir ${zone})/ports/${port}
38
39 exit ${EXIT_OK}
40 }
41
42 function _edit() {
43 _add $@
44 }
45
46 function _rem() {
47 local zone=${1}
48 local port=${2}
49 shift 2
50
51 assert isset zone
52 assert isset port
53
54 if ! listmatch ${port} $(zone_get_ports ${zone}); then
55 error "Port '${port}' does not belong to '${zone}'."
56 error "Won't remove anything."
57 exit ${EXIT_ERROR}
58 fi
59
60 warning "Removing port '${port}' from '${zone}' will shutdown the zone."
61
62 # Shut down this zone
63 zone_down ${zone}
64
65 rm -f $(zone_dir ${zone})/ports/${port}
66
67 exit ${EXIT_OK}
68 }
69
70 function _up() {
71 local zone=${1}
72 local port=${2}
73
74 assert isset zone
75 assert isset port
76
77 assert zone_exists ${zone}
78 assert port_exists ${port}
79
80 port_up ${port}
81
82 exit ${EXIT_OK}
83 }
84
85 function _down() {
86 local zone=${1}
87 local port=${2}
88
89 assert isset zone
90 assert isset port
91
92 assert zone_exists ${zone}
93 assert port_exists ${port}
94
95 port_down ${port}
96
97 exit ${EXIT_OK}
98 }
99
100 function _status() {
101 local zone=${1}
102 local port=${2}
103
104 printf " %-10s - " "${port}"
105 if device_is_up ${port}; then
106 echo -ne "${COLOUR_UP} UP ${COLOUR_NORMAL}"
107 else
108 echo -ne "${COLOUR_DOWN} DOWN ${COLOUR_NORMAL}"
109 fi
110 echo
111
112 exit ${EXIT_OK}
113 }
114
115 run $@