@@ -62,8 +62,12 @@ For example, you can connect to a device with the IP 192.168.2.51 on the WiFi ne
ssh -J pi@raspberrypi.local 192.168.2.51
```
It is possible to encounter an issue where SSH is very slow... One possible fix is to disable reverse DNS lookup using [this fix](https://www.raspberrypi.org/forums/viewtopic.php?t=44945). Just uncomment `UseDNS no` in `/etc/ssh/sshd_config` and reboot. Or you can try and connect to the Raspberry Pi directly via its IP address.
You can add your personnal SSH public key to the Raspberry Pi's `authorized_keys` file either manually inside the Raspberry Pi or from your computer using the following command:
```sh
ssh-copy-id pi@raspberrypi.local
```
**Note**: It is possible to encounter an issue where SSH is very slow... One possible fix is to disable reverse DNS lookup using [this fix](https://www.raspberrypi.org/forums/viewtopic.php?t=44945). Just uncomment `UseDNS no` in `/etc/ssh/sshd_config` and reboot. Or you can try and connect to the Raspberry Pi directly via its IP address.