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

rn 0.64 #2445

Merged
merged 2 commits into from
Feb 3, 2025
Merged

rn 0.64 #2445

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
45 changes: 45 additions & 0 deletions docs/rn/0.64.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Release 0.64

:material-calendar: 2025-02-03 · :material-list-status: [Full Changelog](https://github.com/srl-labs/containerlab/releases)

## Inspect interfaces

In #2437 a new subcommand has been added to the inspect suite - [`clab inspect interfaces`](../cmd/inspect/interfaces.md) - that lists details of the interfaces of the given lab.

The command below lists interfaces of the nodes in the lab with the name `srl2`:

```
clab ins int --name srl2
╭────────────────┬───────────┬─────────┬───────────────────┬───────┬───────┬────────┬─────────╮
│ Container Name │ Name │ Alias │ MAC │ Index │ MTU │ Type │ State │
├────────────────┼───────────┼─────────┼───────────────────┼───────┼───────┼────────┼─────────┤
│ srl1 │ e1-1 │ N/A │ aa:c1:ab:ed:6a:36 │ 294 │ 9232 │ veth │ up │
│ ├───────────┼─────────┼───────────────────┼───────┼───────┼────────┼─────────┤
│ │ e1-2 │ N/A │ aa:c1:ab:47:8b:05 │ 296 │ 9232 │ veth │ up │
│ ├───────────┼─────────┼───────────────────┼───────┼───────┼────────┼─────────┤
│ │ gway-2800 │ N/A │ 1e:2d:22:41:e0:2f │ 5 │ 1500 │ veth │ up │
│ ├───────────┼─────────┼───────────────────┼───────┼───────┼────────┼─────────┤
│ │ ip6tnl0 │ N/A │ │ 4 │ 1452 │ ip6tnl │ down │
│ ├───────────┼─────────┼───────────────────┼───────┼───────┼────────┼─────────┤
│ │ lo │ N/A │ │ 1 │ 65536 │ device │ unknown │
│ ├───────────┼─────────┼───────────────────┼───────┼───────┼────────┼─────────┤
│ │ mgmt0 │ N/A │ 02:42:ac:14:14:03 │ 291 │ 1514 │ veth │ up │
│ ├───────────┼─────────┼───────────────────┼───────┼───────┼────────┼─────────┤
│ │ mgmt0-0 │ mgmt0.0 │ de:a0:c5:45:92:e2 │ 8 │ 1500 │ veth │ up │
│ ├───────────┼─────────┼───────────────────┼───────┼───────┼────────┼─────────┤
│ │ monit_in │ N/A │ 06:e9:98:0b:c6:22 │ 7 │ 9234 │ veth │ up │
│ ├───────────┼─────────┼───────────────────┼───────┼───────┼────────┼─────────┤
│ │ sit0 │ N/A │ │ 3 │ 1480 │ sit │ down │
│ ├───────────┼─────────┼───────────────────┼───────┼───────┼────────┼─────────┤
│ │ tunl0 │ N/A │ │ 2 │ 1480 │ ipip │ down │
```

## Devcontainer improvements

The devcontainer has been massaged to allow for [sudo-less](../install.md#sudo-less-operation) lab deployment introduced in 0.63.3.

We have also added the [vscode-containerlab](https://github.com/srl-labs/vscode-containerlab) extension to it, so that you get the most out of your vscode experience when using the devcontainer.

## Miscellaneous

* removed sudo requirements for ovs bridges #2436
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ nav:
- 5-stage Clos topology: lab-examples/templated02.md
- Generic VM: lab-examples/generic_vm01.md
- Release notes:
- "0.64": rn/0.64.md
- "0.63": rn/0.63.md
- "0.62": rn/0.62.md
- "0.61": rn/0.61.md
Expand Down