Chinaunix首页 | 论坛 | 博客
  • 博客访问: 82251
  • 博文数量: 32
  • 博客积分: 1526
  • 博客等级: 上尉
  • 技术积分: 270
  • 用 户 组: 普通用户
  • 注册时间: 2009-10-28 13:56
文章分类

全部博文(32)

文章存档

2012年(1)

2011年(15)

2010年(1)

2009年(15)

我的朋友
最近访客

分类:

2009-11-02 16:59:39

#!/bin/sh
#==========================================================
#This script is used to login in ftp server automatically
#to check out whether the server is running.
#==========================================================
#Version 1.0\2009-11-02\by zhengyu
#Any question can be email to
#==========================================================
function autoftp.sh()
{
username="shalin"
password="shalin"
Erorrnum=100
if [ "$1" = "" ] ;
then
echo "Please add the ip address of the ftp Server after autoftp.sh"
echo "Example: autoftp.sh 192.168.1.1"
exit $Eroornum
else
echo -e "open $1
user $username $password
binary
dir
bye
"|ftp -n
fi
}
autoftp.sh $1
exit 0
 
 
 
这个脚本可以在备份的时候用,自动把一些文件传送到FTP服务器上;或者可以检测FTP服务器是否正常运行。
当FTP服务没有运行的时候,是不能登录到FTP服务器上的。
 
 
但是,在运行的时候出现如下的信息:
Please login with USER and PASS.
Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
 
Google了一下,也没有很好的解释,如果谁能够解释一下,就最好了。
阅读(837) | 评论(2) | 转发(0) |
0

上一篇:自动备份文件

下一篇:shell中的进度条

给主人留下些什么吧!~~

chinaunix网友2010-09-15 16:37:32

知你用的是不是lftp,lftp能自动实现匿名登陆 digwtx评论于:2009-11-24 13:10:41 (221.7.207

chinaunix网友2009-11-24 13:10:41

不知你用的是不是lftp,lftp能自动实现匿名登陆