vsftpd.log内容的意义

vsftpd日志(xferlog格式)的含义
引用:

Thu
Mar 4 08:12:30 2004 1 202.114.40.242 37 /incoming/index.html a _ o a [email protected] ftp 0 * c

Thu Mar 4 08:12:30
2004 current-time  

                 
                 
 transfer-time
202.114.40.242 
              remote-host  
37 
                 
                
byte-count
/incoming/index.html 
       filename

                 
                 
 transfer-type

                 
                 
 special-action-flag

                 
                 
 direction

                 
                 
 access-mode
[email protected]    
             username
ftp 
                 
                
service-name

                 
                 
 authentication-method

                 
                 
 authenticated-user-id  已认证IP

                 
                 
 completion-status  完成状态

current-time 
 The current local time in the form "DDD MMM dd hh:mm:ss
    
           
   YYYY", where DDD is the day of the week, MMM is the
month,
    
               dd is the
day of the month, hh is the hour, mm is the min-
    
               utes, ss
is the seconds, and YYYY is the year.

transfer-time  The
total time of the transfer in seconds.

remote-host 
  The remote host name.

byte-count 
   The amount of transferred bytes.

filename 
          The canonicalized (all symbolic
links are resolved) abso-
    
               lute
pathname of the transferred file.

In case
of the chrooted FTP session this field can be
    
           
   interpreted as the pathname in the chrooted environment
    
               (the
default interpretation) or as the one in the real
    
               file
system. The second type of interpretation can be
    
               enabled
