summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-12-13 11:49:15 +0100
committerLudovic Courtès <ludo@gnu.org>2021-12-13 11:49:15 +0100
commit1052ae5f03de931b52c7a638c8e4f8d8d7093af3 (patch)
tree4913e4a7834f4ad6e44906d814cd46e7c21d981b /etc
parent869d69ad3248288ffe30264f5e5bd760792ca758 (diff)
parent788f56b4dc0729e07ad546c5bc9694759c271f09 (diff)
downloadguix-patches-1052ae5f03de931b52c7a638c8e4f8d8d7093af3.tar
guix-patches-1052ae5f03de931b52c7a638c8e4f8d8d7093af3.tar.gz
Merge branch 'master' into core-updates-frozen
Diffstat (limited to 'etc')
-rw-r--r--etc/news.scm53
1 files changed, 53 insertions, 0 deletions
diff --git a/etc/news.scm b/etc/news.scm
index ff81e4d246..46bac0b625 100644
--- a/etc/news.scm
+++ b/etc/news.scm
@@ -25,6 +25,59 @@
(channel-news
(version 0)
+ (entry (commit "223f1b1eb3707f1d3ef91200dd616ee6c8b77db0")
+ (title
+ (en "Improved static networking support on Guix System")
+ (fr "Meilleure prise en charge de réseaux statiques sur Guix System"))
+ (body
+ (en "Support for declarative static networking setup on Guix System
+has been improved. It now allows you to list IPv4 and IPv6 addresses in
+routes in a flexible way, similar to what you would do with the @command{ip}
+command, but in a declarative fashion, as in this example:
+
+@lisp
+;; Static networking for one NIC, IPv4-only.
+(service static-networking-service-type
+ (list (static-networking
+ (addresses
+ (list (network-address
+ (device \"eno1\")
+ (value \"10.0.2.15/24\"))))
+ (routes
+ (list (network-route
+ (destination \"default\")
+ (gateway \"10.0.2.2\"))))
+ (name-servers '(\"10.0.2.3\")))))
+@end lisp
+
+The @code{static-networking-service} procedure remains available but is
+deprecated. Run @command{info \"(guix) Networking Setup\"} for more
+information.")
+ (fr "La configuration déclarative et statique du réseau est mieux
+prise en charge sur Guix System. Il est maintenant possible d'énumérer des
+adresses IPv6 et IPv4 et les chemins avec plus de flexibilité, un peu comme ce
+qu'on peut faire avec la commande @command{ip} mais de manière déclarative,
+comme dans cet exemple :
+
+@lisp
+;; Réseau statique à une seule interface, IPv4 seulement.
+(service static-networking-service-type
+ (list (static-networking
+ (addresses
+ (list (network-address
+ (device \"eno1\")
+ (value \"10.0.2.15/24\"))))
+ (routes
+ (list (network-route
+ (destination \"default\")
+ (gateway \"10.0.2.2\"))))
+ (name-servers '(\"10.0.2.3\")))))
+@end lisp
+
+La procédure @code{static-networking-service} reste disponible mais elle est
+obsolète. Lancer @command{info \"(guix) Networking Setup\"} pour plus
+d'informations.")))
+
(entry (commit "52cb5cf5b852117b5151a67af187d80764849ad3")
(title
(en "Icedove 91: profile folder moved to @file{~/.thunderbird}")