diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2024-04-26 07:53:57 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2024-04-26 07:53:57 +0000 |
commit | 66af8b17847ce6d982284d3cea70558d94bb928c (patch) | |
tree | d76e797a9fb18c2c176bb4a74b60dab3605c6dbd | |
parent | Also listing certificate name when sending nsupdate in dehydrated-nsupdate ho... (diff) | |
download | service-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-x | linux/bin/linux-ice | 6 |
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 |