by the command-line options of the ftpd(
smilieid=44 v:shapes="_x0000_i1025">.

transfer-type  The
single character that indicates the type of the trans-
    
               fer. The
set of possible values is:


       An ascii transfer.


       A binary transfer.

special-action-flag
    
               One or
more single character flags indicating any special
    
               action
taken. The set of possible values is:


       No action was taken


       The file was compressed (not in use).


       The file was uncompressed (not in use).


       The file was tar‘ed (not in use).

direction 
          The direction of the transfer. The
set of possible values
    
               is:


       The outgoing transfer.


       The incoming transfer.

access-mode 
  The method by which the user is logged in. The set of pos-
    
               sible
values is:

a
(anonymous)  The anonymous guest user.

g
(guest)           The real but chrooted
user (this capability
    
                 
            is guided by
ftpchroot(5) file).

r
(real)           The real user.

username 
          The user‘s login name in case of
the real user, or the
    
               user‘s
identification string in case of the anonymous user
    
               (by
convention it is an email address of the user).

service-name 
 The name of the service being invoked. The ftpd( utility
    
               uses the
``ftp‘‘ keyword.

authentication-method
    
               The used
method of the authentication. The set of possible
    
               values is:


       None.


       RFC931 Authentication (not in use).

authenticated-user-id
    
               The user
id returned by the authentication method. The `*‘
    
               symbol is
used if an authenticated user id is not avail-
    
               able.

completion-status
    
               The
single character that indicates the status of the
    
               transfer.
The set of possible values is:


       A complete transfer.


       An incomplete transfer.

vsftpd与log有关的选项:
vsftpd_log_file
xferlog_enable
xferlog_std_format
xferlog_file
dual_log_enable
syslog_enable
log_ftp_protocol
no_log_lock

时间: 2024-12-26 20:15:06

vsftpd.log内容的意义的相关文章

Android中使用log4j输出log内容到sd卡

在android中,实现输出log内容到sd卡中的文件里面,做法是: 还是相对来说,log4j,算是好用. 1.下载android的log4j的库(的封装) 去:http://code.google.com/p/android-logging-log4j/ 下载对应的android-logging-log4j-1.0.3.jar,加到项目中. 2.再去下载所依赖的apache的log4j库 去:http://logging.apache.org/log4j/1.2/download.html 下

20190829王老师发的面试题1、有一个日志文件access.log,内容如下

1.有一个日志文件access.log,内容如下 09:28:59 404 2003356554 09:29:00 200 2003232321 09:30:00 300 2003232321 09:36:00 500 2003232321 09:39:00 200 2003232321 09:40:00 400 2003232321 09:47:00 200 2003232321 ... 现在需要统计第二列包含200这个字符的总行数,请写出命令?(只用awk能不能搞定) 最优答案: [[ema

【记录】尝试用android-logging-log4j去实现log输出内容到sd卡中的文件的功能

[背景] 折腾: [记录]给Android中添加log日志输出到文件 期间,已经试了: [记录]尝试用android中microlog4android实现log输出到文件的功能 但是不好用. 然后就是参考: http://stackoverflow.com/questions/2116260/logging-to-a-file-on-android 去看看: http://code.google.com/p/android-logging-log4j/ [[折腾过程] 1.去: https://

ubuntu上架设vsftpd

操作系统:ubuntu (GNU/Linux) 为了在机子上架设ftp服务器,我们需要安装ftp服务器软件.Linux下具有代表性的ftp服务器软件有Wu-FTP,ProFTP和Vsftp.Wu-FTP(Washington University FTP)由美国华盛顿大学开发.它的功能强大,配置较复制.由于开发时间较早,应用十分广泛,也因此成为黑客们主要的攻击目标.ProFTP针对Wu-FTP的弱项而开发,在安全性方面进行了改进,并提供了一些Wu-FTP没有的功能,大大简化了架设和管理FTP服务

Liunx 环境下vsftpd的三种实现方法(超详细参数)

以下文章介绍Liunx 环境下vsftpd的三种实现方法 ftp://vsftpd.beasts.org/users/cevans/vsftpd-2.0.3.tar.gz,目前已经到2.0.3版本.假设我们已经将vsftpd-2.0.3.tar.gz文件下载到服务器的/home/xuchen目录 代码: # cd /home/xuchen # tar xzvf vsftpd-2.0.3.tar.gz //解压缩程序 # cd vsftpd-2.0.3 三.三种方式的实现            

vsftpd.conf 联机手册

vsftpd.conf - vsftpd 的配置文件 描述vsftpd.conf 可以用于控制 vsftpd, 以实现各种各样的功能. vsftpd 缺省到 /etc/vsftpd.conf 处查找此文件. 当然, 您也可以通过命令行参数进行指定. 这个命令行参数就是指 vsftpd 的配置文件. 对于想使用高级 inetd 管理的用户, 例如, xinetd, 则这个功能非常有用. 可以使用不同的配置文件来启动基于虚拟主机的每个服务. 格式vsftpd.conf 的格式非常简单. 每行要么是注

vsftpd最详细的配置文件

vsftpd作为一个主打安全的FTP服务器,有很多的选项设置.下面介绍了vsftpd的配置文件列表,而所有的配置都是基于vsftpd.conf这个配置文件的.本文将提供完整的vsftpd.conf的中文说明.学习本文的内容将有助于你初步了解vsftpd的配置文件,但针对具体情况还需要制定具体的配置方法. vsftpd的配置文件 /etc/vsftpd/vsftpd.conf 主配置文件 /usr/sbin/vsftpd Vsftpd的主程序 /etc/rc.d/init.d/vsftpd 启动脚

启用VSFTPD日志及其解读

启用vsftpd日志及其解读(转贴)在vsftpd.conf中有如下内容定义了日志的记录方式:# 表明FTP服务器记录上传下载的情况xferlog_enable=YES# 表明将记录的上传下载情况写在xferlog_file所指定的文件中, 即xferlog_file选项指定的文件中xferlog_std_format=YESxferlog_file=/var/log/xferlog # 启用双份日志.在用xferlog文件记录服务器上传下载情况的同时,# vsftpd_log_file所指定的

vsftpd配置手册(实用)

作者: 木頭    来源: PHPChina 开源社区门户1.vsftpd配置参数详细整理 #接受匿名用户 anonymous_enable=YES #匿名用户login时不询问口令 no_anon_password=YES #匿名用户主目录 anon_root=(none) #接受本地用户 local_enable=YES #本地用户主目录 local_root=(none) #如果匿名用户需要密码,那么使用banned_email_file里面的电子邮件地址的用户不能登录 deny_emai