Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Computer being captured has been added to the VCL database
  • Computer has been installed with Linux
  • Two network adapters are enabled on the computer: eth0, eth1
    • eth0 - connected to the private network
    • eth1 - connected to the public network
  • The ability to log in as root via SSH using an identity key on the private network from management node

Configure SSH Identity Key Authentication

...

  1. On the Linux computer being captured, create a /root/.ssh directory:
    Tip

    mkdir /root/.ssh

  2. On the management node, copy the public SSH identity key to the authorized_keys file on the Linux computer being captured:
    Tip

    scp /etc/vcl/vcl.key.pub <hostname or IP address>:/root/.ssh/authorized_keys

  3. Make sure you can login from the management node to the Linux computer being captured using the identity key:
    Tip

    ssh -i /etc/vcl/vcl.key <hostname or IP address>

...