diff options
author | Christian Breunig <christian@breunig.cc> | 2025-02-25 17:06:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-25 17:06:43 +0100 |
commit | 7438e6ad14c60347f0069e1aa584ceac2e9987e4 (patch) | |
tree | ce61d99cfaefb8f06290aadd0a1b3d2a0b8c7b49 /docs | |
parent | b347ea2cfc2d08a57335c0876a70825a840841ea (diff) | |
parent | 4036e6c90748419bf29fc44ee30960ea44b9e768 (diff) | |
download | vyos-documentation-7438e6ad14c60347f0069e1aa584ceac2e9987e4.tar.gz vyos-documentation-7438e6ad14c60347f0069e1aa584ceac2e9987e4.zip |
Merge pull request #1601 from vyos/lldp-T7165
lldp: T7165: add support to enable only rx or tx on specific interface
Diffstat (limited to 'docs')
-rw-r--r-- | docs/configuration/service/lldp.rst | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/configuration/service/lldp.rst b/docs/configuration/service/lldp.rst index 12a9e0b6..8aee6183 100644 --- a/docs/configuration/service/lldp.rst +++ b/docs/configuration/service/lldp.rst @@ -49,10 +49,16 @@ Configuration Enable transmission of LLDP information on given `<interface>`. You can also say ``all`` here so LLDP is turned on on every interface. -.. cfgcmd:: set service lldp interface <interface> disable +.. cfgcmd:: set service lldp interface <interface> mode [disable|rx-tx|rx|tx] - Disable transmit of LLDP frames on given `<interface>`. Useful to exclude - certain interfaces from LLDP when ``all`` have been enabled. + Configure the administrative status of the given port. + + By default, all ports are configured to be in rx-tx mode. This means they + can receive and transmit LLDP frames. + + In rx mode, they won't emit any frames. In tx mode, they won't receive + any frames. In disabled mode, no frame will be sent and any incoming frame + will be discarded. .. cfgcmd:: set service lldp snmp |