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

# 使用 SSH 登录

## 使用 SSH 登录

在连接 SSH 之前，请先建立[网络连接](./how-to-connect-to-wifi)。

* 在 Linux 主机上通过 UART 控制台，根据网络连接类型查找设备的 IP 地址：

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

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

* 在 Linux 主机上使用该 IP 地址与设备建立 SSH 连接：

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

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

* 使用以下密码连接到 SSH shell：
  ```text theme={null}
  oelinux123
  ```

<Note>
  将远程主机连接到与设备相同的 Wi-Fi 接入点。
</Note>
