From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 26/29] network: Force dhcpcd to ask for an IP address
Date: Thu, 01 Dec 2022 17:23:15 +0000 [thread overview]
Message-ID: <20221201172318.3166615-26-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20221201172318.3166615-1-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 3997 bytes --]
So since all this static nonsense wasn't feeling right, I opened a
ticket upstream and got a lead how to actually get some proper DHCP
working.
https://github.com/NetworkConfiguration/dhcpcd/issues/129
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/initscripts/networking/dhcpcd.exe | 95 ---------------------------
src/initscripts/networking/red | 2 +-
2 files changed, 1 insertion(+), 96 deletions(-)
diff --git a/src/initscripts/networking/dhcpcd.exe b/src/initscripts/networking/dhcpcd.exe
index 220f95c83..c8a79999d 100644
--- a/src/initscripts/networking/dhcpcd.exe
+++ b/src/initscripts/networking/dhcpcd.exe
@@ -60,18 +60,6 @@ dhcpcd_up()
mv /tmp/hosts /etc/hosts
fi
- # Try to set the default route if there is none
- # This can happen when we are using the 3RD party configuration
- # This should not be necessary, since dhcpcd says it will configure
- # a default route, but that does not seem to happen:
- # https://github.com/NetworkConfiguration/dhcpcd/issues/129
- if ! ip route 2>/dev/null | grep ^default && [ -s "/var/ipfire/red/remote-ipaddress" ]; then
- gateway=$(</var/ipfire/red/remote-ipaddress)
-
- # XXX This is ignoring any MTU configuration
- ip route add default via "${gateway}"
- fi
-
if [ $update ]; then
# Consider RED being active
touch /var/ipfire/red/active
@@ -107,86 +95,6 @@ dhcpcd_down()
return 0
}
-# Called when dhcpcd relies on a third party to configure an IP address
-dhcpcd_3rdparty() {
- local qmi_device="$(qmi_find_device "${interface}")"
-
- if [ -n "${qmi_device}" ]; then
- setup_qmi "${qmi_device}" || return $?
- fi
-
- return 0
-}
-
-setup_qmi() {
- local device="${1}"
-
- local address
- local netmask
- local gateway
- local mtu=1500
- local dns1
- local dns2
-
- local line
- while read -r line; do
- # Extract the value
- value="${line#*: }"
-
- case "${line}" in
- *IPv4\ address:*)
- address="${value}"
- ;;
- *IPv4\ subnet\ mask:*)
- netmask="${value}"
- ;;
- *IPv4\ gateway\ address:*)
- gateway="${value}"
- ;;
- *IPv4\ primary\ DNS:*)
- dns1="${value}"
- ;;
- *IPv4\ secondary\ DNS:*)
- dns2="${value}"
- ;;
- *MTU:*)
- mtu="${value}"
- ;;
- esac
- done <<< "$(qmicli --device="${device}" --wds-get-current-settings)"
-
- if [ -z "${address}" ] || [ -z "${netmask}" ] || [ -z "${gateway}" ]; then
- logger -p "local0.info" -t "dhcpcd.exe[$$]" \
- "Could not retrieve all information from the QMI interface"
- return 1
- fi
-
- # Flush any previous configuration
- ip addr flush dev "${interface}"
-
- # Configure the IP address
- ip addr add "${address}/${netmask}" dev "${interface}"
-
- # Configure the default route
- if [ -n "${gateway}" ]; then
- # Store the default gateway
- echo -n "${gateway}" > /var/ipfire/red/remote-ipaddress
-
- # Configure the default route
- ip route add default via "${gateway}" mtu "${mtu}"
- fi
-
- # Store and DNS servers
- if [ -n "${dns1}" ]; then
- echo -n "${dns1}" > /var/ipfire/red/dns1
- fi
- if [ -n "${dns2}" ]; then
- echo -n "${dns2}" > /var/ipfire/red/dns2
- fi
-
- return 0
-}
-
case "${reason}" in
BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT|STATIC)
dhcpcd_up
@@ -194,9 +102,6 @@ case "${reason}" in
PREINIT|EXPIRE|FAIL|IPV4LL|NAK|RELEASE|STOP)
dhcpcd_down
;;
- 3RDPARTY)
- dhcpcd_3rdparty
- ;;
# Ignored events where we do not need to do anything
STOPPED|CARRIER|NOCARRIER)
;;
diff --git a/src/initscripts/networking/red b/src/initscripts/networking/red
index 2d68c1685..f927ddbfb 100644
--- a/src/initscripts/networking/red
+++ b/src/initscripts/networking/red
@@ -227,7 +227,7 @@ case "${1}" in
ip link set "${RED_DEV}" up &>/dev/null
# Start the DHCP client
- dhcpcd_start "${RED_DEV}" --nolink
+ dhcpcd_start "${RED_DEV}" --dhcp
# Done
exit 0
--
2.30.2
next prev parent reply other threads:[~2022-12-01 17:23 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-01 17:22 [PATCH 01/29] libgudev: New package Michael Tremer
2022-12-01 17:22 ` [PATCH 02/29] libqmi: " Michael Tremer
2022-12-01 17:22 ` [PATCH 03/29] dhcpcd: Log any unhandled client events Michael Tremer
2022-12-01 17:22 ` [PATCH 04/29] dhcpcd.exe: Allow using the DHCP setup scripts when RED is not configured as DHCP Michael Tremer
2022-12-01 17:22 ` [PATCH 05/29] network: Allow passing custom options to dhcpcd Michael Tremer
2022-12-01 17:22 ` [PATCH 06/29] network: Add support for QMI modems Michael Tremer
2022-12-01 17:22 ` [PATCH 07/29] network: Drop any traces of ISDN Michael Tremer
2022-12-01 17:22 ` [PATCH 08/29] pppsetup.cgi: Add support for QMI profiles Michael Tremer
2022-12-01 17:22 ` [PATCH 09/29] " Michael Tremer
2022-12-01 17:22 ` [PATCH 10/29] pppsetup.cgi: Move authentication above MTU Michael Tremer
2022-12-01 17:23 ` [PATCH 11/29] network: Remove --debug switch for dhcpcd in QMI mode Michael Tremer
2022-12-01 17:23 ` [PATCH 12/29] dhcpcd: Only try to obtain an IP address for IPv4 Michael Tremer
2022-12-01 17:23 ` [PATCH 13/29] dhcpcd.exe: Flush any configured IP addresses on shutdown Michael Tremer
2022-12-01 17:23 ` [PATCH 14/29] dhcpcd.exe: Actually use the received MTU Michael Tremer
2022-12-01 17:23 ` [PATCH 15/29] dhcpcd.exe: Only set gateway when we have received one Michael Tremer
2022-12-01 17:23 ` [PATCH 16/29] dhcpcd.exe: Store the default gateway when in QMI mode Michael Tremer
2022-12-01 17:23 ` [PATCH 17/29] dhcpcd.exe: Use DNS servers from QMI Michael Tremer
2022-12-01 17:23 ` [PATCH 18/29] dhcpcd.exe: Do not overwrite the default gateway when empty Michael Tremer
2022-12-01 17:23 ` [PATCH 19/29] dhcpcd.exe: Only touch /var/ipfire/red/active once Michael Tremer
2022-12-01 17:23 ` [PATCH 20/29] dhcpcd.exe: Run everything no matter how RED is configured Michael Tremer
2022-12-01 17:23 ` [PATCH 21/29] dhcpcd.exe: Fix typo in configuring DNS server Michael Tremer
2022-12-01 17:23 ` [PATCH 22/29] network: dhcpcd fails to check link state for QMI interfaces Michael Tremer
2022-12-01 17:23 ` [PATCH 23/29] dhcpcd.exe: Reformat the reason dispatcher Michael Tremer
2022-12-01 17:23 ` [PATCH 24/29] dhcpcd.exe: Ignore some events Michael Tremer
2022-12-01 17:23 ` [PATCH 25/29] dhcpcd.exe: Add a safety net to make sure we always have a route Michael Tremer
2022-12-01 17:23 ` Michael Tremer [this message]
2022-12-01 17:23 ` [PATCH 27/29] network: Assign "static" MAC addresses to QMI interfaces Michael Tremer
2022-12-01 17:23 ` [PATCH 28/29] network: Silence any output during the QMI setup Michael Tremer
2022-12-01 17:23 ` [PATCH 29/29] make.sh: Build some dependencies for glib earlier Michael Tremer
2022-12-17 21:03 ` Peter Müller
2022-12-19 12:49 ` Michael Tremer
2022-12-20 12:03 ` Peter Müller
2022-12-20 16:07 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221201172318.3166615-26-michael.tremer@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox