Automation in the context of multifactor authentication: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
No edit summary
 
(15 intermediate revisions by 3 users not shown)
Line 3: Line 3:


<!--T:1-->
<!--T:1-->
Automated workflows which connect to the clusters without human intervention cannot make use of a second authentication factor. In order to execute such workflows after MFA becomes a requirement, you must request access to one of our special nodes. These nodes will not require the use of a second factor, but will be otherwise much more limited than regular login nodes in terms of the type of authentication they accept and the type of action that they can be used to perform.
An automated workflow which involves some outside machine connecting to a cluster without human intervention cannot make use of a second authentication factor. In order to execute such a workflow now that MFA is a requirement, you must request access to an '''automation node'''. An automation node does not require the use of a second factor, but is much more limited than a regular login node in terms of the type of authentication it accepts and the types of actions that it can be used to perform.


= Increased security measures = <!--T:2-->
= Increased security measures = <!--T:2-->
== Available only by request ==
== Available only by request ==
Users who need to make use of automated workflows for their research must first contact our [[technical support]] to be allowed to use these nodes. When contacting us, please explain in detail the type of automation you intend to use as part of your workflow. Tell us what commands will be executed and what tools or libraries you will be using to manage the automation.
If you need to make use of an automated workflow for your research, contact our [[technical support]] and request access to an automation node. When contacting us, please explain in detail the type of automation you intend to use. Tell us what commands will be executed and what tools or libraries you will be using to manage the automation.


