]> git.ipfire.org Git - people/ms/network.git/blame - hooks/zones/teredo
Add support for teredo (miredo).
[people/ms/network.git] / hooks / zones / teredo
CommitLineData
28f0b4ab
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
22. /usr/lib/network/header-zone
23
24HOOK_SETTINGS="HOOK SERVER"
25
26SERVER=""
27
28function _check() {
29 assert isset SERVER
30}
31
32function _parse_cmdline() {
33 local value
34
35 while [ $# -gt 0 ]; do
36 case "${1}" in
37 --server=*)
38 SERVER=$(cli_get_val ${1})
39 ;;
40 *)
41 echo "Unknown option: ${1}" >&2
42 exit ${EXIT_ERROR}
43 ;;
44 esac
45 shift
46 done
47}
48
49function _up() {
50 local zone=${1}
51 assert isset zone
52
53 teredo_start ${zone}
54
55 exit ${EXIT_OK}
56}
57
58function _down() {
59 local zone=${1}
60 assert isset zone
61
62 teredo_stop ${zone}
63
64 exit ${EXIT_OK}
65}
66
67function _status() {
68 local zone=${1}
69
70 assert isset zone
71
72 cli_status_headline ${zone}
73
74 zone_config_read ${zone}
75
76 cli_headline " Configuration:"
77 printf "${DEVICE_PRINT_LINE1}" "Server:" "${SERVER}"
78
79 # Exit if zone is down
80 if ! zone_is_up ${zone}; then
81 echo # Empty line
82 exit ${EXIT_ERROR}
83 fi
84
85 cli_headline " Protocol information:"
86 printf "${DEVICE_PRINT_LINE1}" "MTU:" "$(device_get_mtu ${zone})"
87 echo
88
89 exit ${EXIT_OK}
90}
91
92run $@