Jump to content

JiBe

Active Members
  • Posts

    30
  • Joined

  • Last visited

Profile Information

  • Location
    Marseille , France

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

JiBe's Achievements

Seeker

Seeker (1/7)

6

Reputation

  1. so i didn't say anything. Just in case! 😉
  2. this UDF SSH - AutoIt Example Scripts - AutoIt Forums (autoitscript.com) support multiple simultaneous connections.
  3. Hi g0gcd, for your need for a connection chain, I added in the v2.1 all the parameters accessible via Plink/Putty. For your use, I think you should get back the putty edition that I site. Make your setup with putty and save it. you will have a sessions directory in which your session is backed up, this will give you the settings used with _SSHParametreSet() http://jakub.kotrla.net/putty/portable_putty_074_0.16.0_all_in_one.zip Example: _SSHParametreSet("HostKey", "ed25519,ecdsa,rsa,dsa,WARN") _SSHParametreSet("KEX", "ecdh,dh-gex-sha1,dh-group14-sha1,rsa,WARN,dh-group1-sha1") _SSHParametreSet("Cipher", "aes,chacha20,3des,WARN,des,blowfish,arcfour") for English, thank you Bing Trad 🙂 JiBe
  4. Hi g0gcd, Yes, I found this connection time from 4 to 5 sec. I have never made the connection with a DNS resolution deadline. For me, this deadline is SSH trading time Maybe I'm wrong. However, if you know the putty/plink setting to prevent DNS resolution, You can overload plink settings using the _SSHParametreSet ($_NameParameter, $_Value) feature Before calling the function _SSHConnect ($_IPAddr, $_port -22, $_login , "", $_passwd - "") Just for the record, I have not updated this UDF. In the state, it uses an old version of plink. It contains flaws that have not been fixed, so take precautions. I didn't update it, because I would have to adapt the changes to the original Putty/plink code. And I don't have too much time for that. Also, I feel that AutoIT is a bit finished, there is no new version for a long time. In terms of the added options, there are two. 1 - the ability to autologin with the password hidden in the spot manager. 2 - the ability to respond yes automatically to new connections. I hope I understand your question and answered it correctly. PS: I hope my English is readable, I'm French. Jibe
  5. FileDelete() Procedure.q FileDelete(Filename$) Result.q = DeleteFile(filename$,#PB_FileSystem_Force) If Result.q <> 0 Result.q = 1 EndIf ProcedureReturn Result.q EndProcedure
  6. FileExists() Procedure.q FileExists(Filename$) Result.q = FileSize(Filename$) If Result.q = -1 Result.q = 0 Else Result.q = 1 EndIf ProcedureReturn Result.q EndProcedure
  7. TimerInit() and TimerDiff() Procedure.f TimerInit() ProcedureReturn ElapsedMilliseconds() EndProcedure Procedure.f TimerDiff(StartTime.f) ProcedureReturn (ElapsedMilliseconds() - StartTime)/1000 EndProcedure
  8. As I had a need to make evolved an application made by Autot. I developed a UDF to be able to use the CSTA3 protocol with this language. For now it is quite simple it does not include the entire API of CSTA3 (ECMA-323XML) but it is functional. I tested it (for connoisseurs) on a MXone 6.2 from Mitel (formerly Aastra). It is probably compatible with other product. UDF provided with an example (with bug) Comme j'ai eu un besoin de faire evolué une application faite en AutoIT. j'ai développer un UDF pour pouvoir utilisé le protocole CSTA3 avec ce langage. Pour l'instant il est assez simple il ne comporte pas la totalité des API de CSTA3 (ECMA-323XML) mais il est fonctionnel. Je l'ai testé (pour les connaisseurs) sur une MXone 6.2 de chez Mitel (anciennement Aastra). Il est surement compatible avec d'autre produit. UDF fourni avec un exemple (avec des bug) CSTAPhone.zip
  9. Hi Chamlien, It can, but it's a little more difficult to set up :-) Single Port Redirerction $__PortForwardings = "L8080=192.168.0.200:80" Dynamic port forwarding (used for example with Proxifier) $__PortForwardings = "D3128="
  10. Sorry, just a mistake of using the forum. I wanted to just posted this: excuse my English, I'm French. but the Autoit Code used in the UDF is very clear. and my interpretation of this code is the use of the Adlibregister. should you detail your assertion.
  11. Hi,. But, use of 'AdlibRegister' is not the true multi threading. everything from useful. Good Week!
  12. Cool, the idea me please. I tested
  13. Hi lewisg, No, the ssl encryption is not implemented in the same way.Messaging, to do with stunnel (also not too difficult to manage with Autoit) sorry.
×
×
  • Create New...