]> git.ipfire.org Git - people/stevee/network.git/blame - functions.ipv4
Merge remote-tracking branch 'stevee/UsrMove'
[people/stevee/network.git] / functions.ipv4
CommitLineData
05c234a8
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
e617226b
MT
22IP_SUPPORTED_PROTOCOLS="${IP_SUPPORTED_PROTOCOLS} ipv4"
23
05c234a8 24function ipv4_is_valid() {
fa6df98c 25 ipcalc --ipv4 -c $@ >/dev/null 2>&1
05c234a8 26
fa6df98c
MT
27 case "$?" in
28 0)
29 return ${EXIT_OK}
30 ;;
31 *)
38f61548 32 return ${EXIT_ERROR}
fa6df98c
MT
33 ;;
34 esac
05c234a8
MT
35}
36
37function ipv4_detect_duplicate() {
38 local device=${1}
39 local address=${2}
40
41 assert isset address
42 assert isset device
43 assert device_exists ${device}
44
45 if ! arping -q -c 2 -w 3 -D -I ${device} ${address}; then
46 log DEBUG "Detected duplicate address '${address}' on device '${device}'."
9eebfc55 47 return ${EXIT_OK}
05c234a8
MT
48 fi
49
9eebfc55 50 return ${EXIT_ERROR}
05c234a8
MT
51}
52
53function ipv4_update_neighbours() {
54 local device=${1}
55 local address=${2}
56
57 arping -q -A -c 1 -I ${device} ${address}
58 ( sleep 2; arping -q -U -c 1 -I ${device} ${address} ) >/dev/null 2>&1 </dev/null &
59}
d5bace8d
MT
60
61function ipv4_get_netaddress() {
62 local address=${1}
63 assert isset address
64
65 local prefix=$(ip_get_prefix ${address})
66 assert isset prefix
67
68 local NETWORK
69 eval $(ipcalc --network ${address})
70 assert isset NETWORK
71
72 echo "${NETWORK}/${prefix}"
73
74 return ${EXIT_OK}
75}
e9ea243e
MT
76
77function ipv4_get_prefix() {
78 local address=${1}
79 local broadcast=${2}
80
81 assert isset address
82 assert isset broadcast
83
84 local PREFIX
85 eval $(ipcalc --prefix ${address} ${broadcast})
86 assert isset PREFIX
87
88 echo "${PREFIX}"
89 return ${EXIT_OK}
90}
91
92function ipv4_flush_device() {
93 #
94 # Flushes all routes, addresses from the device
95 # and clears the ARP cache.
96 #
97
98 local device=${1}
99 assert isset device
100
101 ip -4 addr flush dev ${device} >/dev/null 2>&1
102 ip -4 route flush dev ${device} >/dev/null 2>&1
103 ip -4 neigh flush dev ${device} >/dev/null 2>&1
104
105 return 0
106}