首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >如何减少unix telnet连接时的超时

如何减少unix telnet连接时的超时
EN

Stack Overflow用户
提问于 2009-07-14 20:59:19
回答 4查看 62.5K关注 0票数 22

我有一个unix shell脚本,它测试文件中列出的多个主机的ftp端口。

代码语言:javascript
复制
for i in `cat ftp-hosts.txt`
        do
        echo "QUIT" | telnet $i 21
done

一般来说,这个脚本是有效的,但是,如果我遇到一个主机没有连接,即telnet正在“尝试...”,我如何减少这个等待时间,以便它可以测试下一个主机?

EN

回答 4

Stack Overflow用户

回答已采纳

发布于 2009-07-14 21:05:05

您是否尝试过使用netcat (nc)而不是telnet?它具有更大的灵活性,包括能够设置超时:

代码语言:javascript
复制
echo 'QUIT' | nc -w SECONDS YOUR_HOST PORT
# e.g.
echo "QUIT" | nc -w 5       localhost 21

-w 5选项将在5秒后使连接超时。

票数 35
EN

Stack Overflow用户

发布于 2014-01-17 23:33:28

尝试使用timeout3脚本是非常健壮的,我在不同的情况下使用了很多,没有问题。该示例仅等待3秒,尝试检查ssh端口是否打开。

代码语言:javascript
复制
> echo QUIT > quit.txt
> ./timeout3 -t 3 telnet HOST 22 < quit.txt 

输出:您可以使用grep表示“已连接”或“已终止”

timeout3文件内容:

代码语言:javascript
复制
#!/bin/bash
#
# The Bash shell script executes a command with a time-out.
# Upon time-out expiration SIGTERM (15) is sent to the process. If the signal
# is blocked, then the subsequent SIGKILL (9) terminates it.
#
# Based on the Bash documentation example.
# If you find it suitable, feel free to include
# anywhere: the very same logic as in the original examples/scripts, a
# little more transparent implementation to my taste.
#
# Dmitry V Golovashkin <Dmitry.Golovashkin@sas.com>

scriptName="${0##*/}"
declare -i DEFAULT_TIMEOUT=9
declare -i DEFAULT_INTERVAL=1
declare -i DEFAULT_DELAY=1
# Timeout.
declare -i timeout=DEFAULT_TIMEOUT

# Interval between checks if the process is still alive.
declare -i interval=DEFAULT_INTERVAL

# Delay between posting the SIGTERM signal and destroying the process by SIGKILL.
declare -i delay=DEFAULT_DELAY

function printUsage() {
    cat <<EOF

Synopsis
    $scriptName [-t timeout] [-i interval] [-d delay] command
    Execute a command with a time-out.
    Upon time-out expiration SIGTERM (15) is sent to the process. If SIGTERM
    signal is blocked, then the subsequent SIGKILL (9) terminates it.

    -t timeout
        Number of seconds to wait for command completion.
        Default value: $DEFAULT_TIMEOUT seconds.

    -i interval
        Interval between checks if the process is still alive.
        Positive integer, default value: $DEFAULT_INTERVAL seconds.

    -d delay
        Delay between posting the SIGTERM signal and destroying the
        process by SIGKILL. Default value: $DEFAULT_DELAY seconds.

As of today, Bash does not support floating point arithmetic (sleep does),
therefore all delay/time values must be integers.
EOF
}

# Options.
while getopts ":t:i:d:" option; do  
    case "$option" in
        t) timeout=$OPTARG ;;
        i) interval=$OPTARG ;;
        d) delay=$OPTARG ;;
        *) printUsage; exit 1 ;;
    esac
done
shift $((OPTIND - 1))

# $# should be at least 1 (the command to execute), however it may be strictly
# greater than 1 if the command itself has options.

if (($# == 0 || interval <= 0)); then 
    printUsage
    exit 1
fi

# kill -0 pid   Exit code indicates if a signal may be sent to $pid process.
(
    ((t = timeout))

    while ((t > 0)); do
        sleep $interval
        kill -0 $$ || exit 0
        ((t -= interval))
    done
    # Be nice, post SIGTERM first.
    # The 'exit 0' below will be executed if any preceeding command fails.
    kill -s SIGTERM $$ && kill -0 $$ || exit 0
    sleep $delay
    kill -s SIGKILL $$
) 2> /dev/null &

exec "$@"
票数 3
EN

Stack Overflow用户

发布于 2009-07-14 21:19:50

使用start a process休眠并终止telnet进程。大致如下:

代码语言:javascript
复制
echo QUIT >quit.txt
telnet $i 21 < quit.txt &
sleep 10 && kill -9 %1 &
ex=wait %1
kill %2
# Now check $ex for exit status of telnet.  Note: 127 inidicates success as the
# telnet process completed before we got to the wait.

当涉及到第一个作业的退出代码时,我避免了echo QUIT | telnet管道,以便不会有任何歧义。

此代码尚未经过测试。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/1128011

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档