summaryrefslogtreecommitdiff
path: root/net.Linux/ip6to4.sh
blob: 03d4fac373e37c8b0441734f9e8850d9c920ea6e (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
# Copyright 2004-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

_config_vars="$_config_vars link suffix relay"

ip6to4_depend() {
	after interface
}

ip6to4_start() {
	case " ${MODULES} " in
		*" ifconfig "*)
			if [ "${IFACE}" != "sit0" ] ; then
				eerror "ip6to4 can only work on the sit0 interface using ifconfig"
				eerror "emerge sys-apps/iproute2 to use other interfaces"
				return 1
			fi
	esac

	local host= suffix= relay= addr= iface=${IFACE} new=
	eval host=\$link_${IFVAR}
	if [ -z "${host}" ] ; then
		eerror "link_${IFVAR} not set"
		return 1
	fi

	eval suffix=\${suffix_${IFVAR}:-1}
	eval relay=\${relay_${IFVAR}:-192.88.99.1}

	IFACE=${host}
	addrs=$(_get_inet_addresses)
	IFACE=${iface}
	if [ -z "${addrs}" ] ; then
		eerror "${host} is not configured with an IPv4 address"
		return 1
	fi

	for addr in ${addrs} ; do
		# Strip the subnet
		local ip="${addr%/*}" subnet="${addr#*/}"
		# We don't work on private IPv4 addresses
		case "${ip}" in
			127.*) continue ;;
			10.*) continue ;;
			192.168.*) continue ;;
			172.*)
				local i=16
				while [ ${i} -lt 32 ] ; do
					case "${ip}" in
						172.${i}.*) break ;;
					esac
					i=$((${i} + 1))
				done
				[ ${i} -lt 32 ] && continue
				;;
		esac
	
		veinfo "IPv4 address on ${host}: ${ip}/${subnet}"
		local OIFS=$IFS SIFS=${IFS-y} ipa= ip6=
		IFS="${IFS}."
		for i in ${ip} ; do
			ipa="${ipa} ${i}"
		done
		if [ "${SIFS}" = "y" ] ; then
			IFS=$OIFS
		else
			unset IFS
		fi
		eval ip6="$(printf "2002:%02x%02x:%02x%02x::%s" ${ipa} ${suffix})"
		veinfo "Derived IPv6 address: ${ip6}"

		# Now apply our IPv6 address to our config
		new="${new}${new:+ }${ip6}/16"
	done

	if [ -z "${new}" ] ; then
		eerror "No global IPv4 addresses found on interface ${host}"
		return 1
	fi

	if [ "${IFACE}" != "sit0" ] ; then
		ebegin "Creating 6to4 tunnel on ${IFACE}"
		_tunnel add "${IFACE}" mode sit ttl 255 remote any local "${ip}"
		eend $? || return 1
		_up
	fi
	
	# Now apply our config
	eval config_${config_index}=\'"${new}"\'
	config_index=$((${config_index} - 1))

	# Add a route for us, ensuring we don't delete anything else
	eval $(_get_array "routes_${IFVAR}")
	eval routes_${IFVAR}="\"$@ '2003::/3 via ::${relay} metric 2147483647'\""
}
	
# vim: set ts=4 :