summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2024-04-26 07:53:57 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2024-04-26 07:53:57 +0000
commit66af8b17847ce6d982284d3cea70558d94bb928c (patch)
treed76e797a9fb18c2c176bb4a74b60dab3605c6dbd
parentAlso listing certificate name when sending nsupdate in dehydrated-nsupdate ho... (diff)
downloadservice-tools-66af8b17847ce6d982284d3cea70558d94bb928c.tar.xz
service-tools-66af8b17847ce6d982284d3cea70558d94bb928c.zip
Updating lldp flag in linux-ice.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
-rwxr-xr-xlinux/bin/linux-ice6
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/bin/linux-ice b/linux/bin/linux-ice
index 5f0feee..ad76ef9 100755
--- a/linux/bin/linux-ice
+++ b/linux/bin/linux-ice
@@ -80,7 +80,7 @@ Start ()
for DEVICE in ${DEVICES}
do
echo -n "Configuring ${DEVICE}:"
- Ethtool_set "${DEVICE}" disable-fw-lldp on
+ Ethtool_set "${DEVICE}" fw-lldp-agent on
Ethtool_set "${DEVICE}" link-down-on-close on
echo
done
@@ -93,7 +93,7 @@ Stop ()
for DEVICE in ${DEVICES}
do
echo -n "Deconfiguring ${DEVICE}:"
- Ethtool_set "${DEVICE}" disable-fw-lldp off
+ Ethtool_set "${DEVICE}" fw-lldp-agent off
Ethtool_set "${DEVICE}" link-down-on-close off
echo
done
@@ -104,7 +104,7 @@ Status ()
for DEVICE in ${DEVICES}
do
echo -n "${DEVICE}:"
- Ethtool_get "${DEVICE}" disable-fw-lldp on
+ Ethtool_get "${DEVICE}" fw-lldp-agent on
Ethtool_get "${DEVICE}" link-down-on-close on
echo
done