Skip to content

Commit

Permalink
add_mpls_tunnel_termination
Browse files Browse the repository at this point in the history
  • Loading branch information
ccsnw committed Jan 21, 2025
1 parent 7671c5a commit ad6a3c4
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9152,6 +9152,7 @@ router bfd
| LDP Transport-Address Interface | Loopback0 |
| ICMP Fragmentation-Needed Tunneling Enabled | True |
| Tunnel Termination Model | ttl uniform dscp uniform |
| Tunnel Termination PHP Model | ttl pipe dscp pipe |

### MPLS Interfaces

Expand Down Expand Up @@ -9218,6 +9219,7 @@ router bfd
!
mpls ip
mpls tunnel termination model ttl uniform dscp uniform
mpls tunnel termination php model ttl pipe dscp pipe
!
mpls ldp
router-id 192.168.1.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4487,6 +4487,7 @@ ipv6 route vrf TENANT_A_PROJECT01 2c01:cb04:4e6:a400::/64 Vlan102 201 tag 102 na
!
mpls ip
mpls tunnel termination model ttl uniform dscp uniform
mpls tunnel termination php model ttl pipe dscp pipe
!
mpls ldp
router-id 192.168.1.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ mpls:
shutdown: false
transport_address_interface: Loopback0
tunnel:
termination_model: "ttl uniform dscp uniform"
termination_model: ttl uniform dscp uniform
termination_php_model: ttl pipe dscp pipe
icmp:
fragmentation_needed_tunneling: true
rsvp:
Expand Down

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

16 changes: 12 additions & 4 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 @@ -290,18 +290,23 @@ keys:
type: str
description: |
TTL and DSCP configuration as a string.
Make sure to check for compatibility with your Platform.
Example:
- "ttl pipe dscp pipe"
valid_values:
- "ttl pipe dscp pipe"
- "ttl pipe dscp uniform"
- "ttl uniform dscp pipe"
- "ttl uniform dscp uniform"
termination_php_model:
type: str
description: |
TTL and DSCP configuration as a string.
Make sure to check for compatibility with your Platform.
Example:
- "ttl pipe dscp pipe"
valid_values:
- "ttl pipe dscp pipe"
- "ttl pipe dscp uniform"
- "ttl uniform dscp pipe"
- "ttl uniform dscp uniform"

0 comments on commit ad6a3c4

Please sign in to comment.