guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: hydra: deploy-node-129: Add static IP for iDRAC n


From: Maxim Cournoyer
Subject: branch master updated: hydra: deploy-node-129: Add static IP for iDRAC network access.
Date: Fri, 29 Jul 2022 10:32:43 -0400

This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch master
in repository maintenance.

The following commit(s) were added to refs/heads/master by this push:
     new 5922e4c  hydra: deploy-node-129: Add static IP for iDRAC network 
access.
5922e4c is described below

commit 5922e4c03372711d1b808c053c11be01298b5a86
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Jul 29 10:26:35 2022 -0400

    hydra: deploy-node-129: Add static IP for iDRAC network access.
    
    * hydra/deploy-node-129.scm (node-129-os): Add a new IP address.
---
 hydra/deploy-node-129.scm | 26 +++++++++++++++++---------
 1 file changed, 17 insertions(+), 9 deletions(-)

diff --git a/hydra/deploy-node-129.scm b/hydra/deploy-node-129.scm
index 025715b..5283c4a 100644
--- a/hydra/deploy-node-129.scm
+++ b/hydra/deploy-node-129.scm
@@ -115,15 +115,23 @@
       (services
        (modify-services (operating-system-user-services base-os)
          (static-networking-service-type
-          ;; This machine is reachable from the Internet so that it can
-          ;; be used as an alternative to Berlin to access the Guix
-          ;; MDC network.
-          networks => (cons (static-networking
-                             (addresses (list (network-address
-                                               (device "eno2")
-                                               (value "141.80.181.41/24"))))
-                             (provision '(backdoor))) ;required else car error
-                            networks))
+          networks =>
+          (cons (static-networking
+                 (addresses (list
+                             ;; This is a publicly accessible IP, to
+                             ;; allow accessing the Guix MDC network
+                             ;; via this machine when Berlin is down.
+                             (network-address
+                              (device "eno2")
+                              (value "141.80.181.41/24"))
+                             ;; This gives the machine access to the
+                             ;; iDRAC network, so that it can access
+                             ;; Berlin's iDRAC for example.
+                             (network-address
+                              (device "eno4")
+                              (value "141.80.167.251/26"))))
+                 (provision '(backdoor))) ;required else car error
+                networks))
          (openssh-service-type
           config => (openssh-configuration
                      (inherit config)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]