From: "Peter Müller" <peter.mueller@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH 1/3] dhcpcd: Force setting MTU through dhcpcd
Date: Tue, 22 Feb 2022 19:16:39 +0000 [thread overview]
Message-ID: <cb112460-a50f-b4c4-079b-fd231256c858@ipfire.org> (raw)
In-Reply-To: <20220222121806.1208994-1-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1866 bytes --]
Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>
> The DHCP server can instruct clients to configure a certain MTU.
>
> This used to be done by setting the MTU of the interface. However,
> dhcpcd has changed this behaviour using routes to.
>
> We used to have a modified version of the old mechanism which no longer
> works well with the new system and is therefore to be dropped.
>
> This is the first commit in the series implementing the new behaviour
> and telling dhcpcd to use the configured MTU.
>
> Fixes: #12563
> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
> ---
> src/initscripts/networking/functions.network | 11 ++++++++---
> 1 file changed, 8 insertions(+), 3 deletions(-)
>
> diff --git a/src/initscripts/networking/functions.network b/src/initscripts/networking/functions.network
> index 7ec50f436..eae4a7b7c 100644
> --- a/src/initscripts/networking/functions.network
> +++ b/src/initscripts/networking/functions.network
> @@ -61,7 +61,7 @@ dhcpcd_start() {
> # This function will start a dhcpcd on a speciefied device.
>
> local device="$1"
> - local dhcp_start=""
> + local dhcp_start=()
>
> boot_mesg -n "Starting dhcpcd on the ${device} interface..."
>
> @@ -76,11 +76,16 @@ dhcpcd_start() {
>
> # Check if a DHCP hostname has been set.
> if [ -n "${RED_DHCP_HOSTNAME}" ]; then
> - dhcp_start+="-h ${RED_DHCP_HOSTNAME}"
> + dhcp_start+=( "-h" "${RED_DHCP_HOSTNAME}" )
> + fi
> +
> + # Tell dhcpcd to use the configured MTU
> + if [ -n "${RED_DHCP_FORCE_MTU}" ]; then
> + dhcp_start+=( "--static" "mtu=${RED_DHCP_FORCE_MTU}" )
> fi
>
> # Start dhcpcd.
> - /sbin/dhcpcd ${dhcp_start} ${device} >/dev/null 2>&1
> + /sbin/dhcpcd "${dhcp_start[@]}" ${device} >/dev/null 2>&1
> ret="$?"
>
> if [ "${ret}" -eq 0 ]; then
prev parent reply other threads:[~2022-02-22 19:16 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-22 12:18 Michael Tremer
2022-02-22 12:18 ` [PATCH 2/3] dhcpcd: Remove old MTU setting script Michael Tremer
2022-02-22 19:16 ` Peter Müller
2022-02-22 12:18 ` [PATCH 3/3] dhcpcd: Allow freely setting MTU Michael Tremer
2022-02-22 19:17 ` Peter Müller
2022-02-22 19:16 ` Peter Müller [this message]
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=cb112460-a50f-b4c4-079b-fd231256c858@ipfire.org \
--to=peter.mueller@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