Перейти до

zerofx

Маглы
  • Всього повідомлень

    7
  • Приєднався

  • Останній візит

zerofx's Achievements

Пролетал Мимо

Пролетал Мимо (1/9)

0

Репутація

  1. Mess - дякую! Я не розумію чому Ви всі так думаєте? У мене є лише одна проблема - це матеріал з яким працювати, а саме кабеля. З оптикою досиь добре знйомий - колись працював на IPS - там працював техніком по монтажу та прокладці мереж, а пізніше адміністрував на томуж IPS (FreeBSD, Linux, Win2003) - тобто в теоритичній частині - настройка, проектування, контроль мережі - я досить обізнаний... Проблема у тому що мене лякають ціни на виту пару.. Ось я і питаю де можна дістати дешевшу? А Ви тут філософствуєте - а я чекав від Вас шановні хорошої поради....
  2. Привіт всім! Хочу створити в місті нормальну локальну мережу! Та не знаю деяких аспектів, а саме - підскажіть яким типом витої пари ліпше тягнути магістральну лінію, саме магістральну - звичайним чи FTP (під назвою - мігістральний я маю на увазі той кабель який буде зєднувати свічі а уже з самих свічів піде розводку дешевим кабелем...)? І чи не могли б Ви дати адреси підприємст які займаються продажем кабелю, а ще якщо можно то тих у кого ціни з дешевших... Приблизно треба буде десь від 3 - до 5 км. До речі може хтось стикався з такою річчю як "Удальноє питаниє для свичей и комутаторов".... Може є хтось з ким я можу поговорити на цю тему?
  3. zerofx

    Help с настройкой Proftpd

    ПАСИБО!!! ПОМОГЛА!!! А теперь подскажи как сделать чтоби при в ходе на сервер не запрашивало ни логонина - anonymous ни окна - ведите пароль... Просто мне не тяжело вводить анонимус - а вот другим будет тяжеловато....
  4. zerofx

    Help с настройкой Proftpd

    Покажи пожалоста.... Как ето всьо организовать? Если тебе не трудно - хотяби маленький пример..... =:-/
  5. zerofx

    Help с настройкой Proftpd

    ЗАРАБОТАЛО!!!! ТЕНКС!!! Только вот у меня ещо 2-ва малих вопроса.... 1)Папки уже вижу, захожу... Но почемуто никак не могу записать файли в ети папки... Подскажите как... Ато когда хочу создать папку или скопировать файл то постоянно вибиваєт такую ошибку В ходе копирования на FTP сервер произошла ошибкаю Убедитесь что у вас есть разрешение помещать файли на етот сервер Подробности: 200 Type set to I 227 Entering Passive Mode (192,168,109,60,210,68) 550 123.txt:No such file or directory 2)Как увеличить закачку и загрузку ??? Чото очень долго он думаєт... Вот новий конфиг... # This is a basic ProFTPD configuration file (rename it to # 'proftpd.conf' for actual use. It establishes a single server # and a single anonymous login. It assumes that you have a user/group # "nobody" and "ftp" for normal operation and anon. ServerName "ProFTPD Default Installation" ServerType standalone DefaultServer on # Port 21 is the standard FTP port. Port 21 # Umask 022 is a good standard umask to prevent new dirs and files # from being group and world writable. Umask 022 # To prevent DoS attacks, set the maximum number of child processes # to 30. If you need to allow more than 30 concurrent connections # at once, simply increase this value. Note that this ONLY works # in standalone mode, in inetd mode you should use an inetd server # that allows you to limit maximum number of processes per service # (such as xinetd). MaxInstances 30 # Set the user and group under which the server will run. User nobody Group nogroup # To cause every FTP user to be "jailed" (chrooted) into their home # directory, uncomment this line. #DefaultRoot ~ # Normally, we want files to be overwriteable. AllowOverwrite on # Bar use of SITE CHMOD by default <Limit SITE_CHMOD> DenyAll </Limit> # A basic anonymous configuration, no upload directories. If you do not # want anonymous users, simply delete this entire <Anonymous> section. <Anonymous /home/ftp> User ftp Group operator # We want clients to be able to login with "anonymous" as well as "ftp" UserAlias anonymous ftp RequireValidShell no # Limit the maximum number of anonymous logins MaxClients 10 # We want 'welcome.msg' displayed at login, and '.message' displayed # in each newly chdired directory. DisplayLogin welcome.msg DisplayFirstChdir .message <Directory /> AllowOverwrite on </Directory> # Limit WRITE everywhere in the anonymous chroot <Limit CWD DIRS READ> AllowAll </Limit> <Limit WRITE> AllowAll </Limit> <Directory /home/ftp/incoming/*> #Папка Upload и права на нее <Limit READ GET STOR CWD MKD RMD> AllowAll </Limit> <Limit READ> AllowAll </Limit> <Limit WRITE> AllowAll </Limit> </Directory> <Directory /home/ftp/upload/*> #Папка Upload и права на нее <Limit READ GET STOR CWD MKD RMD> AllowAll </Limit> <Limit READ> AllowAll </Limit> <Limit WRITE> AllowAll </Limit> </Directory> </Anonymous>
  6. zerofx

    Help с настройкой Proftpd

    Вот смотри - только пользователей з фтп юзер я удалил... Вот сам конфиг.. в ньом я моло что менял... Одним словом конект эсть но вибиваэт что нет доступа... # This is a basic ProFTPD configuration file (rename it to # 'proftpd.conf' for actual use. It establishes a single server # and a single anonymous login. It assumes that you have a user/group # "nobody" and "ftp" for normal operation and anon. ServerName "ProFTPD Default Installation" ServerType standalone DefaultServer on # Port 21 is the standard FTP port. Port 21 # Umask 022 is a good standard umask to prevent new dirs and files # from being group and world writable. Umask 022 # To prevent DoS attacks, set the maximum number of child processes # to 30. If you need to allow more than 30 concurrent connections # at once, simply increase this value. Note that this ONLY works # in standalone mode, in inetd mode you should use an inetd server # that allows you to limit maximum number of processes per service # (such as xinetd). MaxInstances 30 # Set the user and group under which the server will run. User nobody Group nogroup # To cause every FTP user to be "jailed" (chrooted) into their home # directory, uncomment this line. #DefaultRoot /var/ftp # Normally, we want files to be overwriteable. AllowOverwrite on # Bar use of SITE CHMOD by default <Limit SITE_CHMOD> DenyAll </Limit> # A basic anonymous configuration, no upload directories. If you do not # want anonymous users, simply delete this entire <Anonymous> section. <Anonymous ~> User ftp Group ftp # We want clients to be able to login with "anonymous" as well as "ftp" UserAlias anonymous ftp AllowOverwrite on AnonRequirePassword off RequireValidShell off # Limit the maximum number of anonymous logins MaxClients 10 # We want 'welcome.msg' displayed at login, and '.message' displayed # in each newly chdired directory. DisplayLogin welcome.msg DisplayFirstChdir .message # Limit WRITE everywhere in the anonymous chroot <Limit WRITE> Allow from 192.168.109. DenyAll </Limit> </Anonymous>
  7. =:-/ ПРивет всем !! У меня такая проблема - надо срочно помоч в настройке ФТП под фряху 5.3 Сама проблема в том что никак не могу зделать чтоби анонимуси заходили без аунтификации, и без пароля... Да вроде легко но никак не могу добитса етово... Помогите плиз!!!! Кто уже настраэвал етот сервис.... Все остальниэ юзери коториэ эсть в системе РУЛЯТ нормально!!!
×
×
  • Створити нове...