]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/blame - src/initscripts/networking/red
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into rust
[people/mfischer/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
883ec31e
SS
229 # Write red device name to the corresponding file.
230 echo -n "${RED_DEV}" > /var/ipfire/red/iface
231
957863f7 232 # Start the DHCP client
8d09028b 233 dhcpcd_start "${RED_DEV}" --dhcp
957863f7
MT
234
235 # Done
236 exit 0
d0c3a0c5
AF
237 fi
238
40049855 239 if [ "$TYPE" == "vdsl" ]; then
7f263dc7 240 boot_mesg "Creating VLAN Interface ${DEVICE}.${INET_VLAN} ..."
40049855 241 modprobe 8021q
ff7a3950 242 vconfig add ${DEVICE} ${INET_VLAN}
1bffb899 243 if [ -n "$MAC1" ]; then
ff7a3950
AF
244 boot_mesg "Setting mac address on ${DEVICE}.${INET_VLAN} to ${MAC1}"
245 ip link set dev ${DEVICE}.${INET_VLAN} address ${MAC1}
1bffb899
AF
246 evaluate_retval
247 fi
ff7a3950 248 PPP_NIC=${DEVICE}.${INET_VLAN}
40049855
AF
249 sleep 0.2
250 ip link set ${PPP_NIC} up
251 TYPE="pppoe"
d0c3a0c5
AF
252 fi
253 if [ "${IPTV}" == "enable" ]; then
18136c5c 254 PIDFILE="/var/run/dhcpcd/${DEVICE}.${IPTV_VLAN}.pid"
ff7a3950 255 LEASEINFO="/var/ipfire/dhcpc/dhcpcd-${DEVICE}.${IPTV_VLAN}.info"
d0c3a0c5
AF
256 # Test to see if there is a stale pid file
257 if [ -f "$PIDFILE" ]; then
258 ps `cat "$PIDFILE"` | grep dhcpcd > /dev/null
259 if [ $? != 0 ]; then
18136c5c 260 rm -f /var/run/dhcpcd/${DEVICE}.${IPTV_VLAN}.pid > /dev/null
bbe6aff7 261 fi
d0c3a0c5 262 fi
bbe6aff7 263
d0c3a0c5 264 if [ ! -f "$PIDFILE" ]; then
7f263dc7 265 boot_mesg "Creating VLAN Interface ${DEVICE}.${IPTV_VLAN} ..."
d0c3a0c5 266 modprobe 8021q
ff7a3950 267 vconfig add ${DEVICE} ${IPTV_VLAN}
d0c3a0c5 268 if [ -n "$MAC2" ]; then
66c36198 269 boot_mesg "Setting mac address on ${DEVICE}.${IPTV_VLAN} to ${MAC2}"
ff7a3950 270 ip link set dev ${DEVICE}.${IPTV_VLAN} address ${MAC2}
d0c3a0c5
AF
271 evaluate_retval
272 fi
ff7a3950
AF
273 boot_mesg -n "Starting dhcpcd on the ${DEVICE}.${IPTV_VLAN} interface..."
274 /sbin/dhcpcd ${DEVICE}.${IPTV_VLAN} ${DHCP_START} >/dev/null 2>&1
d0c3a0c5 275 RET="$?"
bbe6aff7 276
d0c3a0c5 277 if [ "$RET" = "0" ]; then
ff7a3950 278 . /var/ipfire/dhcpc/dhcpcd-${DEVICE}.${IPTV_VLAN}.info
d0c3a0c5
AF
279 echo ""
280 echo_ok
ff7a3950 281 boot_mesg " DHCP Assigned Settings for ${DEVICE}.${IPTV_VLAN}:"
d0c3a0c5
AF
282 boot_mesg_flush
283 boot_mesg " IP Address: $ip_address"
284 boot_mesg_flush
285 boot_mesg " Hostname: $RED_DHCP_HOSTNAME"
286 boot_mesg_flush
287 boot_mesg " Subnet Mask: $subnet_mask"
288 boot_mesg_flush
289 boot_mesg " Default Gateway: $routers"
290 boot_mesg_flush
291 boot_mesg " DNS Server: $domain_name_servers"
292 boot_mesg_flush
bbe6aff7 293
d0c3a0c5
AF
294 else
295 echo ""
296 $(exit "$RET")
297 evaluate_retval
bbe6aff7
AF
298 fi
299 fi
40049855 300 fi
5aae218d 301 if [ "$TYPE" == "pppoe" ] || [ "$TYPE" == "pptp" ]; then
4cd4876a 302 if [ "$PPP_NIC" == "" ]; then
0dde24fa
MT
303 boot_mesg "No device for red interface given. Check netsetup or dialprofile!" ${FAILURE}
304 echo_failure
cb1fb691 305 exit 0
0dde24fa 306 fi
5aae218d 307 boot_mesg "Bringing up the $TYPE interface on $PPP_NIC ..."
58e9b9dc 308 ip addr flush dev $PPP_NIC >/dev/null 2>&1
5aae218d 309 if [ "$TYPE" == "pptp" ]; then
fd850b7e 310 if [ "$PPTP_NICCFG" == "dhcp" ]; then
fd850b7e
AF
311 # Test to see if there is a stale pid file
312 if [ -f "$PIDFILE" ]; then
313 ps `cat "$PIDFILE"` | grep dhcpcd > /dev/null
314 if [ $? != 0 ]; then
18136c5c 315 rm -f /var/run/dhcpcd/${DEVICE}.pid > /dev/null
fd850b7e
AF
316 fi
317 fi
318
319 if [ ! -f "$PIDFILE" ]; then
d9563c55 320 boot_mesg -n "Starting dhcpcd on the ${DEVICE} interface..."
367a7770 321 /sbin/dhcpcd ${DEVICE} ${DHCP_START} >/dev/null 2>&1
fd850b7e
AF
322 RET="$?"
323
324 if [ "$RET" = "0" ]; then
325 . /var/ipfire/dhcpc/dhcpcd-${DEVICE}.info
326 echo ""
327 echo_ok
328 boot_mesg " DHCP Assigned Settings for ${DEVICE}:"
329 boot_mesg_flush
7f8e589b 330 boot_mesg " IP Address: $ip_address"
fd850b7e
AF
331 boot_mesg_flush
332 boot_mesg " Hostname: $RED_DHCP_HOSTNAME"
333 boot_mesg_flush
7f8e589b 334 boot_mesg " Subnet Mask: $subnet_mask"
fd850b7e 335 boot_mesg_flush
7f8e589b 336 boot_mesg " Default Gateway: $routers"
fd850b7e 337 boot_mesg_flush
7f8e589b 338 boot_mesg " DNS Server: $domain_name_servers"
fd850b7e 339 boot_mesg_flush
7f8e589b 340 /sbin/route add $PPTP_PEER gw $routers $PPP_NIC
fd850b7e
AF
341 else
342 echo ""
343 $(exit "$RET")
344 evaluate_retval
345 fi
346 fi
347 else
348 ip addr add $PPTP_NICCFG dev $PPP_NIC
349 fi
5aae218d 350 fi
58e9b9dc 351 ip link set ${PPP_NIC} up
164a3b51
AF
352 if [ -n "${PPTP_ROUTE}" ]; then
353 boot_mesg "Set route ${PPTP_ROUTE} to pptp server..."
354 route add ${PPTP_ROUTE}
355 fi
27b8cc24
MT
356 else
357 boot_mesg "Bringing up the PPP via ${TYPE} on ${COMPORT}..."
358 fi
66c36198 359
905fbf3e
MT
360 ### ###
361 ### Configuring the pppd ###
362 ### ###
66c36198 363
905fbf3e 364 ### Plugin Options
66c36198 365 #
5aae218d
AF
366 if [ "$TYPE" == "pppoe" ]; then
367 [ "${METHOD}" == "PPPOE_PLUGIN" ] && \
d94eba78 368 PLUGOPTS="plugin rp-pppoe.so"
5aae218d 369 fi
d1e90efc 370
905fbf3e
MT
371 ### Synchronous Mode
372 #
373 #PPPOE_SYNC=-s
a89770fa 374 #PPPD_SYNC=sync
66c36198 375
a89770fa
MT
376 ### Access Concentrator Name
377 #
905fbf3e
MT
378 if [ -n "${CONCENTRATORNAME}" ]; then
379 ACNAME="-C ${CONCENTRATORNAME}"
d1e90efc 380 fi
905fbf3e
MT
381
382 ### Service Name
383 #
384 if [ -n "${SERVICENAME}" ]; then
385 if [ "${METHOD}" == "PPPOE_PLUGIN" ]; then
386 PLUGOPTS+=" rp_pppoe_service ${SERVICENAME}"
387 else
388 SERVICENAME="-S ${SERVICENAME}"
389 fi
d1e90efc 390 fi
a89770fa 391
905fbf3e
MT
392 ### Authentication Types
393 #
d1e90efc 394 if [ "${AUTH}" == "pap" ]; then
905fbf3e 395 AUTH="-chap"
d1e90efc 396 elif [ "${AUTH}" == "chap" ]; then
905fbf3e 397 AUTH="-pap"
57cb9775
CS
398 else
399 AUTH=""
d1e90efc 400 fi
a89770fa 401
66c36198 402 ### Dial On Demand
905fbf3e 403 #
d1e90efc
MT
404 if [ "${RECONNECTION}" != "persistent" ]; then
405 if [ "${TIMEOUT}" != "0" ] && [ "${TIMEOUT}" != "" ]; then
406 SECONDS=$[${TIMEOUT} * 60]
905fbf3e
MT
407 else
408 SECONDS=300
d1e90efc
MT
409 fi
410 if [ "${RECONNECTION}" == "dialondemand" ]; then
411 touch /var/ipfire/red/dial-on-demand
905fbf3e 412 DEMAND="demand persist idle ${SECONDS} 10.112.112.112:10.112.112.113"
a89770fa 413 DEMAND+=" ipcp-accept-remote ipcp-accept-local noipdefault ktune"
d1e90efc 414 fi
905fbf3e 415 fi
66c36198 416
5aae218d
AF
417 if [ "$TYPE" == "pppoe" ]; then
418 ### When using pppoe-plugin the device has to be the last option
419 #
420 [ "${METHOD}" == "PPPOE_PLUGIN" ] && PLUGOPTS+=" $PPP_NIC"
421 fi
66c36198 422
27b8cc24 423 if [ "$TYPE" == "modem" ]; then
a89770fa 424 PLUGOPTS=" /dev/${COMPORT} ${DTERATE} connect /etc/ppp/dialer lock modem crtscts"
7c653e4b 425 METHOD="PPPOE_PLUGIN"
27b8cc24 426 elif [ "$TYPE" == "serial" ]; then
a89770fa 427 PLUGOPTS=" /dev/${COMPORT} ${DTERATE} connect /bin/true lock modem crtscts"
7c653e4b 428 METHOD="PPPOE_PLUGIN"
27b8cc24 429 fi
66c36198 430
905fbf3e
MT
431 ### Standard PPP options we always use
432 #
c3ae88ca 433 PPP_STD_OPTIONS="$PLUGOPTS usepeerdns defaultroute noipdefault noauth"
52764dbe 434 PPP_STD_OPTIONS+=" default-asyncmap hide-password nodetach noipv6"
463f9ede 435 PPP_STD_OPTIONS+=" noaccomp nodeflate nopcomp novj novjccomp"
905fbf3e 436 PPP_STD_OPTIONS+=" nobsdcomp user ${USERNAME} lcp-echo-interval 20"
fb27520e 437 PPP_STD_OPTIONS+=" lcp-echo-failure 5 ${AUTH}"
89baf6d5
MT
438
439 if [ -n "${MTU}" ]; then
440 PPP_STD_OPTIONS="${PPP_STD_OPTIONS} mtu ${MTU}"
441 fi
442
443 if [ -n "${MRU}" ]; then
444 PPP_STD_OPTIONS="${PPP_STD_OPTIONS} mru ${MRU}"
445 fi
66c36198 446
905fbf3e
MT
447 ### Debugging
448 #
449 if [ "${DEBUG}" == "on" ]; then
450 DEBUG="debug"
d1e90efc 451 else
905fbf3e 452 DEBUG=""
d1e90efc 453 fi
66c36198 454
905fbf3e
MT
455 ### PPPoE invocation
456 #
a89770fa
MT
457 if [ "$TYPE" == "pppoe" ]; then
458 PPPOE_CMD="/usr/sbin/pppoe -p /var/run/ppp-ipfire.pid.pppoe -I $PPP_NIC"
27b8cc24
MT
459 PPPOE_CMD+=" -T 80 -U $PPPOE_SYNC $ACNAME $SERVICENAMEOPT"
460 fi
5aae218d
AF
461
462 ### PPTP ###
463 #
464 if [ "$TYPE" == "pptp" ]; then
465 PPPOE_CMD="pptp $PPTP_PEER --nolaunchpppd"
7c653e4b 466 METHOD=""
5aae218d 467 fi
66c36198 468
905fbf3e
MT
469 ### Run everything
470 #
7c653e4b 471 if [ "$METHOD" == "PPPOE_PLUGIN" ]; then
905fbf3e
MT
472 /usr/sbin/pppd $PPP_STD_OPTIONS $DEBUG $DEMAND >/dev/null 2>&1 &
473 evaluate_retval
a89770fa 474 # echo PLUGIN: /usr/sbin/pppd $PPP_STD_OPTIONS $DEBUG $DEMAND
905fbf3e
MT
475 else
476 /usr/sbin/pppd pty "$PPPOE_CMD" $PPP_STD_OPTIONS $DEBUG $DEMAND $PPPD_SYNC >/dev/null 2>&1 &
477 evaluate_retval
a89770fa 478 # echo PPP: /usr/sbin/pppd pty "$PPPOE_CMD" $PPP_STD_OPTIONS $DEBUG $DEMAND $PPPD_SYNC
905fbf3e 479 fi
5806ff0c 480
905fbf3e 481 /etc/rc.d/init.d/connectd start
1f2ff0fa 482 # Add a NaN value to ppp0 rrd to supress spikes at reconnect
c772568a 483 rrdtool update $RRDLOG/collectd/localhost/interface/if_octets-ppp0.rrd \
49ab1173 484 $(date +%s):: > /dev/null 2>&1
28ec28bc 485 exit 0
d1e90efc 486 fi
d1e90efc
MT
487 ;;
488
489 stop)
ebf64a93
MT
490 rm -f /var/ipfire/red/{active,device,dial-on-demand,dns1,dns2,local-ipaddress,remote-ipaddress,resolv.conf}
491
d1e90efc 492 if [ "$TYPE" == "STATIC" ]; then
0dde24fa
MT
493 boot_mesg "Stopping default gateway ${GATEWAY}..."
494 ip route del default via ${GATEWAY} >/dev/null 2>&1
495 echo_ok
496 if [ "$DEVICE" != "${GREEN_DEV}" ]; then
70631572
AF
497 boot_mesg "Removing IPv4 addresses from the ${DEVICE} interface..."
498 ip addr flush dev ${DEVICE}
0dde24fa
MT
499 evaluate_retval
500 fi
0e42072a 501 run_subdir ${rc_base}/init.d/networking/red.down/
f8841352 502
5aae218d 503 elif [ "$TYPE" == "PPPOE" ]; then
957863f7
MT
504 eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings)
505
506 if [ "${TYPE}" = "qmi" ]; then
507 boot_mesg "Bringing down the QMI interface ${RED_DEV}..."
508 DEVICE="$(qmi_find_device "${RED_DEV}")"
509
510 # Stop the DHCP client on RED
511 dhcpcd_stop "${RED_DEV}"
512
513 # Reset any QMI settings
514 qmi_reset "${DEVICE}"
515
516 exit 0
517 fi
518
a89770fa 519 boot_mesg "Bringing down the PPP interface ..."
93b34528 520 rm -f /var/ipfire/red/keepconnected
a89770fa 521 killall -w -s TERM /usr/sbin/pppd 2>/dev/null
352e626f 522 evaluate_retval
1f2ff0fa 523 # Add a NaN value to ppp0 rrd to supress spikes at reconnect
c772568a 524 rrdtool update $RRDLOG/collectd/localhost/interface/if_octets-ppp0.rrd \
49ab1173 525 $(date +%s):: > /dev/null 2>&1
0dde24fa 526
71ea0d68
SS
527 elif [ "$TYPE" == "DHCP" ]; then
528 # Check if the wlan-client is used on red.
529 # To determine this we check if a wpa_supplicant is running.
530 pid="$(pidof wpa_supplicant)"
531
532 if [ -z "${pid}" ]; then
533 # Stop dhcpcd.
534 dhcpcd_stop "${DEVICE}"
fd850b7e
AF
535 fi
536 fi
537
164a3b51
AF
538 if [ -n "${PPTP_ROUTE}" ]; then
539 route del ${PPTP_ROUTE}
540 fi
541
0dde24fa 542 if [ "$DEVICE" != "${GREEN_DEV}" ] && [ "$DEVICE" != "" ]; then
ff7a3950 543 link_status=`ip link show $DEVICE.${INET_VLAN} 2> /dev/null`
40049855
AF
544 if [ -n "${link_status}" ]; then
545 if echo "${link_status}" | grep -q UP; then
ff7a3950
AF
546 boot_mesg "Bringing down the ${DEVICE}.${INET_VLAN} interface..."
547 ip link set ${DEVICE}.${INET_VLAN} down
548 vconfig rem ${DEVICE}.${INET_VLAN}
40049855
AF
549 evaluate_retval
550 fi
bbe6aff7
AF
551 else
552 link_status=`ip link show $DEVICE 2> /dev/null`
553 if [ -n "${link_status}" ]; then
554 if echo "${link_status}" | grep -q UP; then
555 boot_mesg "Bringing down the ${DEVICE} interface..."
556 ip link set ${DEVICE} down
557 evaluate_retval
558 fi
0dde24fa 559 fi
d1e90efc
MT
560 fi
561 fi
cb1fb691 562 killall -w -s KILL /usr/sbin/pppd >/dev/null 2>&1
5aae218d 563 killall -w -s KILL pptp >/dev/null 2>&1
cb1fb691 564 killall -w -s KILL br2684ctl >/dev/null 2>&1
6c33dc5c 565
6c33dc5c 566 exit 0;
d1e90efc 567 ;;
d1e90efc 568esac