From fe25ba16cb6d435a0618c5203b431cba7fbd314d Mon Sep 17 00:00:00 2001 From: <> Date: Fri, 21 Feb 2025 10:55:57 +0000 Subject: [PATCH] Deployed 1c9c5617 with MkDocs version: 1.6.1 --- rn/0.65/index.html | 4 +- search/search_index.json | 2 +- sitemap.xml | 374 +++++++++++++++++++-------------------- sitemap.xml.gz | Bin 1210 -> 1210 bytes 4 files changed, 190 insertions(+), 190 deletions(-) diff --git a/rn/0.65/index.html b/rn/0.65/index.html index 1c071d3e0..e6bad518f 100644 --- a/rn/0.65/index.html +++ b/rn/0.65/index.html @@ -7,9 +7,9 @@ .gdesc-inner { font-size: 0.75rem; } body[data-md-color-scheme="slate"] .gdesc-inner { background: var(--md-default-bg-color);} body[data-md-color-scheme="slate"] .gslide-title { color: var(--md-default-fg-color);} - body[data-md-color-scheme="slate"] .gslide-desc { color: var(--md-default-fg-color);}
Skip to content

Release 0.65#

2025-02-20 · Full Changelog

Promiscuous mode for MACVLAN interfaces#

MACVLAN interfaces are now created in promiscuous mode by default. #2460

Before this change, users might have noticed that some traffic flows were not passing in and out the interface.

No need for GitHub token#

The download script no longer uses the GitHub API to fetch the latest available release, and instead relies on public GitHub endpoints to fetch it.

This removes the need to provide GitHub token to the download script in the proxy-based environments.

Env vars support in startup configs#

Now it is possible to use environment variables in startup configs. #2471

This enables startup config customization at runtime, by embedding the variables in the startup config body. Both file-based and inline startup configs are supported.

❯ cat cfg-with-env.cfg
+    body[data-md-color-scheme="slate"] .gslide-desc { color: var(--md-default-fg-color);}       

Release 0.65#

2025-02-20 · Full Changelog

Promiscuous mode for MACVLAN interfaces#

MACVLAN interfaces are now created in promiscuous mode by default. #2460

Before this change, users might have noticed that some traffic flows were not passing in and out the interface.

No need for GitHub token#

The download script no longer uses the GitHub API to fetch the latest available release, and instead relies on public GitHub endpoints to fetch it.

This removes the need to provide GitHub token to the download script in the proxy-based environments.

Env vars support in startup configs#

Now it is possible to use environment variables in startup configs. #2471

This enables startup config customization at runtime, by embedding the variables in the startup config body. Both file-based and inline startup configs are supported.

❯ cat cfg-with-env.cfg
 set / system information location ${SRL_LOCATION:=default-value}
-

The snippet above will have the SRL_LOCATION variable set to default-value if the variable is not set in the environment and will use the env var value otherwise.

Miscellaneous#

  • json output format added to netem output #2454
  • new logging library with structured logging #2449
  • updated VS Code extension documentation #2427 #2451