teleport/client/cfg/tp-assist.windows.json

84 lines
2.7 KiB
JSON
Raw Normal View History

{
"ssh": {
"selected": "putty",
2020-03-26 12:32:35 +00:00
"available": [{
"name": "putty",
"display": "PuTTY内置",
"app": "{assist_tools_path}\\putty\\putty.exe",
"cmdline": "-ssh -pw **** -P {host_port} -l {user_name} {host_ip}"
},
{
"name": "crt",
"display": "SecureCRT",
"app": "",
"cmdline": "/T /N \"TP#ssh://{real_ip}\" /SSH2 /P {host_port} /PASSWORD **** {user_name}@{host_ip}"
},
{
"name": "xshell",
"display": "Xshell",
"app": "",
"cmdline": "-newtab \"TP#ssh://{real_ip}\" -url ssh://{user_name}:****@{host_ip}:{host_port}"
},
{
"name": "other",
"display": "自定义",
"app": "",
"cmdline": ""
}
]
},
"scp": {
"selected": "winscp",
2020-03-26 12:32:35 +00:00
"available": [{
"name": "winscp",
"display": "WinSCP内置",
"app": "{assist_tools_path}\\winscp\\winscp.exe",
"cmdline": "/sessionname=\"TP#{real_ip}\" {user_name}:****@{host_ip}:{host_port}"
},
{
"name": "other",
"display": "自定义",
"app": "",
"cmdline": ""
}
]
},
"telnet": {
"selected": "putty",
2020-03-26 12:32:35 +00:00
"available": [{
"name": "putty",
"display": "PuTTY内置",
"app": "{assist_tools_path}\\putty\\putty.exe",
"cmdline": "telnet://{user_name}@{host_ip}:{host_port}"
},
{
"name": "crt",
"display": "SecureCRT",
"app": "",
"cmdline": "/T /N \"TP#telnet://{real_ip}\" /ARG {user_name} /SCRIPT \"{assist_tools_path}\\securecrt-telnet.vbs\" /TELNET {host_ip} {host_port}"
},
{
"name": "other",
"display": "自定义",
"app": "",
"cmdline": ""
}
]
},
2020-03-26 12:32:35 +00:00
"rdp": {
"available": [{
"app": "mstsc.exe",
"cmdline": "\"{tmp_rdp_file}\"",
"display": "微软RDP客户端系统自带",
"name": "mstsc"
},
{
"app": "{assist_tools_path}\\tprdp\\wfreerdp.exe",
"cmdline": "/v:{host_ip}:{host_port} /u:{user_name} /t:\"TP#{real_ip}\"",
"display": "FreeRDP内置",
"name": "freerdp"
}
],
"selected": "mstsc"
}
}