diff options
Diffstat (limited to '')
-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 |