📄 connect.tcl
字号:
# -*- Mode: Tcl -*- # connect.tcl# # Description : NDMP connect request message tests.# # Copyright (c) 1996,1997 PDC, Network Appliance. All Rights Reserved.## $Id: connect.tcl,v 1.4 1998/02/09 06:40:10 tim Exp $# if ![info exists env(SYSTEM_SCRIPT)] { source system.tcl} else { source $env(SYSTEM_SCRIPT)}# Test handling of invalid protocol version# The following should generate an errorconnect_open 5# The following should work.connect_open 3# Attempt to authenticate server before authenticating connection.# This should fail.connect_server_auth text# Lets see if auth type NONE is supportedconnect_client_auth none# Test handling of a bogus userconnect_client_auth text bogus-user bogus-password# Test handling of an incorrect passwordconnect_client_auth text root bogus-password# Test connection authenticationeval $auth_cmd# Test connection authentication using MD5.connect_client_auth md5 root ndmpsdk# Test server authentication.connect_server_auth noneconnect_server_auth textconnect_server_auth md5connect_close
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -