How I can access a server with domain name like 'ssh domainname\username@hostname'
Above one is not working? Please suggest correct syntax
01 Answer
Either double the backslash or quote it:
ssh foo\\ ssh "foo\bar"@example.com ssh 'foo\bar'@example.com ssh "foo\" ssh 'foo\' 1