summaryrefslogtreecommitdiff
path: root/gnu/services
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-10-27 12:20:49 +0200
committerLudovic Courtès <ludo@gnu.org>2021-12-12 23:20:49 +0100
commit1644f4f1f8957f3f3a88037aed80d501fdceaae7 (patch)
treed7167cf473b30e800afeb5dcdc8df60c1c12ebd8 /gnu/services
parent223f1b1eb3707f1d3ef91200dd616ee6c8b77db0 (diff)
downloadguix-patches-1644f4f1f8957f3f3a88037aed80d501fdceaae7.tar
guix-patches-1644f4f1f8957f3f3a88037aed80d501fdceaae7.tar.gz
services: Define '%qemu-static-networking'.
* gnu/services/base.scm (%qemu-static-networking): New variable. * gnu/system/hurd.scm (%base-services/hurd): Use it. * doc/guix.texi (Networking Setup): Document it.
Diffstat (limited to 'gnu/services')
-rw-r--r--gnu/services/base.scm16
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index d93ea6f063..31b418dabf 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -116,6 +116,8 @@
static-networking-service
static-networking-service-type
+ %qemu-static-networking
+
udev-configuration
udev-configuration?
udev-configuration-rules
@@ -2708,6 +2710,20 @@ to handle."
(provision (or provision '(networking)))
(name-servers name-servers)))))
+(define %qemu-static-networking
+ ;; Networking configuration for QEMU's user-mode network stack (info "(QEMU)
+ ;; Using the user mode network stack").
+ (static-networking
+ (addresses (list (network-address
+ (device "eth0")
+ (value "10.0.2.15/24"))))
+ (routes (list (network-route
+ (destination "default")
+ (gateway "10.0.2.2"))))
+ (requirement '())
+ (provision '(networking))
+ (name-servers '("10.0.2.3"))))
+
(define %base-services
;; Convenience variable holding the basic services.