Join the community today
Register Now

New Install: No TLS on Pure-FTPd

Discussion in 'Bug Reports' started by EckyBrazzz, Mar 24, 2019.

Tags:
  1. EckyBrazzz

    EckyBrazzz Active Member

    916
    189
    43
    Mar 28, 2018
    >>>>Click here<<<< i'm nearby......
    Ratings:
    +362
    Local Time:
    1:28 AM
    Latest
    Latest
    Please fill in any relevant information that applies to you:
    • CentOS Version:CentOS 7 64bit ?
    • Centmin Mod Version Installed: 123.09beta01
    • When was last time updated Centmin Mod code base ? :23/03/2019
    As described into the wrong place with a clean install using the betainstaller73.sh there is no TLS support enabled on the ftp server

    Code (Text):
    yum -y update; curl -O https://centminmod.com/betainstaller73.sh && chmod 0700 betainstaller73.sh && bash betainstaller73.sh
    


    See
    https://community.centminmod.com/threads/pure-ftpd-in-tls-mode.16965/#post-71905
    for more details

     
  2. eva2000

    eva2000 Administrator Staff Member

    54,126
    12,179
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,739
    Local Time:
    2:28 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    cheers will check it and and confirm whether or not the issue is widespread
     
  3. eva2000

    eva2000 Administrator Staff Member

    54,126
    12,179
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,739
    Local Time:
    2:28 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    @EckyBrazzz the initial install log also records the centmin mod modified output for pure-ftpd configuration routine, you can check what was recorded in your initial install's pure-ftpd setup routine using this command
    Code (Text):
    egrep -rin 'VerboseLog|PureDB|PassivePortRange|TLS ' /root/centminlogs/ | grep -v '#' | grep minimal.log

    example output
    Code (Text):
    egrep -rin 'VerboseLog|PureDB|PassivePortRange|TLS ' /root/centminlogs/ | grep -v '#' | grep minimal.log
    /root/centminlogs/installer_170119-224222_minimal.log:12080:VerboseLog                  yes
    /root/centminlogs/installer_170119-224222_minimal.log:12082:PureDB                        /etc/pure-ftpd/pureftpd.pdb
    /root/centminlogs/installer_170119-224222_minimal.log:12086:PassivePortRange    30001 50011
    /root/centminlogs/installer_170119-224222_minimal.log:12091:TLS                      2
    /root/centminlogs/installer_170119-224222_minimal.log:12358:TLS SNI support enabled
    
     
  4. eva2000

    eva2000 Administrator Staff Member

    54,126
    12,179
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,739
    Local Time:
    2:28 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    seems latest pure-ftpd update for centos 7 changed pure-ftpd.conf config formatting so broke my sed replacement edits
    Code (Text):
    yum history list pure-ftpd
    Loaded plugins: fastestmirror, priorities, replace, versionlock
    ID     | Command line             | Date and time    | Action(s)      | Altered
    -------------------------------------------------------------------------------
       110 | -y update                | 2019-03-21 14:56 | I, U           |   36 EE
        32 | -q -y install pure-ftpd  | 2019-01-18 04:17 | Install        |    3
    

    Code (Text):
    yum history info 110 | grep pure-ftpd
        Updated pure-ftpd-1.0.42-3.el7.x86_64                 @epel
       1 warning: /etc/pure-ftpd/pure-ftpd.conf created as /etc/pure-ftpd/pure-ftpd.conf.rpmnew
    

    actual updated pure-ftpd config file was dated Feb 13, 2019.
     
  5. eva2000

    eva2000 Administrator Staff Member

    54,126
    12,179
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,739
    Local Time:
    2:28 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+