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