Skip to content

Commit

Permalink
Patch 0.55.1 (#2103)
Browse files Browse the repository at this point in the history
* remove dependency on the ssh keys when generating acls

* added release note
  • Loading branch information
hellt committed Jun 22, 2024
1 parent 5632694 commit 08c7f44
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions docs/rn/0.55.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,11 @@ Netconf has been enabled by default for cRPD. #2015
- cEOS examples have been updated to use 4.32.0F version #2034
- package repo links have been updated to enable v6 access #2032
- codespaces image have been added #2058 #2059 #2064 #2067

## Patches

### 0.55.1

- fixed ACL rules generation for SR Linux in cases where no ssh keys are present #2103
- switched to D2L platform as the default for SR Linux #2094
- added impairments docs section
2 changes: 1 addition & 1 deletion nodes/srl/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func (n *srl) setVersionSpecificParams(tplData *srlTemplateData) {

// in srlinux >= v24.3+ we add ACL rules to enable http and telnet access
// that are useful for labs and were removed as a security hardening measure.
if len(n.sshPubKeys) > 0 && (semver.Compare(v, "v24.3") >= 0 || n.swVersion.major == "0") {
if semver.Compare(v, "v24.3") >= 0 || n.swVersion.major == "0" {
tplData.ACLConfig = aclConfig
}

Expand Down

0 comments on commit 08c7f44

Please sign in to comment.