]> git.ipfire.org Git - people/ms/network.git/blame - hooks/ports/ethernet
Throw the old GREEN/RED/ORANGE schema over board.
[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
22. /lib/network/header-port
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
73 exit ${EXIT_OK}
74 fi
75
76 exit ${EXIT_ERROR}
77}
78
711ffac1
MT
79function _status() {
80 local port=${1}
81 shift
82
83 assert isset port
84
85 echo "${port}"
86
87 local status=$(device_get_status ${port})
88 printf "${DEVICE_PRINT_LINE1}" "Status:" "$(echo -ne ${STATUS_COLOUR[${status}]}${STATUS_TEXT[${status}]}${COLOUR_NORMAL})"
89
90 cli_headline " Ethernet information:"
91 printf "${DEVICE_PRINT_LINE1}" "Address:" $(device_get_address ${port})
92 printf "${DEVICE_PRINT_LINE1}" "MTU:" $(device_get_mtu ${port})
93 printf "${DEVICE_PRINT_LINE1}" "Promisc mode:" $(device_is_promisc ${port} && echo "yes" || echo "no")
94
95 if device_is_bonded ${port}; then
96 cli_headline " Bonding information:"
97
98 local master=$(bonding_slave_get_master ${port})
99 printf "${DEVICE_PRINT_LINE1}" "Master:" "${master}"
100
101 local active
102 if [ "$(bonding_get_active_slave ${master})" = "${port}" ]; then
103 active="yes"
104 else
105 active="no"
106 fi
107 printf "${DEVICE_PRINT_LINE1}" "Active slave:" "${active}"
108 fi
109
110 cli_headline " Statistics:"
111 printf "${DEVICE_PRINT_LINE1}" "Received:" \
112 "$(beautify_bytes $(device_get_rx_bytes ${port})) ($(device_get_rx_packets ${port}) packets)"
113 printf "${DEVICE_PRINT_LINE1}" "Sent:" \
114 "$(beautify_bytes $(device_get_tx_bytes ${port})) ($(device_get_tx_packets ${port}) packets)"
115
116 echo
117
118 exit ${EXIT_OK}
119}
120
121run $@