jsch-users Mailing List for JSch (Page 154)
Status: Alpha
Brought to you by:
ymnk
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(17) |
Nov
(3) |
Dec
(5) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(34) |
Feb
(70) |
Mar
(18) |
Apr
(17) |
May
(21) |
Jun
(20) |
Jul
(27) |
Aug
(12) |
Sep
(10) |
Oct
(7) |
Nov
(21) |
Dec
(5) |
2004 |
Jan
(18) |
Feb
(13) |
Mar
(35) |
Apr
(8) |
May
(26) |
Jun
(32) |
Jul
(19) |
Aug
(37) |
Sep
(14) |
Oct
(20) |
Nov
(41) |
Dec
(48) |
2005 |
Jan
(44) |
Feb
(60) |
Mar
(62) |
Apr
(42) |
May
(26) |
Jun
(55) |
Jul
(29) |
Aug
(21) |
Sep
(56) |
Oct
(20) |
Nov
(17) |
Dec
(9) |
2006 |
Jan
(33) |
Feb
(49) |
Mar
(27) |
Apr
(27) |
May
(67) |
Jun
(28) |
Jul
(64) |
Aug
(45) |
Sep
(39) |
Oct
(52) |
Nov
(36) |
Dec
(45) |
2007 |
Jan
(60) |
Feb
(44) |
Mar
(57) |
Apr
(18) |
May
(15) |
Jun
(37) |
Jul
(27) |
Aug
(32) |
Sep
(48) |
Oct
(52) |
Nov
(48) |
Dec
(17) |
2008 |
Jan
(28) |
Feb
(6) |
Mar
(29) |
Apr
(27) |
May
(10) |
Jun
(33) |
Jul
(27) |
Aug
(15) |
Sep
(46) |
Oct
(18) |
Nov
(10) |
Dec
(8) |
2009 |
Jan
(22) |
Feb
(17) |
Mar
(10) |
Apr
(14) |
May
(20) |
Jun
(28) |
Jul
(9) |
Aug
(8) |
Sep
(12) |
Oct
(22) |
Nov
(23) |
Dec
(18) |
2010 |
Jan
(32) |
Feb
(18) |
Mar
(30) |
Apr
(54) |
May
(25) |
Jun
(22) |
Jul
(26) |
Aug
(54) |
Sep
(15) |
Oct
(24) |
Nov
(53) |
Dec
(11) |
2011 |
Jan
(45) |
Feb
(40) |
Mar
(47) |
Apr
(28) |
May
(30) |
Jun
(58) |
Jul
(13) |
Aug
(27) |
Sep
(41) |
Oct
(7) |
Nov
(18) |
Dec
(22) |
2012 |
Jan
(36) |
Feb
(71) |
Mar
(30) |
Apr
(25) |
May
(32) |
Jun
(15) |
Jul
(12) |
Aug
(8) |
Sep
(16) |
Oct
(21) |
Nov
(4) |
Dec
|
2013 |
Jan
(9) |
Feb
(6) |
Mar
(27) |
Apr
(16) |
May
(16) |
Jun
(10) |
Jul
(5) |
Aug
(1) |
Sep
(7) |
Oct
(12) |
Nov
(25) |
Dec
(10) |
2014 |
Jan
(4) |
Feb
(24) |
Mar
(7) |
Apr
(12) |
May
(14) |
Jun
(7) |
Jul
(13) |
Aug
(3) |
Sep
(21) |
Oct
(10) |
Nov
(4) |
Dec
(6) |
2015 |
Jan
(8) |
Feb
(8) |
Mar
(6) |
Apr
(5) |
May
(2) |
Jun
(4) |
Jul
(2) |
Aug
|
Sep
(2) |
Oct
(16) |
Nov
(6) |
Dec
(9) |
2016 |
Jan
(7) |
Feb
(7) |
Mar
(3) |
Apr
(1) |
May
(12) |
Jun
(7) |
Jul
(7) |
Aug
(6) |
Sep
(5) |
Oct
(15) |
Nov
(6) |
Dec
(1) |
2017 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
(2) |
Jun
(1) |
Jul
(1) |
Aug
|
Sep
(3) |
Oct
|
Nov
(3) |
Dec
|
2018 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
(4) |
Feb
|
Mar
(2) |
Apr
(4) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(2) |
Dec
(1) |
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ym...@jc...> - 2002-10-29 15:55:03
|
Hi everyone, JSch 0.0.6 has been released. It is available at http://prdownloads.sourceforge.net/jsch/jsch-0.0.6.zip?download and its md5sum is 021392ce5e9c4e9b26f41cd8f47f4182 Changes since version 0.0.5: - DSA public key authentication is supported. - examples/UserAuthPubKey.java is added. - examples/ScpTo.java is added. |
From: <ym...@jc...> - 2002-10-28 16:40:39
|
Hi, I wrote a sample program, which demonstrates filetransfer from local to remote in scp style. It seems scp command from OpenSSH just uses remote exec and filexfer protocol is not used. It is available at http://www.jcraft.com/jsch/examples/ScpTo.java For example, you can do as follows, java ScpTo ScpTo.class localhost:. Please refer it if you are interested in. PS. At last weekend, I hacked the user authentication by publickey and I succeed to implement it by DSA at last. It was difficult for me to do because I did not have any knowledge about PCKS and I could not find formal definitions about ~/.ssh/id_dsa. However, the source code of OpenSSL taught me 'what are included in it'. Anyway, I will release next version with this functionality in a few days. Thanks, -- ymnk |
From: Sebastian N. <wo...@gm...> - 2002-10-27 17:33:18
|
On Sun, 27 Oct 2002 09:30:51 -0800 jsc...@li... wrote: > JSch-users -- confirmation of subscription -- request 965167 > > We have received a request from 80.131.95.85 for subscription of your > email address, <wo...@gm...>, to the > jsc...@li... mailing list. To confirm the > request, please send a message to > jsc...@li..., and either: > > - maintain the subject line as is (the reply's additional "Re:" is > ok), > > - or include the following line - and only the following line - in the > message body: > > confirm 965167 > > (Simply sending a 'reply' to this message should work from most email > interfaces, since that usually leaves the subject line in the right > form.) > > If you do not wish to subscribe to this list, please simply disregard > this message. Send questions to > jsc...@li.... > -- It is not common to write "hello, world" programs in Common Lisp like it is in C/C++ and Common Lisp environments are therefore not optimized very heavily for this task. E. Naggum in c.l.l. |
From: <ym...@jc...> - 2002-10-24 16:20:49
|
Hi everyone, JSch 0.0.5 has been released. It is available at http://prdownloads.sourceforge.net/jsch/jsch-0.0.5.zip?download and its md5sum is b6f1b71dc2085cfe10fb51a242b01872 Changes since version 0.0.4: - 3des-cbc is supported. - hmac-sha1 is supported. - hmac-md5-96 is supported. - hmac-sha1-96 is supported. |
From: <ym...@jc...> - 2002-10-24 09:45:16
|
Hi, +-From: Stephane Chevalier <sc...@wi...> __ |_Date: Thu, 24 Oct 2002 11:03:21 +0200 _____ | |Hi, Thanks for your interest of my problem This is the output of |this command : >> debug1: Remote protocol version 2.0, remote software version 3.1.0 SSH Secure Shell >> (non-commercial) debug1: no match: 3.1.0 SSH Secure Shell >> (non-commercial) Enabling compatibility mode for protocol 2.0 It seems sshd is from www.ssh.com and I have not tested it yet. Thank you for feedback! >> debug1: Local version string SSH-2.0-OpenSSH_2.9p2 >> debug1: SSH2_MSG_KEXINIT sent >> debug1: SSH2_MSG_KEXINIT received >> debug1: kex: server->client aes128-cbc hmac-md5 none >> debug1: kex: client->server aes128-cbc hmac-md5 none >> debug1: dh_gen_key: priv key bits set: 118/256 >> debug1: bits set: 522/1024 I had guessed that a problem has come from the lack of hmac-sha1 support, but it seems hmac-md5 can be be used. # hmac-md5 is supported in the current implementation. How about following command? Can you login? ssh -c blowfish-cbc hostname Current jsch does not support aes128-cbc and that may be a problem. Thanks, -- ymnk |
From: Stephane C. <sc...@wi...> - 2002-10-24 09:04:00
|
Hi, Thanks for your interest of my problem This is the output of this command : > bash-2.05$ ssh -v 192.168.0.200 > OpenSSH_2.9p2, SSH protocols 1.5/2.0, OpenSSL 0x0090602f > debug1: Reading configuration data /etc/ssh/ssh_config > debug1: Applying options for * > debug1: Seeding random number generator > debug1: Rhosts Authentication disabled, originating port will not be trusted. > debug1: restore_uid > debug1: ssh_connect: getuid 1000 geteuid 0 anon 1 > debug1: Connecting to 192.168.0.200 [192.168.0.200] port 22. > debug1: temporarily_use_uid: 1000/1000 (e=0) > debug1: restore_uid > debug1: temporarily_use_uid: 1000/1000 (e=0) > debug1: restore_uid > debug1: Connection established. > debug1: identity file /usr/local/witbe/.ssh/identity type -1 > debug1: identity file /usr/local/witbe/.ssh/id_rsa type -1 > debug1: identity file /usr/local/witbe/.ssh/id_dsa type -1 > debug1: Remote protocol version 2.0, remote software version 3.1.0 SSH Secure Shell (non-commercial) > debug1: no match: 3.1.0 SSH Secure Shell (non-commercial) > Enabling compatibility mode for protocol 2.0 > debug1: Local version string SSH-2.0-OpenSSH_2.9p2 > debug1: SSH2_MSG_KEXINIT sent > debug1: SSH2_MSG_KEXINIT received > debug1: kex: server->client aes128-cbc hmac-md5 none > debug1: kex: client->server aes128-cbc hmac-md5 none > debug1: dh_gen_key: priv key bits set: 118/256 > debug1: bits set: 522/1024 > debug1: sending SSH2_MSG_KEXDH_INIT > debug1: expecting SSH2_MSG_KEXDH_REPLY > debug1: Host '192.168.0.200' is known and matches the DSA host key. > debug1: Found key in /usr/local/witbe/.ssh/known_hosts2:3 > debug1: bits set: 509/1024 > debug1: len 55 datafellows 0 > debug1: ssh_dss_verify: signature correct > debug1: kex_derive_keys > debug1: newkeys: mode 1 > debug1: SSH2_MSG_NEWKEYS sent > debug1: waiting for SSH2_MSG_NEWKEYS > debug1: newkeys: mode 0 > debug1: SSH2_MSG_NEWKEYS received > debug1: done: ssh_kex2. > debug1: send SSH2_MSG_SERVICE_REQUEST > debug1: service_accept: ssh-userauth > debug1: got SSH2_MSG_SERVICE_ACCEPT > debug1: authentications that can continue: publickey,password > debug1: next auth method to try is publickey > debug1: try privkey: /usr/local/witbe/.ssh/identity > debug1: try privkey: /usr/local/witbe/.ssh/id_rsa > debug1: try privkey: /usr/local/witbe/.ssh/id_dsa > debug1: next auth method to try is password Thanks Best regards, -- Stephane Chevalier WITBE.net SA mailto:sc...@wi... Wednesday, October 23, 2002, 5:14:15 PM, you wrote: AY> Hi, AY> +-From: Stephane Chevalier <sc...@wi...> __ AY> |_Date: Wed, 23 Oct 2002 16:24:28 +0200 _____ AY> |My problem is here AY> >> SSH_MSG_DISCONNECT: 3 Algorithm negotiation failed. en AY> >> Exception in thread "main" java.lang.OutOfMemoryError AY> It seems there is a problem in algorithm negotiation stage. AY> If you have a ssh command, may I ask you to try the following ? AY> $ ssh -vv hostname_which_you_specified_to_jsch AY> The output from above command includes what algorithm are expected by AY> sshd. I'm interested in that list. AY> The following is the result on my environment. AY> ------------------------------- AY> debug1: Remote protocol version 1.99, remote software version OpenSSH_3.1p1 AY> debug1: match: OpenSSH_3.1p1 pat OpenSSH* AY> Enabling compatibility mode for protocol 2.0 AY> debug1: Local version string SSH-2.0-OpenSSH_3.1p1 AY> debug1: SSH2_MSG_KEXINIT sent AY> debug1: SSH2_MSG_KEXINIT received AY> debug2: kex_parse_kexinit: diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1 AY> debug2: kex_parse_kexinit: ssh-dss AY> debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc AY> debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc AY> debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,hma...@op...,hmac-sha1-96,hmac-md5-96 AY> debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,hma...@op...,hmac-sha1-96,hmac-md5-96 AY> debug2: kex_parse_kexinit: none AY> debug2: kex_parse_kexinit: none AY> debug2: kex_parse_kexinit: AY> debug2: kex_parse_kexinit: AY> debug2: kex_parse_kexinit: first_kex_follows 0 AY> debug2: kex_parse_kexinit: reserved 0 AY> debug2: kex_parse_kexinit: diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1 AY> debug2: kex_parse_kexinit: ssh-rsa,ssh-dss AY> debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc AY> debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc AY> debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,hma...@op...,hmac-sha1-96,hmac-md5-96 AY> debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,hma...@op...,hmac-sha1-96,hmac-md5-96 AY> debug2: kex_parse_kexinit: none,zlib AY> debug2: kex_parse_kexinit: none,zlib AY> ------------------------------- AY> Thanks, AY> -- AY> ymnk AY> ------------------------------------------------------- AY> This sf.net email is sponsored by: Influence the future AY> of Java(TM) technology. Join the Java Community AY> Process(SM) (JCP(SM)) program now. AY> http://ads.sourceforge.net/cgi-bin/redirect.pl?sunm0002en AY> _______________________________________________ AY> JSch-users mailing list AY> JSc...@li... AY> https://lists.sourceforge.net/lists/listinfo/jsch-users |
From: <ym...@jc...> - 2002-10-23 15:11:11
|
Hi, +-From: Stephane Chevalier <sc...@wi...> __ |_Date: Wed, 23 Oct 2002 16:24:28 +0200 _____ |My problem is here >> SSH_MSG_DISCONNECT: 3 Algorithm negotiation failed. en >> Exception in thread "main" java.lang.OutOfMemoryError It seems there is a problem in algorithm negotiation stage. If you have a ssh command, may I ask you to try the following ? $ ssh -vv hostname_which_you_specified_to_jsch The output from above command includes what algorithm are expected by sshd. I'm interested in that list. The following is the result on my environment. ------------------------------- debug1: Remote protocol version 1.99, remote software version OpenSSH_3.1p1 debug1: match: OpenSSH_3.1p1 pat OpenSSH* Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_3.1p1 debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug2: kex_parse_kexinit: diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1 debug2: kex_parse_kexinit: ssh-dss debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,hma...@op...,hmac-sha1-96,hmac-md5-96 debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,hma...@op...,hmac-sha1-96,hmac-md5-96 debug2: kex_parse_kexinit: none debug2: kex_parse_kexinit: none debug2: kex_parse_kexinit: debug2: kex_parse_kexinit: debug2: kex_parse_kexinit: first_kex_follows 0 debug2: kex_parse_kexinit: reserved 0 debug2: kex_parse_kexinit: diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1 debug2: kex_parse_kexinit: ssh-rsa,ssh-dss debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,hma...@op...,hmac-sha1-96,hmac-md5-96 debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,hma...@op...,hmac-sha1-96,hmac-md5-96 debug2: kex_parse_kexinit: none,zlib debug2: kex_parse_kexinit: none,zlib ------------------------------- Thanks, -- ymnk |
From: Stephane C. <sc...@wi...> - 2002-10-23 14:24:58
|
Hi, I have a problem when I execute this command : CLASSPATH=.:../src java Shell Warning: translation table syntax error: Unknown keysym name: osfActivate Warning: ... found while parsing ':<Key>osfActivate: ManagerParentActivate()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfBeginLine Warning: ... found while parsing ':<Key>osfBeginLine: ManagerGadgetTraverseHome()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfHelp Warning: ... found while parsing ':<Key>osfHelp: ManagerGadgetHelp()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfActivate Warning: ... found while parsing ':<Key>osfActivate: DrawingAreaInput() ManagerParentActivate()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfUp Warning: ... found while parsing ':<Key>osfUp: DrawingAreaInput() ManagerGadgetTraverseUp()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfActivate Warning: ... found while parsing ':<Key>osfActivate: PrimitiveParentActivate()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfHelp Warning: ... found while parsing ':<Key>osfHelp: Help()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfActivate Warning: ... found while parsing ':<Key>osfActivate: PrimitiveParentActivate()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfCancel Warning: ... found while parsing ':<Key>osfCancel: MenuEscape()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfSelect Warning: ... found while parsing ':<Key>osfSelect: ArmAndActivate()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfActivate Warning: ... found while parsing ':<Key>osfActivate: PrimitiveParentActivate()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfCancel Warning: ... found while parsing '<Key>osfCancel: MenuEscape()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfSelect Warning: ... found while parsing ':<Key>osfSelect: ManagerGadgetSelect()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfSelect Warning: ... found while parsing ':<Key>osfSelect: MenuBarGadgetSelect()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfActivate Warning: ... found while parsing ':<Key>osfActivate: ManagerParentActivate()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfHelp Warning: ... found while parsing ':<Key>osfHelp: MenuHelp()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfPrimaryPaste Warning: ... found while parsing ':m <Key>osfPrimaryPaste:cut-primary()' Warning: String to TranslationTable conversion encountered errors Warning: translation table syntax error: Unknown keysym name: osfActivate Warning: ... found while parsing ':<Key>osfActivate: PrimitiveParentActivate()' Warning: String to TranslationTable conversion encountered errors My problem is here > SSH_MSG_DISCONNECT: 3 Algorithm negotiation failed. en > Exception in thread "main" java.lang.OutOfMemoryError Someone as an idea ??? Thanks. Best regards, -- Stephane Chevalier WITBE.net SA mailto:sc...@wi... |
From: <ym...@jc...> - 2002-10-23 01:27:30
|
Hi, +-From: "Lucas Bruand" <lb...@wa...> __ |_Date: Wed, 23 Oct 2002 01:27:26 +0200 ______ | |PS: Atsuhiko, I'd like to know something about this list: Is a |user list ? a developper list ? or an announce list ? My real |point is : wouldn't it be more simple to change the ReplyTo field |of Mailman so that you would always reply to the list. ( All |conversations are thus stored ?) What is the policy about this |list... Am I rightful to send this mail to the list ? This list is for users, developers and announcements. At first, I thought to create 3 lists for each of them, but I guessed there will be not so many traffics and jsch-users will be enough. If devel and announcement lists are required in the future, I will create them. Thanks, -- ymnk |
From: <ym...@jc...> - 2002-10-23 01:19:42
|
Hi, +-From: "Lucas Bruand" <lb...@wa...> __ |_Date: Wed, 23 Oct 2002 01:19:03 +0200 ______ | |Atsuhiko, have you heard about |http://sourceforge.net/projects/sshtools/ ? I know it's BSD, so |it's not the same as Jsch anyway... I have not heard about it. Before staring the jsch project, I had searched the key words 'java', 'ssh' on google, freshmeat, but I could not find SSH2 implementations in Java in Open Source license. If I found that, I had not started the jsch project. Anyway, I have already started it and it is fun for me to hack jsch. I will continue to hack it. | What do you think of the |implementation ? According to that web page, they have implemented ciphers in pure java and I think that is great work. IMHO, it is not so difficult to implement SSH2 protocol and the difficulties in implementing SSH2 system is in implementing several cipher functions. So, I think that work is awesome. | Do you think they will keep an opensource |profile or turn Mindtermed ? Humm... I don't know their plan. However, from my understanding about the BSD license, anybody can modify and use your contributions without opening the source code, as Microsoft reused TCP/IP stack from BSD and integrated it into their OS. I will not say that is good or not, but it may not be acceptable for you if you hate MindTerm2. Thanks -- ymnk |
From: Lucas B. <lb...@wa...> - 2002-10-22 23:22:37
|
"Bravo" as they say in Italian! I'll try to contribute some SFTP code asap... ( but not before next weeke= nd unfortunately... I won't have access to my computer this weekend). Cheers, Lucas PS: Atsuhiko, I'd like to know something about this list: Is a user list ? a developper list ? or an announce list ? My real point is : wouldn't it be more simple to change the ReplyTo field of Mailman so that you would always reply to the list. ( All conversations are thus stored ?= ) What is the policy about this list... Am I rightful to send this mail to = the list ? > -----Message d'origine----- > De : jsc...@li... > [mailto:jsc...@li...]De la part de Atsuhiko > Yamanaka > Envoy=E9 : mardi 22 octobre 2002 17:31 > =C0 : jsc...@li... > Objet : [JSch-users] ANNOUNCE: JSch 0.0.4 > > > Hi everyone, > > JSch 0.0.4 has been released. > It is available at > http://prdownloads.sourceforge.net/jsch/jsch-0.0.4.zip?download > and its md5sum is 412de3b0dcee07d056a75abc4d64d783. > > Changes since version 0.0.3: > - port forwarding like option -L of ssh command. > - examples/PortForwardingL.java is added. > - examples/StreamForwarding.java is added. > - examples/Exec.java is renamed as examples/Shell.java > - stream forwarding is added. > - ChannelSftp class is added for implementing filexfer. > - interfaces for jsch users are changed. > > > ------------------------------------------------------- > This sf.net emial is sponsored by: Influence the future > of Java(TM) technology. Join the Java Community > Process(SM) (JCP(SM)) program now. > http://ad.doubleclick.net/clk;4699841;7576301;v?http://www.sun.com /javavote _______________________________________________ JSch-users mailing list JSc...@li... https://lists.sourceforge.net/lists/listinfo/jsch-users |
From: Lucas B. <lb...@wa...> - 2002-10-22 23:14:10
|
Sorry forgot to add the mailinglist in copy! -----Message d'origine----- De : Lucas Bruand [mailto:lb...@wa...] Envoy=E9 : mercredi 23 octobre 2002 01:03 =C0 : Atsuhiko Yamanaka Objet : SSHTools Hi Atsuhiko, Atsuhiko, have you heard about http://sourceforge.net/projects/sshtools/ = ? I know it's BSD, so it's not the same as Jsch anyway... What do you think of the implementation ? Do you think they will keep an opensource profile or turn Mindtermed ? Big thanks for your work, ( I will try to contribute, when I'll have som= e more time...) Lucas > -----Message d'origine----- > De : jsc...@li... > [mailto:jsc...@li...]De la part de Atsuhiko > Yamanaka > Envoy=E9 : mardi 22 octobre 2002 17:31 > =C0 : jsc...@li... > Objet : [JSch-users] ANNOUNCE: JSch 0.0.4 > > > Hi everyone, > > JSch 0.0.4 has been released. > It is available at > http://prdownloads.sourceforge.net/jsch/jsch-0.0.4.zip?download > and its md5sum is 412de3b0dcee07d056a75abc4d64d783. > > Changes since version 0.0.3: > - port forwarding like option -L of ssh command. > - examples/PortForwardingL.java is added. > - examples/StreamForwarding.java is added. > - examples/Exec.java is renamed as examples/Shell.java > - stream forwarding is added. > - ChannelSftp class is added for implementing filexfer. > - interfaces for jsch users are changed. > > > ------------------------------------------------------- > This sf.net emial is sponsored by: Influence the future > of Java(TM) technology. Join the Java Community > Process(SM) (JCP(SM)) program now. > http://ad.doubleclick.net/clk;4699841;7576301;v?http://www.sun.com /javavote _______________________________________________ JSch-users mailing list JSc...@li... https://lists.sourceforge.net/lists/listinfo/jsch-users |
From: <ym...@jc...> - 2002-10-22 15:28:18
|
Hi everyone, JSch 0.0.4 has been released. It is available at http://prdownloads.sourceforge.net/jsch/jsch-0.0.4.zip?download and its md5sum is 412de3b0dcee07d056a75abc4d64d783. Changes since version 0.0.3: - port forwarding like option -L of ssh command. - examples/PortForwardingL.java is added. - examples/StreamForwarding.java is added. - examples/Exec.java is renamed as examples/Shell.java - stream forwarding is added. - ChannelSftp class is added for implementing filexfer. - interfaces for jsch users are changed. |
From: <ym...@jc...> - 2002-10-20 14:57:58
|
Hi, Thank you for your contributions, Lucas! I have released JSch 0.0.3, which includes your contributions and new functionality, remote exec. In this weekend, I'm trying to redesign the class architecture to add filexfer support and I had planed to merge those changes into 0.0.3. However, I think it is important to make your contributions to be public as soon as possible, so I postpone the merge until 0.0.4. Now, I can make filexfer session and issue 'cd' request. I think 0.0.4 will be good starting point to support filexfer. Thanks, -- ymnk |
From: <ym...@jc...> - 2002-10-20 14:43:36
|
Hi everyone, JSch 0.0.3 has been released. It is available at http://www.jcraft.com/jsch/jsch-0.0.3.zip and its md5sum is cb739872e059f5627ad456d870d72d30. Changes since version 0.0.2: - remote exec is supported. - examples/Exec.java is added. - build.xml and some scripts for Ant are added. (lbruand) - Const class is added. (lbruand) |
From: Lucas B. <lb...@wa...> - 2002-10-18 19:31:48
|
Hello Atsuhiko! I have seen you have got the password from sourceforge. If you want me to help in anyway, please tell me. My account on sourceforge is lbruand, in case, it's helpful. I have had a look at version 0.0.2, and I have added a very basic ant build.xml. I also have reworked the directories to fit with ant: / ___ src ___ com ___ jcraft ____ jsch | | | |_ examples | |_ tools tools - is used to build with ant. To build with ant, simply type 'build.bat' in the root dir under windows and 'build.sh' under Linux. With / containes: the files: README COPYING ChangeLog build.xml <-- this is the main compilation file... I hope this won't be a I did a small modification to the sourcecode: The version proposed on jcraft website has a stange feature for MyUserAuth Innerclasses: They stand outside of the main class and this feature proves to be meaningless to my compiler. I took the liberty to change this : I have put the MyUserAuth back into their homeclasses. Regards, Lucas PS: My compiler: F:\download\programmation\java\Jsch\jsch-0.0.2\jsch-0.0.2>java -version java version "1.4.0_01" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0_01-b03) Java HotSpot(TM) Client VM (build 1.4.0_01-b03, mixed mode) I know I need to update but... |