# 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>
```
