From f3d8a923cbf42966e4de11d0978f2c9518b90cb3 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Tue, 16 Nov 2010 15:56:24 -0800 Subject: Add ability to configure telnet listen-addres Bug 4452 Allow configuring a telnet listen-address either IPv4 or IPv6 (like SSH). Unlike SSH, telnet only supports a single listen-address --- scripts/telnetd.init | 41 ++++++++++++++++++++++++++++++----------- 1 file changed, 30 insertions(+), 11 deletions(-) (limited to 'scripts/telnetd.init') diff --git a/scripts/telnetd.init b/scripts/telnetd.init index 81dc2f76..04f65147 100755 --- a/scripts/telnetd.init +++ b/scripts/telnetd.init @@ -13,6 +13,7 @@ declare progname=${0##*/} declare action=$1; shift port=$1; shift +addr=$1; shift : ${port:=23} : ${bb:=/bin/busybox} @@ -31,12 +32,21 @@ running_pid () false } +start_telnetd () +{ + if [ -n "$addr" ] + then $bb telnetd -p $port -b $addr + else $bb telnetd -p $port + fi +} + + start () { local -i pid=$( running_pid ) [ $pid -ne 0 ] && return - $bb telnetd -p $port + start_telnetd } stop () @@ -45,23 +55,32 @@ stop () [ $pid -ne 0 ] && kill $pid } +restart() +{ + local -i pid=$( running_pid ) + if [ $pid -ne 0 ] + then kill $pid + sleep 1 + fi + start_telnetd +} + status () { - pidof $bb | while read pid ; do - f=$(tr '\000' '\t' < /proc/$pid/cmdline | cut -f2) - if [ $f == telnetd ] ; then - echo running - return - fi - done - echo not running - false + local -i pid=$( running_pid ) + if [ $pid -ne 0 ] + then echo running + return + else + echo not running + false + fi } case "$action" in start) start;; stop) stop;; - restart) stop; sleep 1; start;; + restart) restart;; status) status;; *) echo "Usage: $progname {start|stop|restart|status}" exit 1 -- cgit v1.2.3