blob: ec883935d5bb61b00e902c83ed105c5bd7e811a6 (
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
|
# accept_source_route - Text
# Accept source routing (routing extension header).
#
# enable: Accept only routing header type 2.
# disable: Do not accept routing header.
#
# Default: disable
type: txt
help: Set policy for handling IPv6 packets with routing extension header
comp_help:Possible completions:
enable\tEnable processing of IPv6 packets with routing header type 2
disable\tDisable processing of IPv6 packets with routing header
default: "disable"
syntax:expression: $VAR(@) in "enable", "disable"; "ipv6-src-route must be enable or disable"
update:
if [ -d /proc/sys/net/ipv6 ]; then
array=(`ls /proc/sys/net/ipv6/conf/`)
array_len=${#array[*]}
i=0
while [ $i -lt $array_len ]; do
if [ x$VAR(@) == xenable ]; then
sudo sh -c "echo 0 > \
/proc/sys/net/ipv6/conf/${array[$i]%:*}/accept_source_route"
else
sudo sh -c "echo -1 > \
/proc/sys/net/ipv6/conf/${array[$i]%:*}/accept_source_route"
fi
let i++
done
fi
delete:
if [ -d /proc/sys/net/ipv6 ]; then
array=(`ls /proc/sys/net/ipv6/conf/`)
array_len=${#array[*]}
i=0
while [ $i -lt $array_len ]; do
sudo sh -c "echo -1 > \
/proc/sys/net/ipv6/conf/${array[$i]%:*}/accept_source_route"
let i++
done
fi
|