如果我查看Apache的FTP访问日志,我如何知道上传或下载了哪些文件?
例如:这里有两条典型的行:
Mon May 18 10:09:57 2015 1 166.166.30.166 168166 /home/user/public_html/files/screenshot-2.png b _ o r user ftp 1 * c
Mon May 18 10:09:59 2015 0 166.166.30.166 45 /home/user/public_html/files/sitemap.php a _ o r user ftp 1 * c
答案 0 :(得分:0)
这看起来像xferlog(5)格式。要确定文件是上传还是下载,您需要查看direction
字段,其中包含值“i”(传入,表示已上传)或“o”(传出,意思已下载)。