SSH (Secure SHell) is a protocol for running commands on a remote computer.
-2
votes
0answers
38 views
Unix script to connect 4 different servers [closed]
Possible Duplicate:
Automatically run commands over SSH on many servers
I need to create a script which will connect 4 different servers one by one, and check if the server is running then ...
2
votes
2answers
43 views
SSH public key login: two different keys and SSH_AUTH_SOCK behaviour
A user (user1) on an Ubuntu 12.04 desktop has two SSH RSA keys configured: ~/.ssh/id_rsa and ~/.ssh/id_rsa1 (and .pub files). Both public keys are configured in the authorised keys on the server's ...
2
votes
0answers
25 views
How can I solve this ssh-agent problem?
I'm using Linux Mint, and have not been able to get gnome-keyring to unlock automatically at login, it seems.
A symptom of my problem is as follows:
$ ssh-add
Identity added: /home/me/.ssh/id_rsa ...
0
votes
1answer
40 views
Why does sshd accept local network inbound connections and refuse external inbound connection?
When I try to connect to my server from the internet, I always get:
debug2: ssh_connect: needpriv 0
debug1: connect to address XX.XX.XX.69 port 22: Connection refused
ssh: connect to host XX.XX.XX.69 ...
4
votes
0answers
36 views
Redirect linux console on boot
Is it possible on boot to redirect the console output to a screen session? The server has no monitor attached, and I'd like to be able to see the primary console output. I've seen other posts about ...
8
votes
1answer
109 views
Understanding SSH tunnels
I have linux (Ubuntu) server which I have root access to through ssh (port 22) only. On that server there is a MySQL database listening on port 3306. Is it possible to use putty (on my machine) and ...
1
vote
1answer
16 views
How to append / extend zshell completions?
I am using zsh with oh-my-zsh. Unfortunately, oh-my-zsh does not use file ~/.ssh/config for hostname auto-completion (see Issue #1009, for instance).
This could easily archived by the following code:
...
5
votes
1answer
54 views
How to use ssh-agent with multiple (valid) keys and yet choose which one to use?
Let's say there are two keys A and B, both of which are valid for user@host public key authentication. Since authorized_keys is configured for different behaviour depending on the key, ~/.ssh/config ...
5
votes
3answers
74 views
A Web ssh/telnet client
I'm in kind of a tight spot right now. I wanted to know if someone has seen a HTML, or PHP web ssh client as both my company and school block everything besides port 80. I'm a control freak when it ...
0
votes
2answers
63 views
Ssh through two servers and a user in one command line [closed]
Possible Duplicate:
How do I connect to a pc through another pc using ssh
How to go about doing in one command line the following operations?
$ ssh server-one
$ su - user
$ ssh server-two
...
3
votes
2answers
88 views
Block SSH to all but root user
How can I modify my sshd_config so that it blocks access to all users except the root user?
I've had a look and I tried
AllowUsers root
DenyUsers *
But that doesn't do anything
-1
votes
0answers
15 views
How to remotelly install isoinfo on Red Hat Linux [closed]
Possible Duplicate:
How to install program locally without sudo privileges?
I need to install isoinfo on Linux server running Red Hat distro. That would be child's play normally but my ...
0
votes
0answers
23 views
Tricky Matlab remote installation on Linux server from Windows [closed]
I need to install Matlab on Linux server.
Here are the constrains:
I have only remote access to that server via SSH from machine running Windows (using putty).
There is no X server installed on ...
3
votes
2answers
96 views
Accessing Linux server from Windows machine in graphical mode via SSH
I need to access one of my school Linux servers from my home computer that runs Windows. And I need to access graphical desktop (X server) on them remotely, not only shell.
The problem includes 3 ...
0
votes
1answer
32 views
Specifying ciphers and protocol 2 in .ssh/config
I would like to be able to specify in my .ssh/config file that ssh uses protocol 2 (command line argument -2), and which ciphers to use with it.
The following does not seem to work (I get bad ...