-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Release 0.44 | ||
|
||
:material-calendar: 2023-08-17 · :material-list-status: [Full Changelog](https://github.com/srl-labs/containerlab/releases) | ||
|
||
## Link Impairments | ||
|
||
A long-awaited feature landed in this release. We are adding two new tools commands: | ||
|
||
* [`tools netem set`](../cmd/tools/netem/set.md) | ||
* [`tools netem show`](../cmd/tools/netem/show.md) | ||
|
||
These commands allow users to set link impairments (delay, jitter, packet loss) on any link that belongs to a container node and create labs simulating real-world network conditions. | ||
|
||
```bash title="setting packet loss at 10% rate on eth1 interface of clab-netem-r1 node" | ||
containerlab tools netem set -n clab-netem-r1 -i eth1 --loss 10 | ||
``` | ||
|
||
## External CA | ||
|
||
Containerlab used to generate Certificate Authority certs and keys to create node certs. While this satisfies most lab deployments, some users wanted to bring their own CA to containerlab. And here it is. | ||
|
||
Now it is possible to provide a path to external CA cert and key files via a newly introduced `settings` section in the clab file which will instruct containerlab to create node certs using this "external" CA. | ||
|
||
Read more about this feature in the [Certificates Management](../manual/cert.md#external-ca) document. | ||
|
||
## Aruba AOS-CX | ||
|
||
[Aruba AOS-CX](../manual/kinds/vr-aoscx.md) comes to containerlab! Thanks to @ssasso for his first and we hope not last contribution. | ||
|
||
## Miscellaneous | ||
|
||
* test harness powered by robot has been upgraded to rf 6.1.1 and CLAB_BIN env var is unified across all tests #1506 | ||
* instructions how to run Containerlab on Macs with ARM chips added in #1508 | ||
* ssh keys installation for srlinux has been adapted to support config-based ssh keys #1511 | ||
* big internal refactoring of links done by @steiler in #1475 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters