Skip to content

Commit

Permalink
align srl config template with 20.6.3 (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Jan 12, 2021
1 parent 6f2beea commit d02d2b2
Showing 1 changed file with 64 additions and 0 deletions.
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

0 comments on commit d02d2b2

Please sign in to comment.