Tagged Questions
1
vote
0answers
137 views
SSH to machines in new subnet - connection timeout
I'm using RHEL4 and RHEL5.
A new group of Linux machines are setup recently using 172.16.32.0/24. The existing RHEL machines are running on 172.16.1.0/22 and 172.16.4.0/22. When I try to ssh from ...
2
votes
2answers
242 views
SSH connection timing out
I am trying to connect to an external host that is living in the Internet.
From my laptop I can ssh fine. From an Ubuntu 12.10 server, the connection times out.
Since they're in the same network, ...
3
votes
1answer
565 views
How to kill a command started over SSH - the SSH connection lost
If I use
timeout 10 ssh -n -o BatchMode=yes 1.1.1.1 'sleep 20' > 1.1.1.1.txt 2>&1 &
To give out a remote command on a server, and I kill the SSH connection after 10 seconds, then I ...