Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat(eos_cli_config_gen): Add schema for ipv6_icmp_redirect #2140

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -755,6 +755,20 @@ ipv6_access_lists:
action: <str>
```

## IPv6 ICMP Redirect

### Variables

| Variable | Type | Required | Default | Value Restrictions | Description |
| -------- | ---- | -------- | ------- | ------------------ | ----------- |
| [<samp>ipv6_icmp_redirect</samp>](## "ipv6_icmp_redirect") | Boolean | | | | IPv6 ICMP Redirect |

### YAML

```yaml
ipv6_icmp_redirect: <bool>
```

## IPv6 Prefix Lists

### Variables
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1118,6 +1118,10 @@
"additionalProperties": false
}
},
"ipv6_icmp_redirect": {
"type": "boolean",
"title": "IPv6 ICMP Redirect"
},
"ipv6_prefix_lists": {
"type": "array",
"title": "IPv6 Prefix Lists",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -966,6 +966,9 @@ keys:
description: 'Action as string

Example: "deny ipv6 any any"'
ipv6_icmp_redirect:
type: bool
display_name: IPv6 ICMP Redirect
ipv6_prefix_lists:
type: list
primary_key: name
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# yaml-language-server: $schema=../../../../plugins/plugin_utils/schema/avd_meta_schema.json
# Line above is used by RedHat's YAML Schema vscode extension
# Use Ctrl + Space to get suggestions for every field. Autocomplete will pop up after typing 2 letters.
type: dict
keys:
ipv6_icmp_redirect:
type: bool
display_name: IPv6 ICMP Redirect