1bf31c
From 8658cfd92b50197dd4f4d3b6d136950fe007ffc0 Mon Sep 17 00:00:00 2001
1bf31c
From: Frank Deng <frank.deng@oracle.com>
1bf31c
Date: Sat, 15 Jun 2019 13:35:42 -0700
1bf31c
Subject: [PATCH] 35network-legacy: fix classless static route parsing
1bf31c
1bf31c
(cherry picked from commit 11e1f680656177cfbba4e06f08b6707f4a812bc0)
1bf31c
1bf31c
Resolves: #1811042
1bf31c
---
1bf31c
 modules.d/35network-legacy/dhclient-script.sh | 6 ++++--
1bf31c
 1 file changed, 4 insertions(+), 2 deletions(-)
1bf31c
1bf31c
diff --git a/modules.d/35network-legacy/dhclient-script.sh b/modules.d/35network-legacy/dhclient-script.sh
1bf31c
index f1a60005..44633b30 100755
1bf31c
--- a/modules.d/35network-legacy/dhclient-script.sh
1bf31c
+++ b/modules.d/35network-legacy/dhclient-script.sh
1bf31c
@@ -126,9 +126,11 @@ parse_option_121() {
1bf31c
         elif [ $mask -gt 8 ]; then
1bf31c
             destination="$1.$2.0.0/$mask"
1bf31c
             shift; shift
1bf31c
-        else
1bf31c
+        elif [ $mask -gt 0 ]; then
1bf31c
             destination="$1.0.0.0/$mask"
1bf31c
             shift
1bf31c
+        else
1bf31c
+            destination="0.0.0.0/$mask"
1bf31c
         fi
1bf31c
 
1bf31c
         # Read the gateway
1bf31c
@@ -138,7 +140,7 @@ parse_option_121() {
1bf31c
         # Multicast routing on Linux
1bf31c
         #  - If you set a next-hop address for a multicast group, this breaks with Cisco switches
1bf31c
         #  - If you simply leave it link-local and attach it to an interface, it works fine.
1bf31c
-        if [ $multicast -eq 1 ]; then
1bf31c
+        if [ $multicast -eq 1 -o "$gateway" = "0.0.0.0" ]; then
1bf31c
             temp_result="$destination dev $interface"
1bf31c
         else
1bf31c
             temp_result="$destination via $gateway dev $interface"
1bf31c