]> git.ipfire.org Git - people/ms/network.git/blame - hooks/ports/ethernet
Move all port patterns into functions.constants.
[people/ms/network.git] / hooks / ports / ethernet
CommitLineData
711ffac1
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
8c63fa13 22. /usr/lib/network/header-port
711ffac1
MT
23
24HOOK_SETTINGS="HOOK DEVICE_MAC"
25
26function _check() {
27 assert ismac DEVICE_MAC
28}
29
30function _create() {
31 local port=${1}
32 shift
33
34 assert isset port
35
36 DEVICE_MAC=$(device_get_address ${port})
37
38 config_write $(port_file ${port}) ${HOOK_SETTINGS}
39
40 exit ${EXIT_OK}
41}
42
43function _up() {
44 local port=${1}
45
46 assert isset port
47
48 device_set_up ${port}
49
50 exit ${EXIT_OK}
51}
52
53function _down() {
54 local port=${1}
55
56 assert isset port
57
58 device_set_down ${port}
59
60 exit ${EXIT_OK}
61}
62
8895cf8f
MT
63function _hotplug() {
64 local port=${1}
65 local device=${2}
66
67 assert isset port
68 assert isset device
69
70 config_read $(port_file ${port})
71
72 if [ "${DEVICE_MAC}" = "$(device_get_address ${device})" ]; then
8c63fa13 73 log DEBUG "Device '${device}' equals port '${port}'."
8895cf8f
MT
74 exit ${EXIT_OK}
75 fi
76
8c63fa13 77 log DEBUG "Device '${device}' does not equal port '${port}'."
8895cf8f
MT
78 exit ${EXIT_ERROR}
79}
80
711ffac1
MT
81function _status() {
82 local port=${1}
83 shift
84
85 assert isset port
86
87 echo "${port}"
88
89 local status=$(device_get_status ${port})
90 printf "${DEVICE_PRINT_LINE1}" "Status:" "$(echo -ne ${STATUS_COLOUR[${status}]}${STATUS_TEXT[${status}]}${COLOUR_NORMAL})"
91
92 cli_headline " Ethernet information:"
93 printf "${DEVICE_PRINT_LINE1}" "Address:" $(device_get_address ${port})
94 printf "${DEVICE_PRINT_LINE1}" "MTU:" $(device_get_mtu ${port})
95 printf "${DEVICE_PRINT_LINE1}" "Promisc mode:" $(device_is_promisc ${port} && echo "yes" || echo "no")
96
97 if device_is_bonded ${port}; then
98 cli_headline " Bonding information:"
99
100 local master=$(bonding_slave_get_master ${port})
101 printf "${DEVICE_PRINT_LINE1}" "Master:" "${master}"
102
103 local active
104 if [ "$(bonding_get_active_slave ${master})" = "${port}" ]; then
105 active="yes"
106 else
107 active="no"
108 fi
109 printf "${DEVICE_PRINT_LINE1}" "Active slave:" "${active}"
110 fi
111
112 cli_headline " Statistics:"
113 printf "${DEVICE_PRINT_LINE1}" "Received:" \
114 "$(beautify_bytes $(device_get_rx_bytes ${port})) ($(device_get_rx_packets ${port}) packets)"
115 printf "${DEVICE_PRINT_LINE1}" "Sent:" \
116 "$(beautify_bytes $(device_get_tx_bytes ${port})) ($(device_get_tx_packets ${port}) packets)"
117
118 echo
119
120 exit ${EXIT_OK}
121}
122
123run $@