Windows上的Telnet相关程序

Windows上的Telnet相关程序有以下3个,位于C:\WINDOWS\system32:
1)telnet.exe
客户端程序。

2)tlntsvr.exe
服务器程序,运行它启动一个telnet服务器.

3)tlntadmn.exe
telnet服务器管理程序. 例如把telnet端口从默认的23改成9000:tlntadmn config port=9000。

C:\>tlntadmn /?
Usage: tlntadmn [computer name] [common_options] start | stop | pause | continue
| -s | -k | -m | config config_options
Use 'all' for all sessions.
-s sessionid List information about the session.
-k sessionid Terminate a session.
-m sessionid Send message to a session.

config Configure telnet server parameters.

common_options are:
-u user Identity of the user whose credentials are to be used

-p password Password of the user

config_options are:
dom = domain Set the default domain for user names
ctrlakeymap = yes|no Set the mapping of the ALT key
timeout = hh:mm:ss Set the Idle Session Timeout
timeoutactive = yes|no Enable idle session timeout.
maxfail = attempts Set the maximum number of login failure attempts
before disconnecting.
maxconn = connections Set the maximum number of connections.
port = number Set the telnet port.
sec = [+/-]NTLM [+/-]passwd
Set the authentication mechanism
mode = console|stream Specify the mode of operation.

 

*windows7上默认不安装telnet, 需要到控制面板->程序->添加windows组件那里添加
*可以从这里下载第三方的telnet server, client ->http://www.bitvise.com/index

你可能感兴趣的:(Windows)