search for: sshconn

Displaying 8 results from an estimated 8 matches for "sshconn".

2006 Nov 02
1
Using perl-Net-SSH-Perl with pubkey authentication under CGI.
...LE>Quick Test</TITLE></HEAD>"; $ENV{HOME} = "/var/www"; $ENV{USER} = "apache"; use Net::SSH::Perl; $sshhost='target'; $sshuser='cgissh'; $sshport='22'; $sshprotocol='2'; $sshdebug='1'; $sshcipher='3des-cbc'; $sshconn = Net::SSH::Perl->new($sshhost, protocol=>$sshprotocol, port=>$sshport, debug=>$sshdebug, cipher=>$sshcipher); $sshconn->login($sshuser); my($out,$err) = $sshconn->cmd('hostname'); print "<HTML>"; print "<BODY>"; print $out; print &quo...
2007 Apr 03
1
openssl-0.9.7e compile error.
I am trying versions back. But I get the same compile error every time on HP-UX 11.0 with openssh-4.5p1. Was almost there. . . . gcc -o ssh ssh.o readconf.o clientloop.o sshtty.o sshconnect.o sshconne ct1.o sshconnect2.o -L. -Lopenbsd-compat/ -L/usr/local/ssl/lib -lssh -lopenbsd-compat -lcrypto -lz -lnsl -lxnet -lsec /usr/ccs/bin/ld: Unsatisfied symbols: _U_Qfneg (first referenced in openbsd-compat//libopenbsd-compat.a(bsd-arc4random.o)) (code) collect2: ld returned 1 exit sta...
2007 Apr 05
2
openssh-4.4p1 compile error.
...unix-dev at mindrot.org Subject: Re: openssl-0.9.7e compile error. Moore, Jerry C (CSC) (US SSA) wrote: > I am trying versions back. But I get the same compile error every time > on HP-UX 11.0 with openssh-4.5p1. Was almost there. > > gcc -o ssh ssh.o readconf.o clientloop.o sshtty.o sshconnect.o sshconne > ct1.o sshconnect2.o -L. -Lopenbsd-compat/ -L/usr/local/ssl/lib -lssh > -lopenbsd-compat -lcrypto -lz -lnsl -lxnet -lsec > /usr/ccs/bin/ld: Unsatisfied symbols: > _U_Qfneg (first referenced in > openbsd-compat//libopenbsd-compat.a(bsd-arc4random.o)) (code) > co...
2001 Apr 20
1
Restrict account to only use sftp not working
...ded "password" to usable metho debug: Ssh2Client/sshclient.c:1104/ssh_client_wrap: creating userauth protocol debug: Ssh2Common/sshcommon.c:487/ssh_common_wrap: local ip = ...., local port = 32912 debug: Ssh2Common/sshcommon.c:489/ssh_common_wrap: remote ip = ...., remote port = 22 debug: SshConnection/sshconn.c:1853/ssh_conn_wrap: Wrapping... debug: Ssh2Transport/trcommon.c:593/ssh_tr_input_version: Remote version: SSH-2.0-OpenSSH_2.5.2p2 debug: Ssh2Transport/trcommon.c:1068/ssh_tr_negotiate: c_to_s: cipher 3des-cbc, mac hmac-sha1, compression none debug: Ssh2Transport/trcommon.c:1071/ssh_...
2000 Sep 13
2
Can't connect to server using protocol v2?
Is this really caused by a buggy server, or is this an interoperability problem? It seems to work ok when I specify -o "protocol 1" on the command line. Thanks, Greg [gleblanc at grego1 gleblanc]$ ssh -v login.metalab.unc.edu SSH Version OpenSSH_2.2.0p1, protocol versions 1.5/2.0. Compiled with SSL (0x0090581f). debug: Reading configuration data /etc/ssh/ssh_config debug: Applying
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
2000 Jun 21
1
SSH 2.2.0
...; to usable methods. debug: Ssh2Client/sshclient.c:1097/ssh_client_wrap: creating userauth protocol debug: Ssh2Common/sshcommon.c:350/ssh_common_wrap: local ip = 192.168.254.148, local port = 1034 debug: Ssh2Common/sshcommon.c:352/ssh_common_wrap: remote ip = 204.17.205.2, remote port = 4040 debug: SshConnection/sshconn.c:1853/ssh_conn_wrap: Wrapping... debug: Ssh2Transport/trcommon.c:593/ssh_tr_input_version: Remote version: SSH-1.99-OpenSSH_2.1.1 debug: Remote version: SSH-1.99-OpenSSH_2.1.1 debug: SshUnixUserFiles/sshunixuserfiles.c:200/ssh_blob_read: file /root/.ssh2/hostkeys/key_4040_hobbes.rell...
2015 Jan 30
3
SSH over websockets
I must be missing the point here somehow. From my simple mind I think that two things would be needed - first a mod, e.g., mod_sshd, or better an addition to mod_auth and mod_proxy so that a URL could be used to initiate contact to an sshd server elsewhere. The mod_auth part could/should be used to verity the credentials to used - basically setting up the VPN between ssh and httpd as ssh; the