1

Тема: FreeBSD и Pure-ftpd

Всем доброго времени суток.
такая проблема... поставил pure-ftpd более менее конфиг поправил. запустил сервер и получил:
рабочий сервер к которому можно подконнектится только через Total Commander или Far.
Подскажите что нужно сделать чтоб к нему можно было достучаться через браузер?

P.S. когда коннектишься через ишака говорит что только анонимный сервер. и не выдает окошка приглашения ввода пароля.
Opera выводит приглашение но коннекта нет.
сервер не анонимный

2

Re: FreeBSD и Pure-ftpd

А лог что говорит?
Ишак, простити, это кто?

3

Re: FreeBSD и Pure-ftpd

Ишак это Internet Explorer
а логи не ведутся sad
но при подключении через IE выползает оконце:
Unable to set up secure ananymous FTP
Фря:
то же самое

4

Re: FreeBSD и Pure-ftpd

Я наверно плохо знаю англиский... Ишак, он же осёл - это donkey, а explorer - это проводник... Ну это так, лирической отчтупление...

Nird пишет:

а логи не ведутся sad

Ну так заведите...

tail -30 /var/log/xferlog
что показывает?

Добавлено спустя     3 минуты   12 секунд:
Такое окошко?
https://img356.imageshack.us/img356/7742/clipboard01hc9.th.jpg

5

Re: FreeBSD и Pure-ftpd

не такое.
в окошке пишится приглашение ftp сервера а затем строчка:

Nird пишет:

Unable to set up secure ananymous FTP