== Available only through constrained SSH keys == <!--T:3-->
== Available only through constrained SSH keys == <!--T:3-->
The only accepted means of authentication for the automation nodes will be through [[SSH_Keys#Using_CCDB|SSH keys uploaded to the CCDB]]. SSH keys written in your <i>.ssh/authorized_keys</i> file are not accepted. In addition, the SSH keys <b>must</b> obey the following constraints.   
The only accepted means of authentication for the automation nodes is through [[SSH_Keys#Using_CCDB|SSH keys uploaded to the CCDB]]. SSH keys written in your <i>.ssh/authorized_keys</i> file are not accepted. In addition, the SSH keys <b>must</b> obey the following constraints.   


=== <code>restrict</code> === <!--T:4-->
=== <code>restrict</code> === <!--T:4-->
Line 16: Line 16:


=== <code>from="pattern-list"</code> === <!--T:5-->
=== <code>from="pattern-list"</code> === <!--T:5-->
This constraint specifies that the key can only be used from IP addresses that match the patterns. This is to ensure that this key is not used from computers other than the ones intended. The patterns list must include only IP addresses that fully specify at least the network class, the network, and the subnet, which are the first three elements of an IP address, for example, <code>x.y.*.*</code> would not be accepted, but <code>x.y.z.*</code> would be accepted. Note that the IP address should be a ''public'' IP address, thus anything like <code>10.0.0.0 – 10.255.255.255</code>, <code>172.16.0.0 – 172.31.255.255</code> and <code>192.168.0.0 – 192.168.255.255</code> would be incorrect. You can use a site like [https://whatismyipaddress.com/ What Is My IP Address?] or the shell command <code>curl ifconfig.me</code> to learn your public IP address.
This constraint specifies that the key can only be used from IP addresses that match the patterns. This is to ensure that this key is not used from computers other than the ones intended. The pattern list must include only IP addresses that fully specify at least the network class, the network, and the subnet, which are the first three elements of an IP address, for example, <code>x.y.*.*</code> would not be accepted, but <code>x.y.z.*</code> would be accepted. Also, the IP address must be a ''public'' IP address; thus anything like <code>10.0.0.0 – 10.255.255.255</code>, <code>172.16.0.0 – 172.31.255.255</code> and <code>192.168.0.0 – 192.168.255.255</code> is incorrect. You can use a site like [https://whatismyipaddress.com/ What Is My IP Address?] or the shell command <code>curl ifconfig.me</code> to learn your public IP address.


=== <code>command="COMMAND"</code> === <!--T:6-->
=== <code>command="COMMAND"</code> === <!--T:6-->
Line 81: Line 81:
{{Command|ssh robot /usr/bin/ls}}
{{Command|ssh robot /usr/bin/ls}}
{{Command|rsync -a datadir/a robot:scratch/testdata}}
{{Command|rsync -a datadir/a robot:scratch/testdata}}
</translate>


= IPv4 vs IPv6 issue =
= IPv4 vs IPv6 issue = <!--T:17-->


When connecting to the robot node the SSH client on your computer may choose to use the '''IPv6 addressing''' over the older '''IPv4'''.
<!--T:18-->
This seems to be more probably in Windows environment.  
When connecting to a automation node the SSH client on your computer may choose to use the '''IPv6 addressing''' over the older '''IPv4'''.
This seems to be more probable in a Windows environment.  
If this is the case you have to make sure that the IP address mask you put in the <code>restrict,from=</code> field of the key
If this is the case you have to make sure that the IP address mask you put in the <code>restrict,from=</code> field of the key
matches the type your computer will be using when connecting to the node.
matches the type your computer will be using when connecting to the node.


<!--T:19-->
You can check your addresses using this web site: https://test-ipv6.com/ .
You can check your addresses using this web site: https://test-ipv6.com/ .


* An IPv4 address would look like '''199.241.166.5'''.
<!--T:20-->
* An IPv6 address could be similar to '''2620:123:7002:4::5'''.
* An IPv4 address could look like '''199.241.166.5'''.
* An IPv6 address could look like '''2620:123:7002:4::5'''.


The possible problem is that if you put the IPv4 address mask, '''192.168.64.*''' into the CCDB SSH key, and  
<!--T:21-->
your SSH client will be connecting the the robot node using IPv6 address, the source address will not match the mask in the key
The possible problem is that if you put the IPv4 address mask, '''199.241.166.*''' into the CCDB SSH key, and  
and the key will not be accepted by the robot node.  
your SSH client will be connecting to the automation node using IPv6 address, the source address will not match the mask in the key
and the key will not be accepted by the automation node.  


=== How to identify the problem ===
=== How to identify the problem === <!--T:22-->


If you are having difficulties to make the SSH connection to a robot node working.
<!--T:23-->
Try this test command:
If you are having difficulties to make the SSH connection to an automation node work,
try this test command:
  ssh -i ~/.ssh/automation_key -vvv username@robot.graham.alliancecan.ca "ls -l"  
  ssh -i ~/.ssh/automation_key -vvv username@robot.graham.alliancecan.ca "ls -l"  


This command tries to connect to the robot node on Graham cluster and execute the <code>ls -l</code> command  
<!--T:24-->
This tries to connect to the automation node at Graham and execute the <code>ls -l</code> command  
using the <code>~/.ssh/automation_key</code> SSH key.
using the <code>~/.ssh/automation_key</code> SSH key.
Then it prints the list of files in your home directory on Graham to screen.
Then it prints the list of files in your home directory on Graham to screen.


This command will produce a lot of debug output due to the <code>-vvv</code> option (be Very Very Verbose).
<!--T:25-->
This command will produce a lot of debug output due to the <code>-vvv</code> option ("Very Very Verbose").
Look for the '''Connecting to...''' message there.
Look for the '''Connecting to...''' message there.
If it says something like this:
If it says something like this:
  debug1: Connecting to robot.graham.alliancecan.ca [199.241.166.5] port 22.
  debug1: Connecting to robot.graham.alliancecan.ca [199.241.166.5] port 22.


it means the IPv4 is being used.
<!--T:26-->
it means that IPv4 is being used.
If the message is similar to  
If the message is similar to  
  debug1: Connecting to robot.graham.alliancecan.ca [2620:123:7002:4::5] port 22.
  debug1: Connecting to robot.graham.alliancecan.ca [2620:123:7002:4::5] port 22.


<!--T:27-->
then IPv6 is being used to make the connection.
then IPv6 is being used to make the connection.


=== Possible solutions ===
=== Possible solutions === <!--T:28-->


<!--T:29-->
* You can make the SSH client to '''explicitly use either IPv4 or IPv6''' using the <code>-4</code> and <code>-6</code> options, respectively, to match the format you used for the key in CCDB.
* You can make the SSH client to '''explicitly use either IPv4 or IPv6''' using the <code>-4</code> and <code>-6</code> options, respectively, to match the format you used for the key in CCDB.


* You can try using an '''IP address instead of the name''' to point to the robot node. Using Graham example, try using the  
<!--T:30-->
* You can try using an '''IP address instead of the name''' to point to the automation node. Using Graham example, try using the  
: <code>ssh -i ~/.ssh/automation_key -vvv username@199.241.166.5 "ls -l"</code>
: <code>ssh -i ~/.ssh/automation_key -vvv username@199.241.166.5 "ls -l"</code>
: instead, to force SSH to use the IPv4 addresses.
: instead, to force SSH to use the IPv4 addresses.


* You can try to '''disable the IPv6 addressing''' for your system, to make sure that only IPv4 is used.
<!--T:31-->
: Currently, there should not be any negative impact on your system.  
* You can try to '''disable the IPv6 addressing''' for your computer, to make sure that only IPv4 is used.
: How to disable IPv6 will depend on your system and the operating system.
: Currently, there should not be any negative impact on your computer. However, Microsoft does not recommend this, and this should be your '''last resort''' method, if nothing else works.
: How to disable IPv6 will depend on your operating system.


= Automation using Python and Paramiko =
= Automation using Python and Paramiko = <!--T:32-->


If you are using the [https://www.paramiko.org/index.html Paramiko Python module] to automate your workflow, this is how you can make it work with the robot nodes:
<!--T:33-->
If you are using the [https://www.paramiko.org/index.html Paramiko Python module] to automate your workflow, this is how you can make it work with the automation nodes:
<source lang=python>
<source lang=python>
# ====================================================================================================
# ====================================================================================================
Line 143: Line 155:
# ====================================================================================================
# ====================================================================================================


<!--T:34-->
key = paramiko.Ed25519Key.from_private_key_file("/home/username/.ssh/cc_allowed")
key = paramiko.Ed25519Key.from_private_key_file("/home/username/.ssh/cc_allowed")


<!--T:35-->
user = "username"
user = "username"
host = "robot.graham.alliancecan.ca"
host = "robot.graham.alliancecan.ca"


<!--T:36-->
ssh = paramiko.SSHClient()
ssh = paramiko.SSHClient()


<!--T:37-->
# If the host is not known, it is OK.
# If the host is not known, it is OK.
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())


<!--T:38-->
ssh.connect(hostname=host, username=user, pkey=key)
ssh.connect(hostname=host, username=user, pkey=key)


<!--T:39-->
cmd = "ls -l"
cmd = "ls -l"
stdin, stdout, stderr = ssh.exec_command(cmd)
stdin, stdout, stderr = ssh.exec_command(cmd)


<!--T:40-->
print("".join(stdout.readlines()))
print("".join(stdout.readlines()))


<!--T:41-->
ssh.close()
ssh.close()
# ====================================================================================================
# ====================================================================================================
</source>
</source>
This code connects to the robot node on '''Graham''' using an automation key specified in CCDB and  
This code connects to the automation node on '''Graham''' using an key specified in CCDB and  
executes the <code>ls -l</code> command to get the list of files.
executes the <code>ls -l</code> command to get the list of files.
Then prints the list to the screen.
Then prints the list to the screen.


Note, that it is important to install '''paramiko''' with the
<!--T:42-->
Note that it is important to <b>install Paramiko</b> with the
  $ pip install paramiko[all]
  $ pip install paramiko[all]


<!--T:43-->
command. This will make sure that the support for the '''Ed25519''' key type will also be installed.
command. This will make sure that the support for the '''Ed25519''' key type will also be installed.
</translate>

Latest revision as of 18:33, 17 June 2024

Other languages:

An automated workflow which involves some outside machine connecting to a cluster without human intervention cannot make use of a second authentication factor. In order to execute such a workflow now that MFA is a requirement, you must request access to an automation node. An automation node does not require the use of a second factor, but is much more limited than a regular login node in terms of the type of authentication it accepts and the types of actions that it can be used to perform.

Increased security measures[edit]

Available only by request[edit]

If you need to make use of an automated workflow for your research, contact our technical support and request access to an automation node. When contacting us, please explain in detail the type of automation you intend to use. Tell us what commands will be executed and what tools or libraries you will be using to manage the automation.

Available only through constrained SSH keys[edit]

The only accepted means of authentication for the automation nodes is through SSH keys uploaded to the CCDB. SSH keys written in your .ssh/authorized_keys file are not accepted. In addition, the SSH keys must obey the following constraints.

restrict[edit]

This constraint disables port forwarding, agent forwarding, and X11 forwarding. It also disables the pseudo teletype (PTY), blocking most interactive workloads. This is required because these automation nodes are not intended to be used to start long-running or interactive processes. Regular login nodes must be used instead.

from="pattern-list"[edit]

This constraint specifies that the key can only be used from IP addresses that match the patterns. This is to ensure that this key is not used from computers other than the ones intended. The pattern list must include only IP addresses that fully specify at least the network class, the network, and the subnet, which are the first three elements of an IP address, for example, x.y.*.* would not be accepted, but x.y.z.* would be accepted. Also, the IP address must be a public IP address; thus anything like 10.0.0.0 – 10.255.255.255, 172.16.0.0 – 172.31.255.255 and 192.168.0.0 – 192.168.255.255 is incorrect. You can use a site like What Is My IP Address? or the shell command curl ifconfig.me to learn your public IP address.

command="COMMAND"[edit]

This constraint forces the command COMMAND to be executed when the connection is established. This is so that you may restrict which commands can be used with this key.

Convenience wrapper scripts to use for command=[edit]

command constraints can specify any command, but they are most useful when using a wrapper script which will accept or reject commands based on which command is being called. You can write your own script, but for convenience, we provide a number of such scripts which allow common actions. These scripts are defined in this git repository.

  • /cvmfs/soft.computecanada.ca/custom/bin/computecanada/allowed_commands/transfer_commands.sh allows only file transfers, such as scp, sftp or rsync.
  • /cvmfs/soft.computecanada.ca/custom/bin/computecanada/allowed_commands/archiving_commands.sh allows commands to archive files, such as gzip, tar or dar.
  • /cvmfs/soft.computecanada.ca/custom/bin/computecanada/allowed_commands/file_commands.sh allows commands to manipulate files, such as mv, cp or rm.
  • /cvmfs/soft.computecanada.ca/custom/bin/computecanada/allowed_commands/git_commands.sh allows the git command.
  • /cvmfs/soft.computecanada.ca/custom/bin/computecanada/allowed_commands/slurm_commands.sh allows some Slurm commands, such as squeue, sbatch.
  • /cvmfs/soft.computecanada.ca/custom/bin/computecanada/allowed_commands/allowed_commands.sh allows all of the above.

Examples of accepted SSH keys[edit]

Accepted SSH keys must include all 3 of the above constraints to be accepted. Here are examples of SSH keys that would be accepted: For example, the following key would be accepted, and could only be used for transferring files (through scp, sftp or rsync for example):

restrict,from="216.18.209.*",command="/cvmfs/soft.computecanada.ca/custom/bin/computecanada/allowed_commands/transfer_commands.sh" ssh-ed25519 AAAAC3NzaC1lZDI1NTE6AACAIExK9iTTDGsyqKKzduA46DvIJ9oFKZ/WN5memqG9Invw

while this one would only allow Slurm commands (squeue, scancel, sbatch, scontrol, sq):

restrict,from="216.18.209.*",command="/cvmfs/soft.computecanada.ca/custom/bin/computecanada/allowed_commands/slurm_commands.sh" ssh-ed25519 AAAAC3NzaC1lZDI1NTE6AACAIExK9iTTDGsyqKKzduA46DvIJ9oFKZ/WN5memqG9Invw


Warning

The constraints must be added directly as text in front of your key, before uploading the complete string in your account.



Automation nodes for each cluster[edit]

Here is the hostname of the node to be used for unattended connections on each cluster:

  • Cedar: robot.cedar.alliancecan.ca
  • Graham: robot.graham.alliancecan.ca
  • Béluga: robot.beluga.alliancecan.ca
  • Narval: robot.narval.alliancecan.ca
  • Niagara: robot.niagara.alliancecan.ca (you may also use robot1.niagara.alliancecan.ca or robot2.niagara.alliancecan.ca directly, one is the fallback for the other)

Using the right key[edit]

If you have multiple keys on your computer, you need to be careful to use the correct key. This is typically done by passing parameters to the command you are using. Below are a few examples.

With ssh or scp:

Question.png
[name@server ~]$ ssh -i .ssh/private_key_to_use ...
Question.png
[name@server ~]$ scp -i .ssh/private_key_to_use ...

With rsync:

Question.png
[name@server ~]$ rsync -e "ssh -i .ssh/private_key_to_use" ...

It's often much more convenient to put these parameters into your ~/.ssh/config file, so they get picked up by any ssh client invocation. For instance:

host robot
 hostname robot.cluster.alliancecan.ca
 user myrobot
 identityfile ~/.ssh/my-robot-key
 identitiesonly yes
 requesttty no

this means that the following kinds of commands will do what you want:

Question.png
[name@server ~]$ ssh robot /usr/bin/ls
Question.png
[name@server ~]$ rsync -a datadir/a robot:scratch/testdata

IPv4 vs IPv6 issue[edit]

When connecting to a automation node the SSH client on your computer may choose to use the IPv6 addressing over the older IPv4. This seems to be more probable in a Windows environment. If this is the case you have to make sure that the IP address mask you put in the restrict,from= field of the key matches the type your computer will be using when connecting to the node.

You can check your addresses using this web site: https://test-ipv6.com/ .

  • An IPv4 address could look like 199.241.166.5.
  • An IPv6 address could look like 2620:123:7002:4::5.

The possible problem is that if you put the IPv4 address mask, 199.241.166.* into the CCDB SSH key, and your SSH client will be connecting to the automation node using IPv6 address, the source address will not match the mask in the key and the key will not be accepted by the automation node.

How to identify the problem[edit]

If you are having difficulties to make the SSH connection to an automation node work, try this test command:

ssh -i ~/.ssh/automation_key -vvv username@robot.graham.alliancecan.ca "ls -l" 

This tries to connect to the automation node at Graham and execute the ls -l command using the ~/.ssh/automation_key SSH key. Then it prints the list of files in your home directory on Graham to screen.

This command will produce a lot of debug output due to the -vvv option ("Very Very Verbose"). Look for the Connecting to... message there. If it says something like this:

debug1: Connecting to robot.graham.alliancecan.ca [199.241.166.5] port 22.

it means that IPv4 is being used. If the message is similar to

debug1: Connecting to robot.graham.alliancecan.ca [2620:123:7002:4::5] port 22.

then IPv6 is being used to make the connection.

Possible solutions[edit]

  • You can make the SSH client to explicitly use either IPv4 or IPv6 using the -4 and -6 options, respectively, to match the format you used for the key in CCDB.
  • You can try using an IP address instead of the name to point to the automation node. Using Graham example, try using the
ssh -i ~/.ssh/automation_key -vvv username@199.241.166.5 "ls -l"
instead, to force SSH to use the IPv4 addresses.
  • You can try to disable the IPv6 addressing for your computer, to make sure that only IPv4 is used.
Currently, there should not be any negative impact on your computer. However, Microsoft does not recommend this, and this should be your last resort method, if nothing else works.
How to disable IPv6 will depend on your operating system.

Automation using Python and Paramiko[edit]

If you are using the Paramiko Python module to automate your workflow, this is how you can make it work with the automation nodes:

# ====================================================================================================
#! /usr/bin/env python3
# ====================================================================================================
import os
import paramiko
# ====================================================================================================

key = paramiko.Ed25519Key.from_private_key_file("/home/username/.ssh/cc_allowed")

user = "username"
host = "robot.graham.alliancecan.ca"

ssh = paramiko.SSHClient()

# If the host is not known, it is OK.
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

ssh.connect(hostname=host, username=user, pkey=key)

cmd = "ls -l"
stdin, stdout, stderr = ssh.exec_command(cmd)

print("".join(stdout.readlines()))

ssh.close()
# ====================================================================================================

This code connects to the automation node on Graham using an key specified in CCDB and executes the ls -l command to get the list of files. Then prints the list to the screen.

Note that it is important to install Paramiko with the

$ pip install paramiko[all]

command. This will make sure that the support for the Ed25519 key type will also be installed.