]> git.ipfire.org Git - people/ms/network.git/blob - hooks/ports/ethernet
network: Magnificent changes on code.
[people/ms/network.git] / hooks / 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 HOOK_SETTINGS="HOOK DEVICE_MAC"
25
26 function _check() {
27 assert ismac DEVICE_MAC
28 }
29
30 function _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
43 function _up() {
44 local port=${1}
45
46 assert isset port
47
48 device_set_up ${port}
49
50 exit ${EXIT_OK}
51 }
52
53 function _down() {
54 local port=${1}
55
56 assert isset port
57
58 device_set_down ${port}
59
60 exit ${EXIT_OK}
61 }
62
63 function _status() {
64 local port=${1}
65 shift
66
67 assert isset port
68
69 echo "${port}"
70
71 local status=$(device_get_status ${port})
72 printf "${DEVICE_PRINT_LINE1}" "Status:" "$(echo -ne ${STATUS_COLOUR[${status}]}${STATUS_TEXT[${status}]}${COLOUR_NORMAL})"
73
74 cli_headline " Ethernet information:"
75 printf "${DEVICE_PRINT_LINE1}" "Address:" $(device_get_address ${port})
76 printf "${DEVICE_PRINT_LINE1}" "MTU:" $(device_get_mtu ${port})
77 printf "${DEVICE_PRINT_LINE1}" "Promisc mode:" $(device_is_promisc ${port} && echo "yes" || echo "no")
78
79 if device_is_bonded ${port}; then
80 cli_headline " Bonding information:"
81
82 local master=$(bonding_slave_get_master ${port})
83 printf "${DEVICE_PRINT_LINE1}" "Master:" "${master}"
84
85 local active
86 if [ "$(bonding_get_active_slave ${master})" = "${port}" ]; then
87 active="yes"
88 else
89 active="no"
90 fi
91 printf "${DEVICE_PRINT_LINE1}" "Active slave:" "${active}"
92 fi
93
94 cli_headline " Statistics:"
95 printf "${DEVICE_PRINT_LINE1}" "Received:" \
96 "$(beautify_bytes $(device_get_rx_bytes ${port})) ($(device_get_rx_packets ${port}) packets)"
97 printf "${DEVICE_PRINT_LINE1}" "Sent:" \
98 "$(beautify_bytes $(device_get_tx_bytes ${port})) ($(device_get_tx_packets ${port}) packets)"
99
100 echo
101
102 exit ${EXIT_OK}
103 }
104
105 run $@