(
и в файле пишется такая же строчка только с датой, временем, и пользователем

Отредактировано Nird (06-06-2008 15:43:36)

6

Re: FreeBSD и Pure-ftpd

Нужно включить в фаерволе выход на пассивные порты.

Добавлено спустя       45 секунд:
К примеру такое правило

allow tcp from any 49152-65534 to any keep-state

7

Re: FreeBSD и Pure-ftpd

Я файервол вообще отключил... на время и ничего не получается sad

8

Re: FreeBSD и Pure-ftpd

Конфигурационный файл покажи... или так и будим в угадайку играть?

9

Re: FreeBSD и Pure-ftpd

############################################################
#                                                          #
#         Configuration file for pure-ftpd wrappers        #
#                                                          #
############################################################
# If you want to run Pure-FTPd with this configuration   
# instead of command-line options, please run the
# following command :
#
# /usr/local/sbin/pure-config.pl /usr/local/etc/pure-ftpd.conf
#
# Please don't forget to have a look at documentation at
# http://www.pureftpd.org/documentation.shtml for a complete list of
# options.
# Cage in every user in his home directory
ChrootEveryone              yes
# If the previous option is set to "no", members of the following group
# won't be caged. Others will be. If you don't want chroot()ing anyone,
# just comment out ChrootEveryone and TrustedGID.
# TrustedGID                    100
# Turn on compatibility hacks for broken clients
BrokenClientsCompatibility  yes
# Maximum number of simultaneous users
MaxClientsNumber            50
# Fork in background
Daemonize                   yes
# Maximum number of sim clients with the same IP address
MaxClientsPerIP             8
# If you want to log all client commands, set this to "yes".
# This directive can be duplicated to also log server responses.
VerboseLog                  no
# List dot-files even when the client doesn't send "-a".
DisplayDotFiles             yes
# Don't allow authenticated users - have a public anonymous FTP only.
AnonymousOnly               no
# Disallow anonymous connections. Only allow authenticated users.
NoAnonymous                 yes
# Syslog facility (auth, authpriv, daemon, ftp, security, user, local*)
# The default facility is "ftp". "none" disables logging.
SyslogFacility              ftp
# Display fortune cookies
# FortunesFile              /usr/share/fortune/zippy
# Don't resolve host names in log files. Logs are less verbose, but 
# it uses less bandwidth. Set this to "yes" on very busy servers or
# if you don't have a working DNS.
DontResolve                 yes
# Maximum idle time in minutes (default = 15 minutes)
MaxIdleTime                 15
# LDAP configuration file (see README.LDAP)
# LDAPConfigFile                /etc/pureftpd-ldap.conf
# MySQL configuration file (see README.MySQL)
# MySQLConfigFile               /etc/pureftpd-mysql.conf
# Postgres configuration file (see README.PGSQL)
# PGSQLConfigFile               /etc/pureftpd-pgsql.conf
# PureDB user database (see README.Virtual-Users)
# PureDB                        /etc/pureftpd.pdb
# Path to pure-authd socket (see README.Authentication-Modules)
# ExtAuth                       /var/run/ftpd.sock
# If you want to enable PAM authentication, uncomment the following line
# PAMAuthentication             yes
# If you want simple Unix (/etc/passwd) authentication, uncomment this
UnixAuthentication            yes
# Please note that LDAPConfigFile, MySQLConfigFile, PAMAuthentication and
# UnixAuthentication can be used only once, but they can be combined
# together. For instance, if you use MySQLConfigFile, then UnixAuthentication,
# the SQL server will be asked. If the SQL authentication fails because the
# user wasn't found, another try # will be done with /etc/passwd and
# /etc/shadow. If the SQL authentication fails because the password was wrong,
# the authentication chain stops here. Authentication methods are chained in
# the order they are given. 
# 'ls' recursion limits. The first argument is the maximum number of
# files to be displayed. The second one is the max subdirectories depth
LimitRecursion              2000 20
# Are anonymous users allowed to create new directories ?
AnonymousCanCreateDirs      no
# If the system is more loaded than the following value,
# anonymous users aren't allowed to download.
MaxLoad                     4
# Port range for passive connections replies. - for firewalling.
# PassivePortRange          30000 50000
# Force an IP address in PASV/EPSV/SPSV replies. - for NAT.
# Symbolic host names are also accepted for gateways with dynamic IP
# addresses.
# ForcePassiveIP                192.168.0.1
# Upload/download ratio for anonymous users.
# AnonymousRatio                1 10
# Upload/download ratio for all users.
# This directive superscedes the previous one.
# UserRatio                 1 10
# Disallow downloading of files owned by "ftp", ie.
# files that were uploaded but not validated by a local admin.
AntiWarez                   no
# IP address/port to listen to (default=all IP and port 21).
# Bind                      127.0.0.1,21
# Maximum bandwidth for anonymous users in KB/s
# AnonymousBandwidth            8
# Maximum bandwidth for *all* users (including anonymous) in KB/s
# Use AnonymousBandwidth *or* UserBandwidth, both makes no sense.
# UserBandwidth             8
# File creation mask. <umask for files>:<umask for dirs> .
# 177:077 if you feel paranoid.
Umask                       133:022
# Minimum UID for an authenticated user to log in.
MinUID                      1000
# Allow FXP transfers for authenticated users.
AllowUserFXP                no
# Allow anonymous FXP for anonymous and non-anonymous users.
AllowAnonymousFXP           no
# Users can't delete/write files beginning with a dot ('.')
# even if they own them. If TrustedGID is enabled, this group
# will have access to dot-files, though.
ProhibitDotFilesWrite       no
# Prohibit *reading* of files beginning with a dot (.history, .ssh...)
ProhibitDotFilesRead        no
# Never overwrite files. When a file whoose name already exist is uploaded,
# it get automatically renamed to file.1, file.2, file.3, ...
AutoRename                  no
# Disallow anonymous users to upload new files (no = upload is allowed)
AnonymousCantUpload         no
# Only connections to this specific IP address are allowed to be
# non-anonymous. You can use this directive to open several public IPs for
# anonymous FTP, and keep a private firewalled IP for remote administration.
# You can also only allow a non-routable local IP (like 10.x.x.x) to
# authenticate, and keep a public anon-only FTP server on another IP.
#TrustedIP                  10.1.1.1
# If you want to add the PID to every logged line, uncomment the following
# line.
#LogPID                     yes
# Create an additional log file with transfers logged in a Apache-like format :
# fw.c9x.org - jedi [13/Dec/1975:19:36:39] "GET /ftp/linux.tar.bz2" 200 21809338
# This log file can then be processed by www traffic analyzers.
# AltLog                     clf:/var/log/pureftpd.log
# Create an additional log file with transfers logged in a format optimized
# for statistic reports.
# AltLog                     stats:/var/log/pureftpd.log
# Create an additional log file with transfers logged in the standard W3C
# format (compatible with most commercial log analyzers)
# AltLog                     w3c:/var/log/pureftpd.log
# Disallow the CHMOD command. Users can't change perms of their files.
#NoChmod                     yes
# Allow users to resume and upload files, but *NOT* to delete them.
#KeepAllFiles                yes
# Automatically create home directories if they are missing
#CreateHomeDir               yes
# Enable virtual quotas. The first number is the max number of files.
# The second number is the max size of megabytes.
# So 1000:10 limits every user to 1000 files and 10 Mb.
#Quota                       1000:10
# If your pure-ftpd has been compiled with standalone support, you can change
# the location of the pid file. The default is /var/run/pure-ftpd.pid
#PIDFile                     /var/run/pure-ftpd.pid
# If your pure-ftpd has been compiled with pure-uploadscript support,
# this will make pure-ftpd write info about new uploads to
# /var/run/pure-ftpd.upload.pipe so pure-uploadscript can read it and
# spawn a script to handle the upload.
#CallUploadScript yes
# This option is useful with servers where anonymous upload is 
# allowed. As /var/ftp is in /var, it save some space and protect 
# the log files. When the partition is more that X percent full,
# new uploads are disallowed.
MaxDiskUsage               99
# Set to 'yes' if you don't want your users to rename files.
#NoRename                  yes
# Be 'customer proof' : workaround against common customer mistakes like
# 'chmod 0 public_html', that are valid, but that could cause ignorant
# customers to lock their files, and then keep your technical support busy
# with silly issues. If you're sure all your users have some basic Unix
# knowledge, this feature is useless. If you're a hosting service, enable it.
CustomerProof              yes
# Per-user concurrency limits. It will only work if the FTP server has
# been compiled with --with-peruserlimits (and this is the case on
# most binary distributions) .
# The format is : <max sessions per user>:<max anonymous sessions>
# For instance, 3:20 means that the same authenticated user can have 3 active
# sessions max. And there are 20 anonymous sessions max.
# PerUserLimits            3:20
# When a file is uploaded and there is already a previous version of the file
# with the same name, the old file will neither get removed nor truncated.
# Upload will take place in a temporary file and once the upload is complete,
# the switch to the new version will be atomic. For instance, when a large PHP
# script is being uploaded, the web server will still serve the old version and
# immediatly switch to the new one as soon as the full file will have been
# transfered. This option is incompatible with virtual quotas.
# NoTruncate               yes
# This option can accept three values :
# 0 : disable SSL/TLS encryption layer (default).
# 1 : accept both traditional and encrypted sessions.
# 2 : refuse connections that don't use SSL/TLS security mechanisms,
#     including anonymous sessions.
# Do _not_ uncomment this blindly. Be sure that :
# 1) Your server has been compiled with SSL/TLS support (--with-tls),
# 2) A valid certificate is in place,
# 3) Only compatible clients will log in.
# TLS                      1
# Listen only to IPv4 addresses in standalone mode (ie. disable IPv6)
# By default, both IPv4 and IPv6 are enabled.
# IPV4Only                 yes
# Listen only to IPv6 addresses in standalone mode (ie. disable IPv4)
# By default, both IPv4 and IPv6 are enabled.
# IPV6Only                 yes
# UTF-8 support for file names (RFC 2640)
# Define charset of the server filesystem and optionnally the default charset
# for remote clients if they don't use UTF-8.
# Works only if pure-ftpd has been compiled with --with-rfc2640
# FileSystemCharset    big5
# ClientCharset        big5

10

Re: FreeBSD и Pure-ftpd

# Port range for passive connections replies. - for firewalling.
PassivePortRange          30000 50000

вот раскоментируй так эту строку. Перезапусти и проверь снова.

11

Re: FreeBSD и Pure-ftpd

По стандарту помойму диапазона два, это 1025-49151 и 49152-65535

Добавлено спустя     5 минут   13 секунд:
так же посмотри этот параметр ForcePassiveIP, если ип неправильно меняется, с внутреннего на внешний или обратно то можно его принудительно оставить какимто определенным.

вообше для проверки надо использовать командную строку:
в винде например cmd и потом
ftp 111.111.111.111
после ввода логин/пароль делаеш команду ls перед появлением списка каталогов должно быть чтото типо

ftp> ls
200 PORT command successful
150 Connecting to port 56222

это значит что меня переблосило на 56222 порт, если поменялся ип то тут и ип будет написан на который меня перебросило.

12

Re: FreeBSD и Pure-ftpd

ничего не помогает, нет окна приглашения...

Добавлено спустя     1 минуту   39 секунд:
через браузе коннектится только если в строке адреса ввести пароль и имя пользователя...
а мне оч. нужно чтоб было окно приглашения...

Добавлено спустя     19 минут   36 секунд:
нашел пару файлов в директории где установлен сервер:
\src\*pure-authd и *pure-authd.c
может с их помощью можно как то добиться окна приглашения?

13

Re: FreeBSD и Pure-ftpd

Хмм, пару фалов где установлен сервер в директории \src\ ???

А каким раком вообще Pure-ftpd устанавливали? Опишите весь процесс установки. И судя по тому что слэш \ а не / то установили вы его на виндоус smile

Добавлено спустя     6 минут   57 секунд:
в виндовской cmd наберите
ftp 111.111.111.111

и всесь вывод сюда, если предлагает чтото ввести вводите и весь вывод тоже сюда,

также весь лог сюда...

Вот к примеру мой

Jun 20 11:47:06 cmm pure-ftpd: ([email protected]) [INFO] New connection from 10.0.1.202
Jun 20 11:47:06 cmm pure-ftpd: ([email protected]) [WARNING] Authentication failed for user [art]
Jun 20 11:47:10 cmm pure-ftpd: ([email protected]) [INFO] Logout.

14

Re: FreeBSD и Pure-ftpd

Nird пишет:

в окошке пишится приглашение ftp сервера а затем строчка:

Nird пишет:

Unable to set up secure ananymous FTP

(
и в файле пишется такая же строчка только с датой, временем, и пользователем

вот и все что он выдает... если через cmd коннектится как регистрированный пользователь то все ок.

Добавлено спустя     27 минут   57 секунд:

# Path to pure-authd socket (see README.Authentication-Modules)
# ExtAuth                       /var/run/ftpd.sock

вот это что такое? может мне кто пояснить может в этом вся проблема?

Добавлено спустя   4 часа   7 минут   15 секунд:
может еще попробывать через ldap файл правдя как с ним работать я тоже не представляю...

15

Re: FreeBSD и Pure-ftpd

Я обычно четез MySQL делаю...

Еще раз, какая задача? чтобы пускала с паролем в хоум директории и без в общую для гостеей?

Добавлено спустя       48 секунд:
Как ставили Pure-ftpd ???

16

Re: FreeBSD и Pure-ftpd

ftp ставил так:

./configure --with-everything
make
make install

вход на сервер через клиента (к примеру total comander FAR или через коммандную строку) не создает затруднений. Клиент выдает окно приглашения для ввода логина и пароля и пускает на сервер с правами пользователя которого ввели. Т.е. если я захожу под root'ом то у меня полный доступ ко всем файлам системы, если под пользователям то доступ только к домашней директории в которой как раз то что нужно (pub incoming к примеру).

если же подключаться к серверу через броузер то видим следующую картину:
при подключении по ip адресу без ввода в строке адреса логина и пароля IE показывает сообщение в котором написано приглашение сервера и ошибка типа: 421 [ERROR] Enable to set up secure anonymous FTP
при подключении через Oper'у пишет что сервер не доступен.

если подключатся по DNS имени (без ввода логина и пароля в строке адреса) то IE выдает то же самое а Opera выдает окно приглашения, но при вводе логина и пароля она снова выдает окно приглашения.

так вот задача какова. Нужно сделать так что бы при подключении через броузер он выдавал окно приглашения. и коннектился под системными логинами. т.е. если логин root то и права соответственно его и доступ ко всем файлам системы.

сервер запускается так:

#pure-ftpd -4 -A -B -M -I unix -U 022:022

17

Re: FreeBSD и Pure-ftpd

хмм, очень интересно, а чем порты не устраивают? Бывает что в портах есть очень полезные патчи...

Вечером попробую настроить так, я обычно не извращаюсь таким оброзом, пускать рута по фтп еще и в корень сервера... это круто, будь я вашим начальником - руки бы пообрывал smile

виртуальных пользователей удобнее использовать.

18

Re: FreeBSD и Pure-ftpd

а если попробовать отключить TLS.

19

Re: FreeBSD и Pure-ftpd

SatanaClause пишет:

хмм, очень интересно, а чем порты не устраивают? Бывает что в портах есть очень полезные патчи...

Вечером попробую настроить так, я обычно не извращаюсь таким оброзом, пускать рута по фтп еще и в корень сервера... это круто, будь я вашим начальником - руки бы пообрывал smile

виртуальных пользователей удобнее использовать.

дело даже не в том чтоб рута пустить в корень сервера... можно и вирт. пользователей создать (правда не знаю как) основная же цель эт окно приглашения при подключении через броузер...

crash пишет:

а если попробовать отключить TLS.

а эт кто такие? smile попробывать можно, как?

20

Re: FreeBSD и Pure-ftpd

Nird пишет:

# This option can accept three values :
# 0 : disable SSL/TLS encryption layer (default).
# 1 : accept both traditional and encrypted sessions.
# 2 : refuse connections that don't use SSL/TLS security mechanisms,
#     including anonymous sessions.
# Do _not_ uncomment this blindly. Be sure that :
# 1) Your server has been compiled with SSL/TLS support (--with-tls),
# 2) A valid certificate is in place,
# 3) Only compatible clients will log in.

# TLS                      1

написано что по умолчанию отключено, но может есть смысл расскоментировать и установить в 0

21

Re: FreeBSD и Pure-ftpd

crash пишет:

написано что по умолчанию отключено, но может есть смысл расскоментировать и установить в 0

не помогло....

22

Re: FreeBSD и Pure-ftpd

Nird пишет:

# Minimum UID for an authenticated user to log in.

MinUID                      1000

может с этим тоже поиграться. Смотря какой у вас там userid идет. А так надо попробовать поставить и попробовать разобраться, я пользуюсь proftpd.

23

Re: FreeBSD и Pure-ftpd

Я прочитал много документации на эту тему и пришел к выводу что тут просто нет этой возможности, я знаю что в ProFtpd всплывающее окошко появляется только при сборке с определенным ключём (специально преднозначеным для IE и других браузеров).

Что я сделал, собрал из портов, make install clean
конфига даже не правил
добавил только в rc.conf строку, позволяющую запускать демона
создал пользователя ftp (uid:1111 gid:14, группа 14 есть по умолчанию) и сделал его домашнюю директорию /tmp/ftp (644 root:wheel) и все.
/usr/local/etc/rc.d/pure-ftpd start
все

Суть в том, что при открытии фтп из браузера, автоматически подставляется пользователь anonymous или ftp. Именно по этому я дал ftp пользователю пустую директоию с правами рута, она открывается но напакастить в ней немогут (по умолчанию прользователь не может поднятся выше своей домашний директории). Чтобы залогинится как другой пользователь надо изначально ввести логин или пасс, или в експлораре выбрать (опционально view->open ftp site in windows explorer) а потом file->login as

Добавлено спустя     8 минут   31 секунду:
P.S.

1. В BSD надо собирать все из портов!!! Этим BSD и отличается от линукса, ненадо пихать в систему все что пихается.
2. Для создания виртуальных пользователей можно использовать базу pureftpd или mysq, ldap, pgsql... Принцип настройки тодже простой, в конфиги выбираем что хотим использовать, напрмиер, mysql. берем конфиг для работы с mysql'ом и настраиваем его, посути там и настраивать то нечего, смотрим в нем название полей и создает таблицу, вписываем туда пользователей (тут можно использовать виртуальных пользователей) и вписываем в конфиг пароль и адрес базы, все.

Добавлено спустя   4 часа   9 минут   13 секунд:
Случайно нарвался, если вбивать ftp://user@localhost/ то вываливается окно приглашения, так как пользователь уже не стандартный