Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | Upstream-Status: Inappropriate [configuration] |
| 2 | |
| 3 | proftpd tries to get the IP address from the hostname. |
| 4 | Unluckily now the hostname is not properly configured in /etc/hosts. |
| 5 | We can use this patch as a workaround. |
| 6 | |
| 7 | Author: Dexuan Cui <dexuan.cui@intel.com> |
| 8 | Tue Oct 25 12:59:27 CST 2011 |
| 9 | |
| 10 | --- proftpd-1.3.3c.orig/sample-configurations/basic.conf |
| 11 | +++ proftpd-1.3.3c/sample-configurations/basic.conf |
| 12 | @@ -7,6 +7,9 @@ |
| 13 | ServerType standalone |
| 14 | DefaultServer on |
| 15 | |
| 16 | +#By default we bind to all interfaces. |
| 17 | +DefaultAddress 0.0.0.0 |
| 18 | + |
| 19 | # Port 21 is the standard FTP port. |
| 20 | Port 21 |
| 21 | |