亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費注冊 查看新帖 |

Chinaunix

  平臺 論壇 博客 文庫
最近訪問板塊 發(fā)新帖
查看: 5730 | 回復(fù): 2
打印 上一主題 下一主題

vsftp遠(yuǎn)程不能連接的問題 [復(fù)制鏈接]

論壇徽章:
0
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報告]
發(fā)表于 2006-03-28 12:43 |只看該作者 |倒序瀏覽
各位大蝦,請教一個問題:我開了vsftp服務(wù),在本機(jī)上可以用新建的用戶user1登陸,譬如該地址為192.168.2.2,我在shell下ftp 192.168.2.2可以成功,但在局域網(wǎng)其他機(jī)器上就不行,為什么啊?本人新手,望各位不吝賜教。以下是我的配置文件:

    1 # Example config file /etc/vsftpd/vsftpd.conf
      2 #
      3 # The default compiled in settings are fairly paranoid. This sample file
      4 # loosens things up a bit, to make the ftp daemon more usable.
      5 # Please see vsftpd.conf.5 for all compiled in defaults.
      6 #
      7 # READ THIS: This example file is NOT an exhaustive list of vsftpd options.
      8 # Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
      9 # capabilities.
     10 #
     11 # Allow anonymous FTP? (Beware - allowed by default if you comment this out).
     12 #anonymous_enable=YES
     13 anonymous_enable=NO
     14
     15 listen_port=21
     16 #
     17 # Uncomment this to allow local users to log in.
     18 local_enable=YES
     19 #
     20 # Uncomment this to enable any form of FTP write command.
     21 write_enable=YES
     22 #
     23 # Default umask for local users is 077. You may wish to change this to 022,
     24 # if your users expect that (022 is used by most other ftpd's)
     25 local_umask=022
     26 #
     27 # Uncomment this to allow the anonymous FTP user to upload files. This only
     28 # has an effect if the above global write enable is activated. Also, you will
     29 # obviously need to create a directory writable by the FTP user.
     30 #anon_upload_enable=YES
     31 #
     32 # Uncomment this if you want the anonymous FTP user to be able to create
     33 # new directories.
     34 #anon_mkdir_write_enable=YES
     35 #
     36 # Activate directory messages - messages given to remote users when they
     37 # go into a certain directory.
     38 dirmessage_enable=YES
     39 #
     40 # Activate logging of uploads/downloads.
     41 xferlog_enable=YES
     42 #
     43 # Make sure PORT transfer connections originate from port 20 (ftp-data).
     44 connect_from_port_20=YES
     45 #
     46 # If you want, you can arrange for uploaded anonymous files to be owned by
     47 # a different user. Note! Using "root" for uploaded files is not
     48 # recommended!
     49 #chown_uploads=YES
     50 #chown_username=whoever
     51 #
     52 # You may override where the log file goes if you like. The default is shown
     53 # below.
     54 #xferlog_file=/var/log/vsftpd.log
     55 #
     56 # If you want, you can have your log file in standard ftpd xferlog format
     57 xferlog_std_format=YES
     58 #
     59 # You may change the default value for timing out an idle session.
     60 #idle_session_timeout=600
     61 #
     62 # You may change the default value for timing out a data connection.
     63 #data_connection_timeout=120
     64 #
     65 # It is recommended that you define on your system a unique user which the
     66 # ftp server can use as a totally isolated and unprivileged user.
     67 #nopriv_user=ftpsecure
     68 #
     69 # Enable this and the server will recognise asynchronous ABOR requests. Not
     70 # recommended for security (the code is non-trivial). Not enabling it,
     71 # however, may confuse older FTP clients.
     72 #async_abor_enable=YES
     73 #
     74 # By default the server will pretend to allow ASCII mode but in fact ignore
     75 # the request. Turn on the below options to have the server actually do ASCII
     76 # mangling on files when in ASCII mode.
     77 # Beware that turning on ascii_download_enable enables malicious remote parties
     78 # to consume your I/O resources, by issuing the command "SIZE /big/file" in
     79 # ASCII mode.
     80 # These ASCII options are split into upload and download because you may wish
     81 # to enable ASCII uploads (to prevent uploaded scripts etc. from breaking),
     82 # without the DoS risk of SIZE and ASCII downloads. ASCII mangling should be
     83 # on the client anyway..
     84 #ascii_upload_enable=YES
     85 #ascii_download_enable=YES
     86 #
     87 # You may fully customise the login banner string:
     88 #ftpd_banner=Welcome to blah FTP service.
     89 #
     90 # You may specify a file of disallowed anonymous e-mail addresses. Apparently
     91 # useful for combatting certain DoS attacks.
     92 #deny_email_enable=YES
     93 # (default follows)
     94 #banned_email_file=/etc/vsftpd.banned_emails
     95 #
     96 # You may specify an explicit list of local users to chroot() to their home
     97 # directory. If chroot_local_user is YES, then this list becomes a list of
     98 # users to NOT chroot().
     99 #chroot_list_enable=YES
    100 # (default follows)
    101 #chroot_list_file=/etc/vsftpd.chroot_list
    102 #
    103 # You may activate the "-R" option to the builtin ls. This is disabled by
    104 # default to avoid remote users being able to cause excessive I/O on large
    105 # sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
    106 # the presence of the "-R" option, so there is a strong case for enabling it.
    107 #ls_recurse_enable=YES
    108 #userlist_deny=NO
    109 pam_service_name=vsftpd
    110 #userlist_enable=YES
    111 userlist_enable=NO
    112 #enable for standalone mode
    113 listen=YES
    114 tcp_wrappers=YES

論壇徽章:
0
2 [報告]
發(fā)表于 2006-03-28 13:01 |只看該作者
防火墻關(guān)掉。iptables -F 試試先

論壇徽章:
0
3 [報告]
發(fā)表于 2006-03-28 13:06 |只看該作者
謝謝樓上的,解決了,是我windows客戶端的防火墻的問題。
您需要登錄后才可以回帖 登錄 | 注冊

本版積分規(guī)則 發(fā)表回復(fù)

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報專區(qū)
中國互聯(lián)網(wǎng)協(xié)會會員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP