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

# SSH Into a Raspberry Pi

> This guide describes how to connect to a Raspberry Pi over a secure ssh connection. 

<Note>
  It is assumed that your Raspberry Pi is connected over ethernet and has the IP
  `192.168.2.2`. Adjust any parameters as necessary.
</Note>

## Open a Terminal Window

<Tabs>
  <Tab title="Windows">
    <Steps>
      <Step title="Open Windows Run Dialog">
        Press the `Windows` + `R` keys to open the "Windows Run" dialog.
      </Step>

      <Step title="Launch Powershell">
        Type `Powershell` and press the `enter` key.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Linux">
    <Steps>
      <Step title="Launch Terminal">
        Press the `CTRL` + `ALT` + `T` keys on your keyboard
      </Step>

      <Step title="Done">
        That should open a terminal window on your device. If that doesn't please check the instructions for your specific linux distribution.
      </Step>
    </Steps>
  </Tab>

  <Tab title="MacOS">
    <Steps>
      <Step title="Open Spotlight">
        Press the **⌘** + `Spacebar` keys on your keyboard
      </Step>

      <Step title="Launch Terminal">
        Type `Terminal` in the search bar and press `enter` on your keyboard.
      </Step>
    </Steps>
  </Tab>
</Tabs>

## SSH Instructions

Type the following command into your terminal window:

<Note>
  `192.168.2.2` is the default IP Address on ROV configurations. Please change as
  necessary.
</Note>

<Tabs>
  <Tab title="dweOS">
    ```
    ssh dwe@192.168.2.2
    ```

    To log in, use the following default password on Raspberry Pi systems:

    <Tip>
      It may not look like you are typing in a password, but the terminal is indeed
      receiving input.
    </Tip>

    ```
    deepwater
    ```
  </Tab>

  <Tab title="Other">
    ```
    ssh pi@192.168.2.2
    ```

    To log in, use the following default password on Raspberry Pi systems:

    <Tip>
      It may not look like you are typing in a password, but the terminal is indeed
      receiving input.
    </Tip>

    ```
    raspberry
    ```
  </Tab>
</Tabs>
