Skip to content

Commit

Permalink
Fix(eos_cli_config_gen): Change lldp.receive_packet_tagged_drop from …
Browse files Browse the repository at this point in the history
…str to bool
  • Loading branch information
Laxmikant Chintakindi authored and laxmikantchintakindi committed Jan 15, 2025
1 parent e9913d0 commit a5a2291
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2996,7 +2996,7 @@ mlag configuration

| Enabled | Management Address | Management VRF | Timer | Hold-Time | Re-initialization Timer | Drop Received Tagged Packets |
| ------- | ------------------ | -------------- | ----- | --------- | ----------------------- | ---------------------------- |
| False | 192.168.1.1/24 | Management | 30 | 90 | 2 | - |
| False | 192.168.1.1/24 | Management | 30 | 90 | 2 | True |

#### LLDP Explicit TLV Transmit Settings

Expand Down Expand Up @@ -3029,6 +3029,7 @@ lldp tlv transmit system-description
no lldp run
lldp management-address 192.168.1.1/24
lldp management-address vrf Management
lldp receive packet tagged drop
```

## L2 Protocol Forwarding
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ lldp tlv transmit system-description
no lldp run
lldp management-address 192.168.1.1/24
lldp management-address vrf Management
lldp receive packet tagged drop
!
logging repeat-messages
logging buffered 1000000 warnings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ lldp:
timer: 30
holdtime: 90
management_address: 192.168.1.1/24
receive_packet_tagged_drop: true
vrf: Management
tlvs:
- name: system-capabilities
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions python-avd/pyavd/_eos_cli_config_gen/schema/__init__.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ keys:
convert_types:
- int
receive_packet_tagged_drop:
type: str
type: bool
tlvs:
type: list
primary_key: name
Expand Down

0 comments on commit a5a2291

Please sign in to comment.