aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/network-functions-ipv6
blob: 71c0f00542ca5d330959a1d10ed02a987801a0fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
#!/bin/sh
#
# network-functions-ipv6
#
# Taken from:
# (P) & (C) 1997-2000 Peter Bieringer <pb@bieringer.de>

# DEBUG_IPV6 & 1 "set -x" mode
# DEBUG_IPV6 & 2 prevents from executing any network configuration
# DEBUG_IPV6 & 4 shows messages in the test section

#DEBUG_IPV6=$[ 65535 - 1 -2  -4]
DEBUG_IPV6=0

# Return values
#  0 = ok
#  1 = error occurs
#  2 = not enabled, i.e. no IPv6 kernel support or switched off by configuration

##### Test for IPv6 capabilites

function test_ipv6()
{
    if [ -z $DEBUG_IPV6 ] ; then DEBUG_IPV6=0; fi

    if ! [ $[ $DEBUG_IPV6 & 4 ] = 0 ] ; then
        echo " Tests for IPv6"    
    fi

    # Test for IPv6 kernel
    if ! [ $[ $DEBUG_IPV6 & 4 ] = 0 ] ; then
        echo -n "  Test kernel for IPv6..."
    fi

    if ! [ -f /proc/net/if_inet6 ]; then
        echo "Do not found IPv6 in kernel, try to load module"
	modprobe ipv6
	
        if ! [ -f /proc/net/if_inet6 ]; then
	    if ! [ $[ $DEBUG_IPV6 & 4 ] = 0 ] ; then
    	        echo "Not compiled for IPv6 - stop!"
    	    else
        	echo "Kernel not compiled for IPv6 - stop!"
    	    fi
    	    return 2
	fi
    else
        if ! [ $[ $DEBUG_IPV6 & 4 ] = 0 ] ; then
            echo " Ok!"
        fi
    fi

    # Test for IPv6 enabled needed binaries
    if ! [ $[ $DEBUG_IPV6 & 4 ] = 0 ] ; then
        echo n "  Test binaries for IPv6 capability..."
    fi

    if ! ifconfig -? 2>&1 | grep -q "(IPv6)"; then
    	echo "'`which ifconfig`' (net-tools) not compiled for IPv6 - stop!"
        return 2
    fi
	
    if ! route -? 2>&1 | grep -q "(IPv6)"; then
    	echo "'`which route`' (net-tools) not compiled for IPv6 - stop!"
	return 2
    fi

    if ! [ $[ $DEBUG_IPV6 & 4 ] = 0 ] ; then
        echo  "  Ok!"
    fi

    # Info about executing
    if [ $[ $DEBUG_IPV6 > 0 ] = 1 ]; then
        echo  "  Executing in DEBUG_IPV6 mode: $DEBUG_IPV6"
    fi
}

##### Static route configuration

# Display usage
function ifup_ipv6_route_usage() {
	echo $"Usage: $0 IPv6-network IPv6-gateway [device]"
}

# set route
function ifup_ipv6_route() {
	networkipv6=$1
	gatewayipv6=$2
	device=$3		# maybe empty

	if [ -z $networkipv6 ]; then
		echo $"Missing option IPv6-network'"
		ifup_ipv6_route_usage
		return 1
	fi

	if [ -z $gatewayipv6 ]; then
		echo $"Missing option 'IPv6-gateway'"
		ifup_ipv6_route_usage
		return 1
	fi

        # Run IPv6 test
	test_ipv6 || return    

	[ $[ $DEBUG_IPV6 & 1 ] = 0 ] || set -x
	
	if [ -z $device ]; then
                route -A inet6 add $networkipv6 gw $gatewayipv6
	else
                route -A inet6 add $networkipv6 gw $gatewayipv6 dev $device
	fi

	[ $[ $DEBUG_IPV6 & 1 ] = 0 ] || set +x
}

# delete route
function ifdown_ipv6_route() {
	networkipv6=$1
	gatewayipv6=$2
	device=$3		# maybe empty

	if [ -z $networkipv6 ]; then
		echo $"Missing option IPv6-network'"
		ifup_ipv6_route_usage
		return 1
	fi

	if [ -z $gatewayipv6 ]; then
		echo $"Missing option 'IPv6-gateway'"
		ifup_ipv6_route_usage
		return 1
	fi

        # Run IPv6 test
	test_ipv6 || return    

	[ $[ $DEBUG_IPV6 & 1 ] = 0 ] || set -x
	
	if [ -z $device ]; then
                route -A inet6 del $networkipv6 gw $gatewayipv6
	else
                route -A inet6 del $networkipv6 gw $gatewayipv6 dev $device
	fi

	[ $[ $DEBUG_IPV6 & 1 ] = 0 ] || set +x
}


##### tunnel configuration

# Display usage
function ifup_ipv6_tunnel_usage() {
	echo $"Usage: $0 interfacename IPv4-tunneladdress IPv6-route"
}

