This is an old revision of the document!
These instructions will work on any FreeBSD install, but you don't necessarily need nano to accomplish it. On a jail on FreeNAS you need nano because the keyboard combinations required to edit the config files cannot be executed on the web gui console.
Make sure root password is set:
passwd
Update pkg database:
pkg update
Install nano text editor:
pkg install nano
Open ssh daemon config file with nano:
nano /etc/ssh/sshd_config
Yop can <mono>ctrl + shift + w</mono> to find text
Un-hash and edit the following values:
<mono>ctrl + shift + x</mono> to exit nano
Press <mono>Y</mono> to save changed
Press <mono>Enter</mono> to confirm write
Enable the SSH daemon:
sysrc sshd_enable=yes
Start SSH daemon:
service sshd start