Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
| amiga:howtos:raspi [2025/11/30 20:22] – angelegt gizmo | amiga:howtos:raspi [2025/11/30 20:44] (aktuell) – gizmo | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| ====== Raspberry Pi as Router & Server ====== | ====== Raspberry Pi as Router & Server ====== | ||
| - | The Plan is to use a Serial RS232 Connection for connecting the Amiga to my Home-Network and the Internet. I want it 2 achieve the " | + | The Plan is to use a Serial RS232 Connection for connecting the AMIGA to my Home-Network and the Internet. I want it 2 achieve the " |
| I'm doing this even if i know it would be slow and that i can achieve this maybe with pi-Storm and it's Wlan. | I'm doing this even if i know it would be slow and that i can achieve this maybe with pi-Storm and it's Wlan. | ||
| - | I also would span the Project | + | My config is spanned |
| + | ===== Services/ | ||
| + | As i'm experienced with Services i would not write in Detail howto install each Service/ | ||
| + | * FTP-Server | ||
| + | * Gopher-Server | ||
| + | * Telnet-Server | ||
| + | Notice i'm working without SSL/TLS for now - simply plain-text as it is enough for my Local Network. | ||
| + | ==== FTP-Server: VSFTPD ==== | ||
| + | https:// | ||
| + | Instead of ftp-Folders in User-Home-Directories i'm using a dedicated FTP-Folder on my RAID-Harddisks. | ||
| + | |||
| + | So my initial, simplified vsftpd.conf looks like this: | ||
| + | |||
| + | listen=YES | ||
| + | anonymous_enable=NO | ||
| + | local_enable=YES | ||
| + | write_enable=YES | ||
| + | local_umask=022 | ||
| + | use_localtime=YES | ||
| + | connect_from_port_20=YES | ||
| + | ftpd_banner=Welcome to media-pi FTP | ||
| + | chroot_local_user=YES | ||
| + | secure_chroot_dir=/ | ||
| + | pam_service_name=vsftpd | ||
| + | allow_writeable_chroot=YES | ||
| + | user_sub_token=$USER | ||
| + | local_root=/ | ||
| + | |||
| + | ==== Gopher-Server: | ||
| + | |||
| + | https:// | ||
| + | |||
| + | For now i leaved the Default-Config unchanged exept for root-Folder - i simply moved the / | ||
| + | |||
| + | port = 70 | ||
| + | servertype = ForkingTCPServer | ||
| + | timeout = 60 | ||
| + | abstract_headers = on | ||
| + | abstract_entries = always | ||
| + | tracebacks = yes | ||
| + | usechroot = yes | ||
| + | enable_tls = no | ||
| + | root = / | ||
| + | |||
| + | ==== Telnet ==== | ||
| + | |||
| + | Coming soon | ||