# SSH (Secure SHell)

## Sileo

1\) Instalar OpenSSH en el dispositivo desde Sileo.

* Sileo -> Buscar -> OpenSSH -> Obtener -> Añadir a la cola -> Confirmar

<figure><img src="/files/9lICcIaygc0s9Cm4Opho" alt=""><figcaption></figcaption></figure>

2\) Opción 1: asignar contraseña a usuario root desde SSH.

```shell
ssh mobile@<device-ip-address>
# Ingresar contraseña establecida durante la instalación de Sileo (usuario mobile)
sudo passwd root
```

3\) Opción 2: asignar contraseña a usuario root desde NewTerm.

3.1) Instalar NewTerm en el dispositivo desde Sileo.

* Sileo -> Buscar -> NewTerm -> Obtener -> Añadir a la cola -> Confirmar

<figure><img src="/files/CcHz0IMSIpn9CvNEx9fl" alt=""><figcaption></figcaption></figure>

3.2) Asignar contraseña a usuario root desde NewTerm.

```sh
sudo passwd root
# Ingresar contraseña establecida durante la instalación de Sileo (usuario mobile)
```

<figure><img src="/files/7W9lvuX5HrPaUty2dHhE" alt=""><figcaption></figcaption></figure>

4\) Conexión SSH al dispositivo.

```shell
ssh root@<device-ip-address>
```

## Cydia

1\) Instalar OpenSSH en el dispositivo desde Cydia.

* Cydia -> Buscar -> OpenSSH -> Instalar

<figure><img src="/files/dAsBUnNOLh8ZSEyaKmYI" alt=""><figcaption></figcaption></figure>

2\) Conexión SSH al dispositivo.

* Usuario: `root`
* Contraseña por defecto: `alpine`

```shell
ssh root@<device-ip-address>
```

3\) Cambiar contraseñas predeterminadas.

```shell
# Usuario root
su root
passwd

# Usuario mobile
passwd mobile
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mobile.mrw0l05zyn.cl/ios/ssh-secure-shell.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