## Configure tunnels up
function ifup_ipv6_tunnel() {
	device=$1
	addressipv4tunnel=$2
	routeipv6=$3

	if [ -z $device ]; then
		echo $"Missing option 'device'"
		ifup_ipv6_tunnel_usage
		return 1
	fi

	if [ -z $addressipv4tunnel ]; then
		echo $"Missing option 'IPv4-tunneladdress'"
		ifup_ipv6_tunnel_usage
		return 1
	fi

	if [ -z $routeipv6 ]; then
		echo $"Missing option 'IPv6-route'"
		ifup_ipv6_tunnel_usage
		return 1
	fi
	
        # Run IPv6 test
	test_ipv6 || return    

        [ $[ $DEBUG_IPV6 & 1 ] = 0 ] || set -x

        # enable IPv6-over-IPv4 tunnels
	if ifconfig sit0 | grep -q "UP "; then
		# already up, do nothing
		true
	else
		# basic tunnel device to up
	        if [ $[ $DEBUG_IPV6 & 2 ] = 0 ] ; then
    			ifconfig sit0 up
		fi
        fi

        if [ $[ $DEBUG_IPV6 & 2 ] = 0 ]; then
                # Set up a tunnel
		route -A inet6 add $routeipv6 gw ::$addressipv4tunnel dev sit0
        fi

        [ $[ $DEBUG_IPV6 & 1 ] = 0 ] || set +x
}	

## Configure tunnels down

function ifdown_ipv6_tunnel() {
	device=$1
	addressipv4tunnel=$2
	routeipv6=$3

	if [ -z $device ]; then
		echo $"Missing option 'device'"
		ifup_ipv6_tunnel_usage
		return 1
	fi

	if [ -z $addressipv4tunnel ]; then
		echo $"Missing option 'IPv4-tunneladdress'"
		ifup_ipv6_tunnel_usage
		return 1
	fi

	if [ -z $routeipv6 ]; then
		echo $"Missing option 'IPv6-route'"
		ifup_ipv6_tunnel_usage
		return 1
	fi

        # Run IPv6 test
	test_ipv6 || return    

        [ $[ $DEBUG_IPV6 & 1 ] = 0 ] ||	set -x

        if [ $[ $DEBUG_IPV6 & 2 ] = 0 ]; then
                # Set up a tunnel
		route -A inet6 del $routeipv6 gw ::$addressipv4tunnel dev sit0
        fi

        # disable IPv6-over-IPv4 tunnels (if no longer a tunnel is up)
	if route -A inet6 -n | grep sit0 | grep -v -q "^::"; then
		# existing routes, do nothing
		true
	else
		# basic tunnel device to down
	        if [ $[ $DEBUG_IPV6 & 2 ] = 0 ] ; then
    			ifconfig sit0 down
		fi
        fi

        [ $[ $DEBUG_IPV6 & 1 ] = 0 ] || set +x
}	

	
##### Interface configuration

# Display usage
function ifup_ipv6_usage() {
	echo $"Usage: $0 interfacename IPv6-address IPv6-prefixlength"
}

## Configure interfaces up
function ifup_ipv6_real() {
	device=$1
	address=$2
	prefixlength=$3

	if [ -z $device ]; then
		echo $"Missing option 'device'"
		ifup_ipv6_usage
		return 1
	fi

	if [ -z $address ]; then
		echo $"Missing option 'IPv6-address'"
		ifup_ipv6_usage
		return 1
	fi

	if [ -z $prefixlength ]; then
		echo $"Missing option 'Prefixlength'"
		ifup_ipv6_usage
		return 1
	fi

    	# Run IPv6 test
	test_ipv6 || return    

	[ $[ $DEBUG_IPV6 & 1 ] = 0 ] || set -x

        if [ $[ $DEBUG_IPV6 & 2 ] = 0 ]; then
              ifconfig $device add $address/$length || return 2
	fi
    
        if [ $[ $DEBUG_IPV6 & 2 ] = 0 ]; then
              route -A inet6 add $address/$prefixlength dev $device || return 2
	fi

        [ $[ $DEBUG_IPV6 & 1 ] = 0 ] || set +x
}


## Configure interfaces down
function ifdown_ipv6_real() {
	device=$1
	address=$2
	prefixlength=$3

	if [ -z $device ]; then
		echo $"Missing option 'device'"
		ifup_ipv6_usage
		return 1
	fi

	if [ -z $address ]; then
		echo $"Missing option 'IPv6-address'"
		ifup_ipv6_usage
		return 1
	fi

	if [ -z $prefixlength ]; then
		echo $"Missing option 'Prefixlength'"
		ifup_ipv6_usage
		return 1
	fi

    	# Run IPv6 test
	test_ipv6 || return    

    	[ $[ $DEBUG_IPV6 & 1 ] = 0 ] || set -x


        if [ $[ $DEBUG_IPV6 & 2 ] = 0 ]; then
              route -A inet6 del $address/$prefixlength dev $device || return 2
	fi
        if [ $[ $DEBUG_IPV6 & 2 ] = 0 ]; then
              ifconfig $device del $address/$length || return 2
	fi
    
    	[ $[ $DEBUG_IPV6 & 1 ] = 0 ] || set +x
}