> For the complete documentation index, see [llms.txt](https://docs.plenit.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.plenit.com/productos/file-storage/details/access.md).

# Acceso

Los archivos se alcanzan por tres vías que conviven.

Para entender cuándo encaja cada una, ve a [Acceso y uso compartido.](/productos/file-storage/concepts/access-and-sharing.md)

### Vías de acceso

| Vía                   | Acceso                                            | Cuándo encaja                                       |
| --------------------- | ------------------------------------------------- | --------------------------------------------------- |
| Web                   | Desde el navegador, con credenciales o por correo | Movilidad, desde cualquier dispositivo              |
| Unidad en local (SMB) | Montada como recurso de red en el equipo          | Trabajar como en un servidor de ficheros de siempre |
| Escritorio Remoto     | Integrada en el entorno de Escritorio Remoto      | Cuando el cliente ya trabaja ahí                    |

### Montar la unidad por SMB

El host, el recurso y el usuario los obtienes del panel. El paso a paso completo está en el How-to; aquí tienes los comandos de referencia.

En Windows, con `net use`:

```c
net use Z: \\SERVIDOR\RECURSO /user:USUARIO * /persistent:yes
```

* `Z:` es la letra de unidad que asignas.
* `\\SERVIDOR\RECURSO` es la ruta que te da el panel.
* `*` hace que se pida la contraseña sin escribirla en el comando.
* `/persistent:yes` reconecta la unidad al iniciar sesión.

En Linux, montando CIFS:

```bash
sudo mount -t cifs //SERVIDOR/RECURSO /mnt/archivos -o username=USUARIO,vers=3.0
```

* `//SERVIDOR/RECURSO` es la ruta del panel.
* `/mnt/archivos` es el punto de montaje local.
* `vers=3.0` fija la versión del protocolo SMB.

> #### 📘 No escribas la contraseña en el comando
>
> En Windows, usa `*` para que se pida al vuelo.&#x20;
>
> En Linux, evita poner la contraseña en línea: apóyate en un fichero de credenciales con permisos restringidos en lugar de dejarla en el historial del shell.

### Dónde seguir

* Compartir con terceros: [Compartición externa.](/productos/file-storage/details/external-sharing.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.plenit.com/productos/file-storage/details/access.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
