You are not logged in.
I would like to know how to start an ssh server, so I read the ssh article on ArchWiki. I start the daemon, allowed myself as a user, I know my server-address, and then execute said command:
ssh -p port user@server-address
Nothing happens, nothing but a blinking cursor. My /etc/resolv.conf states that I have two nameservers, but the result is the same, nothing happens.
Last edited by royalpie717 (2011-08-19 07:43:11)
Offline
Ehmm... the "server-address" link you posted is about identifying the DNS servers you are using. In your ssh command, you need the address of the ssh server i.e. the computer that the ssh daemon is running on.
Offline
Ehmm... the "server-address" link you posted is about identifying the DNS servers you are using. In your ssh command, you need the address of the ssh server i.e. the computer that the ssh daemon is running on.
Then how do I find the address of my ssh server?
Offline
Try typing:
ip addr show | sed -n 's/.*inet \([0-9.]*\).*/\1/p' | grep -v '127.0.0.1'on the server. There's a good chance this will show the right ip address. (That's a guess.)
Offline
Then how do I find the address of my ssh server?
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
curl www.whatismyip.orgOffline
Try typing:
ip addr show | sed -n 's/.*inet \([0-9.]*\).*/\1/p' | grep -v '127.0.0.1'on the server. There's a good chance this will show the right ip address. (That's a guess.)
It did, and now I can log into my machine, which I wanted to try out for months. Thanks.
Last edited by royalpie717 (2011-08-19 05:37:25)
Offline