summaryrefslogtreecommitdiff
path: root/templates/firewall/ipv6-src-route/node.def
blob: be69afe5536d24a0eb57773cacca0021925b424c (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
# accept_source_route - INTEGER
#         Accept source routing (routing extension header).
# 
#    >= 0: Accept only routing header type 2.
#    < 0: Do not accept routing header.
# 
#    Default: -1


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:
        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

delete:
            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