Mittwoch, 10. September 2025, 05:39 UTC+2
Sie sind nicht angemeldet.
Lieber Besucher, herzlich willkommen bei: NAS Forum. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.
![]() |
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
Jan 27 08:14:54 restart. Jan 27 08:14:54 crond 2.3.2 dillon, started, log level 8 Jan 27 08:14:58 crond 2.3.2 dillon, started, log level 8 Apr 15 00:08:24 restart. Apr 15 00:08:31 mod_delay/0.5: error opening DelayTable '/var/run/proftpd/proftpd.delay': No such file or directory Apr 15 00:08:31 ProFTPD 1.3.0 (stable) (built ¶g¤@ 3¤ë 5 09:03:17 CST 2007) standalone mode STARTUP Apr 15 00:08:32 ProFTPD killed (signal 15) Apr 15 00:08:32 mod_delay/0.5: warning: unable to open DelayTable '/var/run/proftpd/proftpd.delay': No such file or directory Apr 15 00:08:32 ProFTPD 1.3.0 standalone mode SHUTDOWN Apr 15 00:08:33 ProFTPD 1.3.0 (stable) (built ¶g¤@ 3¤ë 5 09:03:17 CST 2007) standalone mode STARTUP Apr 15 00:08:42 crond 2.3.2 dillon, started, log level 8 Apr 15 00:08:44 Power management is enabled !!! Apr 15 00:08:45 crond 2.3.2 dillon, started, log level 8 Apr 15 00:08:46 ^MStarting pid 1358, console /dev/console: '/sbin/getty' Apr 15 00:08:46 Warning: Reading the random source seems to have blocked. If you experience problems, you probably need to find a better entropy source. Apr 15 00:08:50 Running in background |
ist normal.
Zitat
Warning: Reading the random source seems to have blocked. If you experience problems, you probably need to find a better entropy source.
![]() |
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
ServerName "NAS FTPD" ServerType standalone DefaultServer on DefaultRoot /mnt CharsetLocal UTF-8 CharsetRemote CP950 SystemLog /var/log/messages Port 21 Umask 006 MaxInstances 30 User nobody Group nobody MasqueradeAddress ###.dyndns.org PassivePorts 60000 60100 <IfModule mod_dynmasq.c> # Refresh any configured MasqueradeAddress directives every 8 hours DynMasqRefresh 28800 </IfModule> <IfModule mod_delay.c> DelayEngine off </IfModule> UseSendfile off UseReverseDNS off IdentLookups off AllowStoreRestart on RequireValidShell off receivefile on ## This parameter is for TSS. You can fill in either "on" or "off". ## ScoreboardFile /var/run/proftpd.pid # Normally, we want files to be overwriteable. <Directory /mnt/IDE1/admin> <Limit DIRS READ WRITE> DenyAll </Limit> <Limit DIRS READ WRITE> AllowUser admin </Limit> </Directory> <Directory /mnt/IDE1/guest-share> <Limit DIRS READ WRITE> DenyAll </Limit> <Limit DIRS READ WRITE> AllowUser guest-share </Limit> </Directory> <Directory /mnt/IDE1/daten> <Limit DIRS READ WRITE> DenyAll </Limit> <Limit DIRS READ WRITE> AllowUser carsten,jessica </Limit> </Directory> <Directory /mnt/IDE1/privat> <Limit DIRS READ WRITE> DenyAll </Limit> <Limit DIRS READ WRITE> AllowUser carsten,jessica </Limit> </Directory> <Directory /mnt/IDE1/public> <Limit DIRS READ WRITE> DenyAll </Limit> <Limit DIRS READ> AllowUser mike,admin </Limit> <Limit DIRS READ WRITE> AllowUser carsten,jessica </Limit> </Directory> |