You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, Cumulus Linux blocks LLDP packets on unauthorized ports. You can configure the switch to allow LLDP packets on unauthorized ports on ingress, egress, or both.
959
+
960
+
{{%notice note%}}
961
+
This feature only affects the ports in the pre-authentication stage. The authenticated ports are not affected.
962
+
{{%/notice%}}
963
+
964
+
{{< tabs "TabID960 ">}}
965
+
{{< tab "NVUE Commands ">}}
966
+
967
+
The following example allows LLDP packets on unauthorized ports on ingress:
968
+
969
+
```
970
+
cumulus@switch:~$ nv set system dot1x pre-auth allow-protocol lldp ingress
971
+
```
972
+
973
+
The following example allows LLDP packets on unauthorized ports on egress:
974
+
975
+
```
976
+
cumulus@switch:~$ nv set system dot1x pre-auth allow-protocol lldp egress
977
+
```
978
+
979
+
The following example allows LLDP packets on unauthorized ports on both ingress and egress:
980
+
981
+
```
982
+
cumulus@switch:~$ nv set system dot1x pre-auth allow-protocol lldp both
983
+
```
984
+
985
+
To revert to the default setting of blocking LLDP packets on unauthorized ports, run the `nv unset system dot1x pre-auth allow-protocol lldp` commands. For example:
986
+
- To block LLDP packets on unauthorized ports on ingress, run the `nv unset system dot1x pre-auth allow-protocol lldp ingress` command.
987
+
- To block LLDP packets on unauthorized ports on egress, run the `nv unset system dot1x pre-auth allow-protocol lldp egress` command.
988
+
- To block LLDP packets on unauthorized ports on both ingress and egress, run the `nv unset system dot1x pre-auth allow-protocol lldp both` command.
989
+
990
+
{{< /tab >}}
991
+
{{< tab "Linux Commands ">}}
992
+
993
+
Edit the `/etc/hostapd.conf` file to add the `preauth_ingress_allow_protocol=lldp` option and, or the `preauth_egress_allow_protocol=lldp` option, then reload the `hostapd` service.
Copy file name to clipboardExpand all lines: content/cumulus-linux-517/Whats-New/_index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ Cumulus Linux 5.17 contains new features and improvements, and provides bug fixe
18
18
- {{<linkurl="Quality-of-Service/#lossless-headroom-based-on-small-packet-probability"text="Lossless headroom size based on small packet probability">}} (Beta)
0 commit comments