From 5ab186e3dcc0d8af03c6f7a6799ca4168c487cee Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 15 Jun 2020 20:09:29 +0800 Subject: [PATCH] wfvm: allow network access in SSH demo --- artiq-fast/wfvm/demo-ssh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/artiq-fast/wfvm/demo-ssh.nix b/artiq-fast/wfvm/demo-ssh.nix index ad8a6d9..47c60e4 100644 --- a/artiq-fast/wfvm/demo-ssh.nix +++ b/artiq-fast/wfvm/demo-ssh.nix @@ -6,6 +6,7 @@ in wfvm.utils.wfvm-run { name = "demo-ssh"; image = import ./demo-image.nix { inherit pkgs; }; + isolateNetwork = false; script = '' ${pkgs.sshpass}/bin/sshpass -p1234 -- ${pkgs.openssh}/bin/ssh -p 2022 wfvm@localhost -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null '';