> For the complete documentation index, see [llms.txt](https://n4shx.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://n4shx.gitbook.io/wiki/schule/archiv/ftp-ssh-remote-access.md).

# FTP / SSH / Remote Access

### `ftp`

Zweck: FTP-Zugriff testen.

```
ftp <IP>
```

### `ssh`

Zweck: Remote Login mit Credentials.

```
ssh user@<IP>
```

### `sftp`

Zweck: Dateiübertragung über SSH.

```
sftp user@<IP>
```

### `telnet`

Zweck: Klartext-Login oder Port-Test bei alten Diensten.

```
telnet <IP> 23
```

### `nc`

Zweck: einfache Verbindungsprüfung.

```
nc -nv <IP> 21
```
