search for: sshkeymanager

Displaying 2 results from an estimated 2 matches for "sshkeymanager".

2002 Nov 14
0
[Bug 436] New: SSH client API
...m", 80); ssh.remoteForward(80, "www.google.com", 80); // access configuration SSHConfiguration sshConfig = ssh.getConfiguration(); SSHHostConfiguration hc = sshConfig.getHostConfiguration("*.ssh.box"); hc.setForwardX11(true); sshConfig.write(); // manage keys SSHKey key = SSHKeymanager.createKey(SSHKey.DSA, "apan-ola at foo.bar"); key.write("key1"); // creates ~/.ssh/key1 and ~/.ssh/key1.pub SSHKeymanager.removeKey("key1"); Collection keys = SSHKeymanager.listKeys(); ------- You are receiving this mail because: ------- You are the assignee for the...
2006 Sep 19
3
ssh key question
hi... if i have a machine that i want to be able to automatically ssh into multiple child machines within the network, do i have to create a key for the parent machine, and supply the key to the child machines, or do i create a key for each child machine, and supply the keys to the parent? thanks