]> git.ipfire.org Git - ipfire-2.x.git/blame - src/initscripts/networking/red
Merge remote-tracking branch 'origin/master' into next
[ipfire-2.x.git] / src / initscripts / networking / red
CommitLineData
d1e90efc
MT
1#!/bin/sh
2########################################################################
3# Begin
4#
5# Description : RED Device Script
6#
7# Authors : Michael Tremer - mitch@ipfire.org
8# Maniacikarus - maniacikarus@ipfire.org
9# Inspired by : Nathan Coulson - nathan@linuxfromscratch.org
10# Kevin P. Fleming - kpfleming@linuxfromscratch.org
11#
12# Version : 01.00
13#
14# Notes :
15#
16########################################################################
17
18. /etc/sysconfig/rc
19. ${rc_functions}
71ea0d68 20. /etc/init.d/networking/functions.network
1f2ff0fa 21
ff07f865 22#Define some defaults
ff7a3950
AF
23INET_VLAN=7
24IPTV_VLAN=8
872d5a1e 25ATM_DEV=0
ff07f865 26
1f2ff0fa
AF
27eval $(/usr/local/bin/readhash /var/ipfire/main/settings)
28if [ "$RRDLOG" == "" ]; then
29 RRDLOG=/var/log/rrd
30fi
31
d1e90efc 32eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings)
c3190a33 33eval $(/usr/local/bin/readhash /var/ipfire/dns/settings)
b8c750f3
JPT
34eval $(/usr/local/bin/readhash /var/ipfire/mac/settings)
35
36MAC=$(tr - : <<<$MAC)
1bffb899 37MAC1=$(tr - : <<<$MAC1)
d66c870e 38MAC2=$(tr - : <<<$MAC2)
d1e90efc
MT
39
40TYPE="${RED_TYPE}"
41DEVICE="${RED_DEV}"
42
0dde24fa
MT
43if [ "$TYPE" == "STATIC" ] || [ "$TYPE" == "DHCP" ]; then
44 if [ "$DEVICE" == "" ]; then
45 boot_mesg "No device for red network. Please run setup." ${FAILURE}
46 echo_failure
47 [ "${1}" == "start" ] && exit 0
48 fi
49fi
50
51if [ "${TYPE}" == "STATIC" ]; then
52 if [ "${DEVICE}" != "${GREEN_DEV}" ]; then
53 ADDRESS="${RED_ADDRESS}"
54 BROADCAST="${RED_BROADCAST}"
55 NETADDRESS="${RED_NETADDRESS}"
56 NETMASK="${RED_NETMASK}"
57 else
58 ADDRESS="${GREEN_ADDRESS}"
59 BROADCAST="${GREEN_BROADCAST}"
60 NETADDRESS="${GREEN_NETADDRESS}"
61 NETMASK="${GREEN_NETMASK}"
62 fi
d1e90efc 63 GATEWAY="${DEFAULT_GATEWAY}"
0db33b56
MT
64 # DNS1
65 # DNS2
d1e90efc
MT
66
67 if [ -z "${BROADCAST}" ]; then
0dde24fa 68 boot_mesg "BROADCAST variable missing, cannot continue." ${FAILURE}
d1e90efc
MT
69 echo_failure
70 exit 1
71 fi
72 if [ -n "${ADDRESS}" -a -n "${NETMASK}" ]; then
73 PREFIX=`whatmask ${NETMASK} | grep -e ^CIDR | awk -F': ' '{ print $2 }' | cut -c 2-`
74 args="${args} ${ADDRESS}/${PREFIX} broadcast ${BROADCAST}"
75 else
76 boot_mesg "ADDRESS and/or NETMASK variable missing from input, cannot continue." ${FAILURE}
77 echo_failure
78 exit 1
79 fi
d1e90efc
MT
80fi
81
82case "${1}" in
83 start)
0dde24fa
MT
84 if [ "${DEVICE}" != "${GREEN_DEV}" ] && [ "${DEVICE}" != "" ]; then
85 boot_mesg "Bringing up the ${DEVICE} interface..."
86 boot_mesg_flush
87 # Check if an interface is there...
88 if ip link show ${DEVICE} > /dev/null 2>&1; then
89 link_status=`ip link show ${DEVICE} 2> /dev/null`
90 if [ -n "${link_status}" ]; then
91 if ! echo "${link_status}" | grep -q UP; then
b8c750f3
JPT
92 if [ -n "$MAC" ]; then
93 boot_mesg "Setting mac address on ${DEVICE} to ${MAC}"
94 ip link set dev ${DEVICE} address ${MAC}
d66c870e 95 evaluate_retval
b8c750f3 96 fi
0dde24fa
MT
97 ip link set ${DEVICE} up
98 fi
d1e90efc 99 fi
0dde24fa
MT
100 else
101 boot_mesg "Interface ${DEVICE} doesn't exist." ${FAILURE}
102 echo_failure
103 exit 1
d1e90efc 104 fi
d1e90efc 105 fi
6c33dc5c 106
1e4656cd
AF
107 ## Create & Enable vnstat
108 /usr/bin/vnstat -u -i ${DEVICE} -r --enable --force > /dev/null 2>&1
d1e90efc
MT
109
110 if [ "${TYPE}" == "STATIC" ]; then
0dde24fa
MT
111
112 if [ "$DEVICE" != "${GREEN_DEV}" ]; then
113 boot_mesg "Adding IPv4 address ${ADDRESS} to the ${DEVICE} interface..."
114 ip addr add ${args} dev ${DEVICE}
115 evaluate_retval
116 fi
0db33b56
MT
117 echo -n "${DEVICE}" > /var/ipfire/red/iface
118 echo -n "${ADDRESS}" > /var/ipfire/red/local-ipaddress
119 echo -n "${GATEWAY}" > /var/ipfire/red/remote-ipaddress
3d9d5884
AF
120 grep -v -E "\<gateway\>" /etc/hosts > /tmp/hosts
121 echo "$GATEWAY gateway" >> /tmp/hosts
b2f872eb 122 mv /tmp/hosts /etc/hosts
0db33b56
MT
123 echo -n "${DNS1}" > /var/ipfire/red/dns1
124 echo -n "${DNS2}" > /var/ipfire/red/dns2
bcdde652 125 touch /var/ipfire/red/active
d1e90efc 126
0be884d6
MT
127 # Create route to default gateway
128 ip route add ${GATEWAY} dev ${DEVICE}
129
040e5040
MT
130 boot_mesg "Setting up default gateway ${GATEWAY}..."
131 ip route add default via ${GATEWAY} dev ${DEVICE}
132 evaluate_retval
133
0e42072a 134 run_subdir ${rc_base}/init.d/networking/red.up/
bbe6aff7
AF
135
136 # Configure aliases only if red static
137 /usr/local/bin/setaliases
138
d1e90efc 139 elif [ "${TYPE}" == "DHCP" ]; then
71ea0d68
SS
140 # Add firewall rules to allow comunication with the dhcp server on red.
141 iptables -A REDINPUT -p tcp --source-port 67 --destination-port 68 -i ${DEVICE} -j ACCEPT
142 iptables -A REDINPUT -p udp --source-port 67 --destination-port 68 -i ${DEVICE} -j ACCEPT
7e0cd11d 143
d1e90efc
MT
144 echo -n "${DEVICE}" > /var/ipfire/red/iface
145
71ea0d68
SS
146 # Check if the wlan-client is used on red.
147 # To determine this we check if a wpa_supplicant is running.
148 pid="$(pidof wpa_supplicant)"
149
150 if [ -z "${pid}" ]; then
151 # No wpa_supplicant is running. So it's save to start dhcpcd.
152 dhcpcd_start "${DEVICE}"
153 fi
154
941e123e
AF
155 ## Create & Enable vnstat
156 /usr/bin/vnstat -u -i ${DEVICE} -r --enable --force > /dev/null 2>&1
157
d1e90efc 158 elif [ "$TYPE" == "PPPOE" ]; then
06b912c5 159
a89770fa 160 if ( ps ax | grep -q [p]ppd ); then
0dde24fa
MT
161 boot_mesg "pppd is still running." ${FAILURE}
162 echo_failure
163 exit 1
a89770fa 164 fi
0dde24fa 165
d1e90efc
MT
166 eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings)
167
905fbf3e 168 [ -c "/dev/ppp" ] || mknod /dev/ppp c 108 0
06b912c5
MT
169
170 # We force the plugin method, anyway.
171 METHOD="PPPOE_PLUGIN"
172
a89770fa 173 PPP_NIC=${DEVICE}
40049855 174
d0c3a0c5
AF
175
176 if [ "$TYPE" == "pppoeatm" ] || [ "$TYPE" == "pptpatm" ]; then
872d5a1e
AF
177 PPP_NIC=nas${ATM_DEV}
178 DEVICE=nas${ATM_DEV}
7f263dc7 179 boot_mesg "Creating ATM-Bridge as $PPP_NIC ..."
872d5a1e 180 br2684ctl -c${ATM_DEV} -e${ENCAP} -a${ATM_DEV}.${VPI}.${VCI} >/dev/null 2>&1 &
d0c3a0c5 181 sleep 1
d0ff84a6
AF
182
183 # use user-defined or green mac address for nas0
184 if [ -n "$MAC" ]; then
872d5a1e 185 ip link set dev nas${ATM_DEV} address ${MAC}
d0ff84a6 186 else
872d5a1e 187 ip link set dev nas${ATM_DEV} address $(cat /sys/class/net/green0/address)
d0ff84a6
AF
188 fi
189
d0c3a0c5
AF
190 if [ "$TYPE" == "pppoeatm" ]; then
191 TYPE="pppoe"
192 fi
193 if [ "$TYPE" == "pptpatm" ]; then
194 TYPE="pptp"
195 fi
196 fi
197
40049855 198 if [ "$TYPE" == "vdsl" ]; then
7f263dc7 199 boot_mesg "Creating VLAN Interface ${DEVICE}.${INET_VLAN} ..."
40049855 200 modprobe 8021q
ff7a3950 201 vconfig add ${DEVICE} ${INET_VLAN}
1bffb899 202 if [ -n "$MAC1" ]; then
ff7a3950
AF
203 boot_mesg "Setting mac address on ${DEVICE}.${INET_VLAN} to ${MAC1}"
204 ip link set dev ${DEVICE}.${INET_VLAN} address ${MAC1}
1bffb899
AF
205 evaluate_retval
206 fi
ff7a3950 207 PPP_NIC=${DEVICE}.${INET_VLAN}
40049855
AF
208 sleep 0.2
209 ip link set ${PPP_NIC} up
210 TYPE="pppoe"
d0c3a0c5
AF
211 fi
212 if [ "${IPTV}" == "enable" ]; then
ff7a3950
AF
213 PIDFILE="/var/run/dhcpcd-${DEVICE}.${IPTV_VLAN}.pid"
214 LEASEINFO="/var/ipfire/dhcpc/dhcpcd-${DEVICE}.${IPTV_VLAN}.info"
d0c3a0c5
AF
215 # Test to see if there is a stale pid file
216 if [ -f "$PIDFILE" ]; then
217 ps `cat "$PIDFILE"` | grep dhcpcd > /dev/null
218 if [ $? != 0 ]; then
ff7a3950 219 rm -f /var/run/dhcpcd-${DEVICE}.${IPTV_VLAN}.pid > /dev/null
bbe6aff7 220 fi
d0c3a0c5 221 fi
bbe6aff7 222
d0c3a0c5 223 if [ ! -f "$PIDFILE" ]; then
7f263dc7 224 boot_mesg "Creating VLAN Interface ${DEVICE}.${IPTV_VLAN} ..."
d0c3a0c5 225 modprobe 8021q
ff7a3950 226 vconfig add ${DEVICE} ${IPTV_VLAN}
d0c3a0c5 227 if [ -n "$MAC2" ]; then
ff7a3950
AF
228 boot_mesg "Setting mac address on ${DEVICE}.${IPTV_VLAN} to ${MAC2}"
229 ip link set dev ${DEVICE}.${IPTV_VLAN} address ${MAC2}
d0c3a0c5
AF
230 evaluate_retval
231 fi
ff7a3950
AF
232 boot_mesg -n "Starting dhcpcd on the ${DEVICE}.${IPTV_VLAN} interface..."
233 /sbin/dhcpcd ${DEVICE}.${IPTV_VLAN} ${DHCP_START} >/dev/null 2>&1
d0c3a0c5 234 RET="$?"
bbe6aff7 235
d0c3a0c5 236 if [ "$RET" = "0" ]; then
ff7a3950 237 . /var/ipfire/dhcpc/dhcpcd-${DEVICE}.${IPTV_VLAN}.info
d0c3a0c5
AF
238 echo ""
239 echo_ok
ff7a3950 240 boot_mesg " DHCP Assigned Settings for ${DEVICE}.${IPTV_VLAN}:"
d0c3a0c5
AF
241 boot_mesg_flush
242 boot_mesg " IP Address: $ip_address"
243 boot_mesg_flush
244 boot_mesg " Hostname: $RED_DHCP_HOSTNAME"
245 boot_mesg_flush
246 boot_mesg " Subnet Mask: $subnet_mask"
247 boot_mesg_flush
248 boot_mesg " Default Gateway: $routers"
249 boot_mesg_flush
250 boot_mesg " DNS Server: $domain_name_servers"
251 boot_mesg_flush
bbe6aff7 252
d0c3a0c5
AF
253 else
254 echo ""
255 $(exit "$RET")
256 evaluate_retval
bbe6aff7
AF
257 fi
258 fi
40049855 259 fi
5aae218d 260 if [ "$TYPE" == "pppoe" ] || [ "$TYPE" == "pptp" ]; then
4cd4876a 261 if [ "$PPP_NIC" == "" ]; then
0dde24fa
MT
262 boot_mesg "No device for red interface given. Check netsetup or dialprofile!" ${FAILURE}
263 echo_failure
cb1fb691 264 exit 0
0dde24fa 265 fi
5aae218d 266 boot_mesg "Bringing up the $TYPE interface on $PPP_NIC ..."
58e9b9dc 267 ip addr flush dev $PPP_NIC >/dev/null 2>&1
5aae218d 268 if [ "$TYPE" == "pptp" ]; then
fd850b7e 269 if [ "$PPTP_NICCFG" == "dhcp" ]; then
fd850b7e
AF
270 # Test to see if there is a stale pid file
271 if [ -f "$PIDFILE" ]; then
272 ps `cat "$PIDFILE"` | grep dhcpcd > /dev/null
273 if [ $? != 0 ]; then
367a7770 274 rm -f /var/run/dhcpcd-${DEVICE}.pid > /dev/null
fd850b7e
AF
275 fi
276 fi
277
278 if [ ! -f "$PIDFILE" ]; then
d9563c55 279 boot_mesg -n "Starting dhcpcd on the ${DEVICE} interface..."
367a7770 280 /sbin/dhcpcd ${DEVICE} ${DHCP_START} >/dev/null 2>&1
fd850b7e
AF
281 RET="$?"
282
283 if [ "$RET" = "0" ]; then
284 . /var/ipfire/dhcpc/dhcpcd-${DEVICE}.info
285 echo ""
286 echo_ok
287 boot_mesg " DHCP Assigned Settings for ${DEVICE}:"
288 boot_mesg_flush
7f8e589b 289 boot_mesg " IP Address: $ip_address"
fd850b7e
AF
290 boot_mesg_flush
291 boot_mesg " Hostname: $RED_DHCP_HOSTNAME"
292 boot_mesg_flush
7f8e589b 293 boot_mesg " Subnet Mask: $subnet_mask"
fd850b7e 294 boot_mesg_flush
7f8e589b 295 boot_mesg " Default Gateway: $routers"
fd850b7e 296 boot_mesg_flush
7f8e589b 297 boot_mesg " DNS Server: $domain_name_servers"
fd850b7e 298 boot_mesg_flush
7f8e589b 299 /sbin/route add $PPTP_PEER gw $routers $PPP_NIC
fd850b7e
AF
300 else
301 echo ""
302 $(exit "$RET")
303 evaluate_retval
304 fi
305 fi
306 else
307 ip addr add $PPTP_NICCFG dev $PPP_NIC
308 fi
5aae218d 309 fi
58e9b9dc 310 ip link set ${PPP_NIC} up
164a3b51
AF
311 if [ -n "${PPTP_ROUTE}" ]; then
312 boot_mesg "Set route ${PPTP_ROUTE} to pptp server..."
313 route add ${PPTP_ROUTE}
314 fi
27b8cc24
MT
315 else
316 boot_mesg "Bringing up the PPP via ${TYPE} on ${COMPORT}..."
317 fi
0dde24fa 318
905fbf3e
MT
319 ### ###
320 ### Configuring the pppd ###
321 ### ###
322
323 ### Plugin Options
324 #
5aae218d
AF
325 if [ "$TYPE" == "pppoe" ]; then
326 [ "${METHOD}" == "PPPOE_PLUGIN" ] && \
d94eba78 327 PLUGOPTS="plugin rp-pppoe.so"
5aae218d 328 fi
d1e90efc 329
905fbf3e
MT
330 ### Synchronous Mode
331 #
332 #PPPOE_SYNC=-s
a89770fa
MT
333 #PPPD_SYNC=sync
334
335 ### Access Concentrator Name
336 #
905fbf3e
MT
337 if [ -n "${CONCENTRATORNAME}" ]; then
338 ACNAME="-C ${CONCENTRATORNAME}"
d1e90efc 339 fi
905fbf3e
MT
340
341 ### Service Name
342 #
343 if [ -n "${SERVICENAME}" ]; then
344 if [ "${METHOD}" == "PPPOE_PLUGIN" ]; then
345 PLUGOPTS+=" rp_pppoe_service ${SERVICENAME}"
346 else
347 SERVICENAME="-S ${SERVICENAME}"
348 fi
d1e90efc 349 fi
a89770fa 350
905fbf3e
MT
351 ### Authentication Types
352 #
d1e90efc 353 if [ "${AUTH}" == "pap" ]; then
905fbf3e 354 AUTH="-chap"
d1e90efc 355 elif [ "${AUTH}" == "chap" ]; then
905fbf3e 356 AUTH="-pap"
57cb9775
CS
357 else
358 AUTH=""
d1e90efc 359 fi
a89770fa
MT
360
361 ### DNS Config
362 #
363 if [ "${DNS}" == "Automatic" ]; then
364 DNS="usepeerdns"
365 else
366 DNS=""
367 echo nameserver=$DNS1 > /etc/ppp/resolv.conf
368 echo nameserver=$DNS2 >> /etc/ppp/resolv.conf
a89770fa
MT
369 fi
370
905fbf3e
MT
371 ### Dial On Demand
372 #
d1e90efc
MT
373 if [ "${RECONNECTION}" != "persistent" ]; then
374 if [ "${TIMEOUT}" != "0" ] && [ "${TIMEOUT}" != "" ]; then
375 SECONDS=$[${TIMEOUT} * 60]
905fbf3e
MT
376 else
377 SECONDS=300
d1e90efc
MT
378 fi
379 if [ "${RECONNECTION}" == "dialondemand" ]; then
380 touch /var/ipfire/red/dial-on-demand
905fbf3e 381 DEMAND="demand persist idle ${SECONDS} 10.112.112.112:10.112.112.113"
a89770fa 382 DEMAND+=" ipcp-accept-remote ipcp-accept-local noipdefault ktune"
d1e90efc 383 fi
905fbf3e
MT
384 fi
385
5aae218d
AF
386 if [ "$TYPE" == "pppoe" ]; then
387 ### When using pppoe-plugin the device has to be the last option
388 #
389 [ "${METHOD}" == "PPPOE_PLUGIN" ] && PLUGOPTS+=" $PPP_NIC"
390 fi
27b8cc24
MT
391
392 if [ "$TYPE" == "modem" ]; then
a89770fa 393 PLUGOPTS=" /dev/${COMPORT} ${DTERATE} connect /etc/ppp/dialer lock modem crtscts"
7c653e4b 394 METHOD="PPPOE_PLUGIN"
27b8cc24 395 elif [ "$TYPE" == "serial" ]; then
a89770fa 396 PLUGOPTS=" /dev/${COMPORT} ${DTERATE} connect /bin/true lock modem crtscts"
7c653e4b 397 METHOD="PPPOE_PLUGIN"
27b8cc24 398 fi
905fbf3e
MT
399
400 ### Standard PPP options we always use
401 #
a89770fa 402 PPP_STD_OPTIONS="$PLUGOPTS $DNS defaultroute noipdefault noauth"
89baf6d5 403 PPP_STD_OPTIONS+=" default-asyncmap hide-password nodetach"
463f9ede 404 PPP_STD_OPTIONS+=" noaccomp nodeflate nopcomp novj novjccomp"
905fbf3e 405 PPP_STD_OPTIONS+=" nobsdcomp user ${USERNAME} lcp-echo-interval 20"
fb27520e 406 PPP_STD_OPTIONS+=" lcp-echo-failure 5 ${AUTH}"
89baf6d5
MT
407
408 if [ -n "${MTU}" ]; then
409 PPP_STD_OPTIONS="${PPP_STD_OPTIONS} mtu ${MTU}"
410 fi
411
412 if [ -n "${MRU}" ]; then
413 PPP_STD_OPTIONS="${PPP_STD_OPTIONS} mru ${MRU}"
414 fi
a89770fa 415
905fbf3e
MT
416 ### Debugging
417 #
418 if [ "${DEBUG}" == "on" ]; then
419 DEBUG="debug"
d1e90efc 420 else
905fbf3e 421 DEBUG=""
d1e90efc
MT
422 fi
423
905fbf3e
MT
424 ### PPPoE invocation
425 #
a89770fa
MT
426 if [ "$TYPE" == "pppoe" ]; then
427 PPPOE_CMD="/usr/sbin/pppoe -p /var/run/ppp-ipfire.pid.pppoe -I $PPP_NIC"
27b8cc24
MT
428 PPPOE_CMD+=" -T 80 -U $PPPOE_SYNC $ACNAME $SERVICENAMEOPT"
429 fi
5aae218d
AF
430
431 ### PPTP ###
432 #
433 if [ "$TYPE" == "pptp" ]; then
434 PPPOE_CMD="pptp $PPTP_PEER --nolaunchpppd"
7c653e4b 435 METHOD=""
5aae218d 436 fi
d1e90efc 437
905fbf3e
MT
438 ### Run everything
439 #
7c653e4b 440 if [ "$METHOD" == "PPPOE_PLUGIN" ]; then
905fbf3e
MT
441 /usr/sbin/pppd $PPP_STD_OPTIONS $DEBUG $DEMAND >/dev/null 2>&1 &
442 evaluate_retval
a89770fa 443 # echo PLUGIN: /usr/sbin/pppd $PPP_STD_OPTIONS $DEBUG $DEMAND
905fbf3e
MT
444 else
445 /usr/sbin/pppd pty "$PPPOE_CMD" $PPP_STD_OPTIONS $DEBUG $DEMAND $PPPD_SYNC >/dev/null 2>&1 &
446 evaluate_retval
a89770fa 447 # echo PPP: /usr/sbin/pppd pty "$PPPOE_CMD" $PPP_STD_OPTIONS $DEBUG $DEMAND $PPPD_SYNC
905fbf3e 448 fi
1e4656cd
AF
449 ## Create & Enable vnstat
450 /usr/bin/vnstat -u -i ppp0 -r --enable --force > /dev/null 2>&1
905fbf3e 451 /etc/rc.d/init.d/connectd start
1f2ff0fa 452 # Add a NaN value to ppp0 rrd to supress spikes at reconnect
c772568a 453 rrdtool update $RRDLOG/collectd/localhost/interface/if_octets-ppp0.rrd \
49ab1173 454 $(date +%s):: > /dev/null 2>&1
28ec28bc 455 exit 0
d1e90efc 456 fi
d1e90efc
MT
457 ;;
458
459 stop)
ebf64a93
MT
460 rm -f /var/ipfire/red/{active,device,dial-on-demand,dns1,dns2,local-ipaddress,remote-ipaddress,resolv.conf}
461
d1e90efc 462 if [ "$TYPE" == "STATIC" ]; then
0dde24fa
MT
463 boot_mesg "Stopping default gateway ${GATEWAY}..."
464 ip route del default via ${GATEWAY} >/dev/null 2>&1
465 echo_ok
466 if [ "$DEVICE" != "${GREEN_DEV}" ]; then
70631572
AF
467 boot_mesg "Removing IPv4 addresses from the ${DEVICE} interface..."
468 ip addr flush dev ${DEVICE}
0dde24fa
MT
469 evaluate_retval
470 fi
0e42072a 471 run_subdir ${rc_base}/init.d/networking/red.down/
f8841352 472
5aae218d 473 elif [ "$TYPE" == "PPPOE" ]; then
a89770fa 474 boot_mesg "Bringing down the PPP interface ..."
1e4656cd
AF
475 ## Disable vnstat collection
476 /usr/bin/vnstat -u -i ppp0 -r --disable > /dev/null 2>&1
93b34528 477 rm -f /var/ipfire/red/keepconnected
a89770fa 478 killall -w -s TERM /usr/sbin/pppd 2>/dev/null
352e626f 479 evaluate_retval
1f2ff0fa 480 # Add a NaN value to ppp0 rrd to supress spikes at reconnect
c772568a 481 rrdtool update $RRDLOG/collectd/localhost/interface/if_octets-ppp0.rrd \
49ab1173 482 $(date +%s):: > /dev/null 2>&1
0dde24fa 483
71ea0d68
SS
484 elif [ "$TYPE" == "DHCP" ]; then
485 # Check if the wlan-client is used on red.
486 # To determine this we check if a wpa_supplicant is running.
487 pid="$(pidof wpa_supplicant)"
488
489 if [ -z "${pid}" ]; then
490 # Stop dhcpcd.
491 dhcpcd_stop "${DEVICE}"
fd850b7e
AF
492 fi
493 fi
494
164a3b51
AF
495 if [ -n "${PPTP_ROUTE}" ]; then
496 route del ${PPTP_ROUTE}
497 fi
498
0dde24fa 499 if [ "$DEVICE" != "${GREEN_DEV}" ] && [ "$DEVICE" != "" ]; then
ff7a3950 500 link_status=`ip link show $DEVICE.${INET_VLAN} 2> /dev/null`
40049855
AF
501 if [ -n "${link_status}" ]; then
502 if echo "${link_status}" | grep -q UP; then
ff7a3950
AF
503 boot_mesg "Bringing down the ${DEVICE}.${INET_VLAN} interface..."
504 ip link set ${DEVICE}.${INET_VLAN} down
505 vconfig rem ${DEVICE}.${INET_VLAN}
40049855
AF
506 evaluate_retval
507 fi
bbe6aff7
AF
508 else
509 link_status=`ip link show $DEVICE 2> /dev/null`
510 if [ -n "${link_status}" ]; then
511 if echo "${link_status}" | grep -q UP; then
512 boot_mesg "Bringing down the ${DEVICE} interface..."
513 ip link set ${DEVICE} down
514 evaluate_retval
515 fi
0dde24fa 516 fi
d1e90efc
MT
517 fi
518 fi
cb1fb691 519 killall -w -s KILL /usr/sbin/pppd >/dev/null 2>&1
5aae218d 520 killall -w -s KILL pptp >/dev/null 2>&1
cb1fb691 521 killall -w -s KILL br2684ctl >/dev/null 2>&1
6c33dc5c 522
1e4656cd
AF
523 ## Disable vnstat collection
524 /usr/bin/vnstat -u -i ${DEVICE} -r --disable > /dev/null 2>&1
ed35052a 525
6c33dc5c 526 exit 0;
d1e90efc 527 ;;
d1e90efc
MT
528esac
529
530# End