diff options
Diffstat (limited to 'linux/bin/linux-ice')
-rwxr-xr-x | linux/bin/linux-ice | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/bin/linux-ice b/linux/bin/linux-ice index 5f0feee..18d20a2 100755 --- a/linux/bin/linux-ice +++ b/linux/bin/linux-ice @@ -2,7 +2,7 @@ # Open Infrastructure: service-tools -# Copyright (C) 2014-2023 Daniel Baumann <daniel.baumann@open-infrastructure.net> +# Copyright (C) 2014-2024 Daniel Baumann <daniel.baumann@open-infrastructure.net> # # SPDX-License-Identifier: GPL-3.0+ # @@ -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 |