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

align srl config template with 20.6.3 #228

Merged
merged 1 commit into from
Jan 12, 2021
Merged
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
64 changes: 64 additions & 0 deletions templates/srl/srlconfig.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,44 @@
},
{
"sequence-id": 290,
"description": "Accept incoming OSPF messages",
"action": {
"accept": {
}
},
"match": {
"protocol": 89
}
},
{
"sequence-id": 300,
"description": "Accept incoming DHCP relay messages targeted for BOOTP/DHCP server",
"action": {
"accept": {
}
},
"match": {
"protocol": "udp",
"destination-port": {
"operator": "eq",
"value": 67
}
}
},
{
"sequence-id": 310,
"description": "Accept ICMP fragment packets",
"action": {
"accept": {
}
},
"match": {
"fragment": true,
"protocol": "icmp"
}
},
{
"sequence-id": 320,
"description": "Drop all else",
"action": {
"drop": {
Expand Down Expand Up @@ -933,6 +971,32 @@
},
{
"sequence-id": 340,
"description": "Accept incoming OSPF messages",
"action": {
"accept": {
}
},
"match": {
"next-header": 89
}
},
{
"sequence-id": 350,
"description": "Accept incoming DHCPv6 relay messages",
"action": {
"accept": {
}
},
"match": {
"next-header": "udp",
"destination-port": {
"operator": "eq",
"value": 547
}
}
},
{
"sequence-id": 360,
"description": "Drop all else",
"action": {
"drop": {
Expand Down