[yocto] [meta-cloud-services][PATCH] dhcp: Add the default route option

Bruce Ashfield bruce.ashfield at gmail.com
Sun Mar 24 20:15:01 PDT 2019


merged

Bruce

On Thu, Mar 21, 2019 at 10:52 PM Zhixiong Chi
<zhixiong.chi at windriver.com> wrote:
>
> Add the default route option for the operation of adding route,
> while we set the static route and the mask setting is 0.
>
> For example:
> add_routes 32 169 254 169 254 10 209 67 4 0 10 209 67 1
>
> The first route (169.254.169.254/32 via 10.209.67.4) is added successfully,
> but the second route (10.209.67.1, default) is not added at all.
>
> Signed-off-by: Zhixiong Chi <zhixiong.chi at windriver.com>
> ---
>  recipes-connectivity/dhcp/files/dhclient-exit-hooks | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/recipes-connectivity/dhcp/files/dhclient-exit-hooks b/recipes-connectivity/dhcp/files/dhclient-exit-hooks
> index 3be5e02..41bcb08 100644
> --- a/recipes-connectivity/dhcp/files/dhclient-exit-hooks
> +++ b/recipes-connectivity/dhcp/files/dhclient-exit-hooks
> @@ -66,6 +66,9 @@ while [ $# -ne 0 ]; do
>    elif [ $mask -gt 8 ]; then
>      destination="-net $1.$2.0.0/$mask"
>      shift; shift
> +  #Add the default route
> +  elif [ $mask -eq 0 ]; then
> +    destination="default"
>    else
>      destination="-net $1.0.0.0/$mask"
>      shift
> --
> 2.17.1
>
> --
> _______________________________________________
> yocto mailing list
> yocto at yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto



-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II


More information about the yocto mailing list