search for: sshconfig

Displaying 5 results from an estimated 5 matches for "sshconfig".

Did you mean: ssh_config
2002 May 15
3
ssh3 with ssh1
On Solaris 8, I have ssh 3.1.0 and on other box Sol 7 I have 1.2.26 (min version for comtable with ssh 3), I checked also /etc/ssh2/sshd2_config file ## SSH1 compatibility # Ssh1Compatibility <set by configure by default> # Sshd1Path <set by configure by default 2) generate key for ssh3 # ssh-keygen2 -P /etc/ssh2/hostkey
2017 Feb 07
3
[Doc] Extension of Included configuration files
...ction of the Include directive in an effort to make those included files recognizable. I'm sure you'll have a better suggestion for the wording than me; however you'll find a patch attached for the sentence "Configuration file(s) referenced by this Include directive should use the .sshconfig extension to be detected as such by external tools." but it could also be something simpler like "If you want external tools to detect your configuration files, they should use the .sshconfig extension". Let me know what you think about it, Regards, -- Alexis 'Horgix' Cho...
2002 Nov 14
0
[Bug 436] New: SSH client API
...wordDialog()); ssh.setHostAuthenticationHandler(this); SSHSocket con = ssh.connect("127.0.0.1"); con.getOutputStream().write("hello".getBytes()); ssh.localForward(80, "www.google.com", 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"); // c...
2013 Oct 17
0
Error: Could not evaluate: invalid comparator for command get
...> $allowgroups } ssh::server::configline{ ''AllowUsers'': ensure => ''absent'', } But it report error after perform this change. Here is the error message: Info: Applying configuration version ''1381979421'' Error: /Stage[main]/Localaccounts::Sshconfig/Ssh::Server::Configline[AllowUsers]/Augeas[sshd_config_AllowUsers]: Could not evaluate: Save failed with return code false, see debug Error: /Stage[main]/Localaccounts::Sshconfig/Ssh::Server::Configline[AllowGroups]/Augeas[sshd_config_AllowGroups]: Could not evaluate: invalid comparator for comman...
2012 Jan 10
3
Exec depends on ressources that are several different types
...[''libconfig-tiny-perl"] AND File["/path/to/file.pl"] which doesn''t work. In the docs ( http://docs.puppetlabs.com/guides/language_guide.html ) it gives an example service { ''sshd'': require => File[''sshdconfig'', ''sshconfig'', ''authorized_keys''] } But this only works for multiple dependencies that have the same nature, here "File" I have found a workaround which is to put the package dependency in the file section (file depends on package, exec depends on file, all solved), bu...