We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
用户名带@符号,连接失败,
tssh '[email protected]'@1.1.1.1 -p 2222
连接失败
ssh '[email protected]'@1.1.1.1 -p 2222
这个可以正常连接
The text was updated successfully, but these errors were encountered:
这是个问题,我有空时再看看怎么优化。
你可以试试这样登录 tssh -l '[email protected]' 10.200.4.188 -p 2222
tssh -l '[email protected]' 10.200.4.188 -p 2222
Sorry, something went wrong.
这是个问题,我有空时再看看怎么优化。 你可以试试这样登录 tssh -l '[email protected]' 10.200.4.188 -p 2222
这样可以,谢谢~
更好的办法是配置 ~/.ssh/config:
~/.ssh/config
Host xxx HostName 10.200.4.188 User [email protected] Port 2222
然后 tssh xxx 就能登录了,其中 xxx 你可以替换成任意的名字。
tssh xxx
xxx
No branches or pull requests
用户名带@符号,连接失败,
tssh '[email protected]'@1.1.1.1 -p 2222
连接失败
ssh '[email protected]'@1.1.1.1 -p 2222
这个可以正常连接
The text was updated successfully, but these errors were encountered: