> ## Documentation Index
> Fetch the complete documentation index at: https://dragonwingdocs.qualcomm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Sign in using SSH

## Sign in using SSH

Establish [network connectivity](./how-to-connect-to-wifi) before connecting to
SSH.

* Locate the IP address of the device according to the type of network
  connection using the UART console on the Linux host:

  <CodeGroup>
    ```bash Ethernet theme={null}
    ip address show eth2
    ```

    ```bash Wi-Fi theme={null}
    ip address show wlp1s0
    ```
  </CodeGroup>

* Use the IP address from the Linux host to establish an SSH connection
  to the device:

  ```bash theme={null}
  ssh root@ip-address
  ```

  ```text Example theme={null}
  ssh root@192.168.0.222
  ```

* Connect to the SSH shell using the following password:
  ```text theme={null}
  oelinux123
  ```

<Note>
  Connect the remote host to the same Wi-Fi access point as the device.
</Note>
