I was given login credentials to a server and there is an @ character in my username. How can I make an SSH connection in my terminal?
username:
host: domain.com
I've tried
$ ssh ""@domain.com
$ ssh -l domain.comNothing is seeming to work.
Any help?
14 Answers
If the username is you can try this:
$ ssh ''@domain.com 1 I just created a new user on my system called foo@domain and I could ssh into it perfectly well with just
ssh foo@domain@serverIf for whatever reason that does not work for you, you can also do
ssh 'foo@domain'@badabingor
ssh 'foo\@domain'@badabing 1 Whoever gave you the login credentials may have made a mistake. Have you tried just: ssh ?
I think that your username is foo so you should try: ssh that will prompt you for the password.