blob: e6604a3e7e9d95a98348a216f7847e6beaf9886b (
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
|
#!/bin/sh
export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin
DNSALLOWOVERRIDE=$(/usr/local/sbin/read_xml_tag.sh boolean system/dnsallowoverride)
if [ "${2}" == "inet" ]; then
OLD_ROUTER=`cat /tmp/${1}_router`
if [ -n "${OLD_ROUTER}" ]; then
echo "Removing states to old router ${OLD_ROUTER}" | logger -t ppp-linkup
pfctl -i ${1} -k 0.0.0.0/0 -k ${OLD_ROUTER}/32
pfctl -i ${1} -k ${OLD_ROUTER}/32 -k 0.0.0.0/0
fi
# let the configuration system know that the ipv4 has changed.
echo ${4} > /tmp/${1}_router
echo ${3} > /tmp/${1}_ip
touch /tmp/${1}up
if [ "${DNSALLOWOVERRIDE}" = "true" ]; then
# write nameservers to file
echo -n "" > /var/etc/nameserver_${1}
if echo "${6}" | grep -q dns1; then
DNS1=`echo "${6}" | awk '{print $2}'`
echo "${DNS1}" >> /var/etc/nameserver_${1}
route change "${DNS1}" ${4}
fi
if echo "${7}" | grep -q dns2; then
DNS2=`echo "${7}" | awk '{print $2}'`
echo "${DNS2}" >> /var/etc/nameserver_${1}
route change "${DNS2}" ${4}
fi
pfSctl -c 'service reload dns'
sleep 1
fi
pfSctl -c "interface newip ${1}"
elif [ "${2}" == "inet6" ]; then
# let the configuration system know that the ipv6 has changed.
echo ${4} |cut -d% -f1 > /tmp/${1}_routerv6
echo ${3} |cut -d% -f1 > /tmp/${1}_ipv6
touch /tmp/${1}upv6
if [ "${DNSALLOWOVERRIDE}" = "true" ]; then
# write nameservers to file
echo -n "" > /var/etc/nameserver_v6${1}
if echo "${6}" | grep -q dns1; then
DNS1=`echo "${6}" | awk '{print $2}'`
echo "${DNS1}" >> /var/etc/nameserver_v6${1}
route change -inet6 "${DNS1}" ${4}
fi
if echo "${7}" | grep -q dns2; then
DNS2=`echo "${7}" | awk '{print $2}'`
echo "${DNS2}" >> /var/etc/nameserver_v6${1}
route change -inet6 "${DNS2}" ${4}
fi
pfSctl -c 'service reload dns'
sleep 1
fi
pfSctl -c "interface newipv6 ${1}"
fi
exit 0
|