Skip to content

Commit

Permalink
Fix nokia config in presubmit (#531)
Browse files Browse the repository at this point in the history
* fix nokia config

* fix indent
  • Loading branch information
alexmasi authored Apr 23, 2024
1 parent 6f69dde commit df71fa7
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions cloudbuild/vendors/srl.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,77 @@
acl {
acl-filter cpm type ipv4 {
entry 441 {
match {
ipv4 {
protocol tcp
}
transport {
destination-port {
operator eq
value 57401
}
}
}
action {
accept {
}
}
}
entry 442 {
match {
ipv4 {
protocol tcp
}
transport {
destination-port {
operator eq
value 9559
}
}
}
action {
accept {
}
}
}
}
acl-filter cpm type ipv6 {
entry 481 {
match {
ipv6 {
next-header tcp
}
transport {
destination-port {
operator eq
value 57401
}
}
}
action {
accept {
}
}
}
entry 482 {
match {
ipv6 {
next-header tcp
}
transport {
destination-port {
operator eq
value 9559
}
}
}
action {
accept {
}
}
}
}
}
system {
management {
openconfig {
Expand Down Expand Up @@ -26,6 +100,7 @@ system {
session-limit 65535
default-tls-profile true
network-instance mgmt
port 57401
services [
gribi
]
Expand All @@ -36,6 +111,7 @@ system {
session-limit 65535
default-tls-profile true
network-instance mgmt
port 9559
services [
p4rt
]
Expand Down

0 comments on commit df71fa7

Please sign in to comment.