How do I start the telnet service on backtrack 3? There isn't an /etc/inetd.conf
Since you asked, basically this is what I can't get working:
From home, I want to log into my work computer which is behind a firewall. So on my work computer, I log into my home computer like so:
Code:
ssh -R 7071:127.0.0.1:22 -p 22 user@home_ip_address
That should make my home computer listen on port 7071. So from home I should be able to log into the work computer like this:
Code:
ssh localhost -p 7071
Unfortunately (unless there is some workaround I'm not aware of) ssh through a reverse ssh tunnel gives the following error
Code:
ssh_exchange_identification: Connection closed by remote host
I think it has to do with ssh conflicting with the already existing ssh connection. But I was able to log into the work computer if I run the telnet daemon on it.