This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
2019-11-29 21:56:59 -05:00
2019-11-09 21:11:19 -05:00
2019-11-29 21:56:59 -05:00
2019-11-09 20:28:59 -05:00
2019-11-29 21:56:35 -05:00
2019-11-12 16:37:05 -05:00

FreeNAS-Network-Unlock

Configuration variables are changed within the config.py file.

Setup password-less SSH connection

You are responsible for setting up the password-less ssh connection from freenas to the other computer. You can use the following as a base.

# Run ssh-keygen to create the default ~/.ssh/id_rsa ssh key (no passphrase)
ssh-keygen

# Add the public key of this ssh key to the authorized keys of the PI
# We will be prompted to enter the password of the Pi use in order to access the Pi on this occasion, but once the keys are installed on the Pi we won't need to use the password again
cat ~/.ssh/id_rsa.pub | ssh <KEY_HOST_USER>@<KEY_HOST> 'mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys'

# Check that password-less access is working by running
ssh <KEY_HOST_USER>@<KEY_HOST>
# You should be dumped straight to the terminal of the Pi without being prompted for a password. You can now logout of the Pi using:
exit
Description
No description provided
Readme 199 KiB
Languages
Python 100%