> For the complete documentation index, see [llms.txt](https://docs.ramsdenj.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ramsdenj.com/introduction/introduction-1/copy_ssh_keys.md).

# Copy SSH Keys off FreeNAS

To copy ssh keys using `ssh-copy-id` off of FreeNAS an `ssh-agent` needs to be started . On FreeNAS run.

```shell
sh
eval `ssh-agent -s`
```

Then send any keys to a remote server.

```shell
ssh-copy-id <user>@<ip address>
```
