tcl带的lib里面有一个叫做ftpd的库,可以用来做ftp服务器。在mandriva环境下进行实验,首先安装tcl,然后通过urpmi安装tcllib库,之后,引用package require ftpd即可。
下面是测试的例子:
#! /bin/sh
# -*- tcl -*- \
exec tclsh "$0" ${1+"$@"}
# FTP daemon
# This ftpd runs on port 7777, uses /tmp as root dir and does not do
# any authentication at all. IOW, do not run this server for longer
# periods of time or you create a security hole on your machine. This
# server is strictly for short testing the implementation of the ftp
# module over short periods of time.
#package require Tcl 8.3
package require ftpd
package require log
proc bgerror {args} {
global errorInfo
puts stderr "bgerror: [join $args]"
puts stderr $errorInfo
}
proc ftplog {level text} {
if {[string equal $level note]} {set level notice}
log::log $level $text
}
proc noauth {args} {
return 1
}
proc fakefs {cmd path args} {
# Use the standard unix fs, i.e. "::ftpd::fsFile::fs", but rewrite the incoming path
# to stay in the /tmp directory.
set path [file join / tmp [file tail $path]]
eval [linsert $args 0 ::ftpd::fsFile::fs $cmd $path]
}
::ftpd::config -logCmd ftplog -authUsrCmd noauth -authFileCmd noauth -fsCmd fakefs
set ::ftpd::port 7777 ; # Listen on user port
::ftpd::server
vwait forever
|
在客户端可以通过ftp 127.0.0.1 7777来进行测试。
阅读(3359) | 评论(1) | 转发(0) |