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

Fix for OcNOS 6.5.2-101 #2366

Merged
merged 2 commits into from
Jan 2, 2025
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
4 changes: 2 additions & 2 deletions docs/manual/kinds/ipinfusion-ocnos.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ search:
---
# IPInfusion OcNOS

IPInfusion OcNOS virtualized router is identified with `ipinfusion_ocnos` kind in the [topology file](../topo-def-file.md). It is built using either [boxen](https://github.com/carlmontanari/boxen) project or [hellt/vrnetlab](https://github.com/hellt/vrnetlab/tree/master/ocnos) and essentially is a Qemu VM packaged in a docker container format.
IPInfusion OcNOS virtualized router is identified with `ipinfusion_ocnos` kind in the [topology file](../topo-def-file.md). It is built using [hellt/vrnetlab](https://github.com/hellt/vrnetlab/tree/master/ocnos) and essentially is a Qemu VM packaged in a docker container format.

ipinfusion_ocnos nodes launched with containerlab come up pre-provisioned with SSH, and NETCONF services enabled.

Expand Down Expand Up @@ -36,7 +36,7 @@ IPInfusion OcNOS node launched with containerlab can be managed via the followin
```

!!!info
Default user credentials: `ocnos:ocnos`
Default user credentials: `admin:admin@123`

## Interfaces mapping

Expand Down
2 changes: 1 addition & 1 deletion nodes/ipinfusion_ocnos/ipinfusion_ocnos.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (

var (
kindnames = []string{"ipinfusion_ocnos"}
defaultCredentials = nodes.NewCredentials("admin", "admin")
defaultCredentials = nodes.NewCredentials("admin", "admin@123")
)

const (
Expand Down