Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
user:codemasterboom [2023/05/29 17:59] – add FTP case codemasterboomuser:codemasterboom [2023/07/05 23:47] – added must have section codemasterboom
Line 11: Line 11:
 Allowing for remote SFTP connection: Allowing for remote SFTP connection:
 <code bash> <code bash>
-opkg update +opkg update && opkg install openssh-sftp-server 
-opkg install openssh-sftp-server announce mc nano usbutils +</code> 
 +Must have: 
 +<code bash> 
 +opkg update && opkg install announce  
 +opkg update && opkg install nano  
 +opkg update && opkg install usbutils  
 +opkg update && opkg install mc
 </code> </code>
  
Line 32: Line 38:
  The smallest of the three popular FTP servers  The smallest of the three popular FTP servers
  
-  - Install from web-interface or command-line: “opkg install vsftpd”+  - Install from web-interface or command-line:**opkg install vsftpd**
   -     You might want to start and enable the vsftpd service in web-interface “System/Startup”   -     You might want to start and enable the vsftpd service in web-interface “System/Startup”
-  -     Configuration file is located in “/etc/vsftpd.conf” +  -     Configuration file is located in “**/etc/vsftpd.conf**” 
-  -     To set the default FTP folder add the following to the config file: “local_root=/srv”+  -     To set the default FTP folder add the following to the config file: “**local_root=/srv**
   -     To enable PASSIVE mode, add the following to the config file: “pasv_enable=YES”, “pasv_min_port=10090”, and “pasv_max_port=10100”   -     To enable PASSIVE mode, add the following to the config file: “pasv_enable=YES”, “pasv_min_port=10090”, and “pasv_max_port=10100”
     The vsftpd service can be controlled with the usual commands:     The vsftpd service can be controlled with the usual commands:
-    <code bash>+ 
 +<code>
    /etc/init.d/vsftpd start     (Start the service)    /etc/init.d/vsftpd start     (Start the service)
    /etc/init.d/vsftpd stop      (Stop the service)    /etc/init.d/vsftpd stop      (Stop the service)
  • Last modified: 2023/07/17 23:45
  • by codemasterboom