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