Jump to content

Recommended Posts

Posted
  On 10/23/2015 at 12:12 AM, zxtnt09 said:

Hi guys,

How can i use _NamedPipes_Server.au3 , _NamedPipes_Client.au3 with "TCP Connection" ?

thanks :sweating:

Where you found this files ?

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 10/24/2015 at 9:16 AM, Jos said:

It could help if you give the needed info first. what are those scripts you talk about?

Jos

This is example : 

C:\Program Files (x86)\AutoIt3\Examples\GUI\Advanced\_NamedPipes_Client.au3

C:\Program Files (x86)\AutoIt3\Examples\GUI\Advanced\_NamedPipes_Server.au3

=========

i want to use that with external server ip :'(, for example : 

server IP : 1.1.1.1 , i connect to that.

  • Developers
Posted

These Namd pipes are used for interprocess communication, not to communicate over a Layer 2 network (TCPIP) as far as I know.
You will have to use the TCPIP functions in case you want to establish a message transfer between computers.

 Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted

Not exactly.

Named Pipes:
https://msdn.microsoft.com/en-us/library/windows/desktop/aa365590(v=vs.85).aspx

  Quote

Named pipes can be used to provide communication between processes on the same computer or between processes on different computers across a network. If the server service is running, all named pipes are accessible remotely. 

 

Named Pipes vs. TCP/IP Sockets:
https://technet.microsoft.com/en-us/library/aa178138(v=sql.80).aspx

 

http://stackoverflow.com/questions/175579/what-are-named-pipes

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)
  On 10/24/2015 at 10:33 AM, zxtnt09 said:

This is example : 

C:\Program Files (x86)\AutoIt3\Examples\GUI\Advanced\_NamedPipes_Client.au3

C:\Program Files (x86)\AutoIt3\Examples\GUI\Advanced\_NamedPipes_Server.au3

=========

i want to use that with external server ip :'(, for example : 

server IP : 1.1.1.1 , i connect to that.

oops

As I see this place :
C:\Program Files (x86)\AutoIt3\Examples\GUI\Advanced\

it was very long ago, when the latter was visited by my person (although this directory is very important for me )

;)
 

 


First try to make it works beetwen two computers in the same network.
Next try to use it with external network but check your ALL FIREWALLs (Software and Hardware ie. in your router).

 

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • Developers
Posted

Indeed seems that windows is able to setup named pipe connection to remote machines using tcpip as well according those links.
Wondering what port it is using. Could be the RPC ports as that is what they are referring to, but I would never open those in my firewall with the Internet as that would be way to risky.

Jos  

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted (edited)

The OP maybe have VPN tunel .

EDIT: 
In that case As I know this should be ROUTER independend :)

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • Developers
Posted
  On 10/24/2015 at 11:21 AM, mLipok said:

The OP maybe have VPN tunel .

EDIT: 
In that case As I know this should be ROUTER independend :)

I guess you mean Firewall independent?  Agree that the firewall function in general is embedded in a Cable/DSL/Fibre Router, but the router function is the Layer 3 functionality between the WAN and LAN, and the Firewall function is used for NAT-ting and Packet filtering/forwarding. 

When using a closed VPN tunnel, you normally won't do the NAT part and your VPN remote device becomes a device on your internal LAN subnet.  

Jos 

 

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted (edited)

It's all depend.

If VPN is on this ROUTER then VPN depends on WindowsClientStation and Router Config.

If VPN Client is software solutions (instaled on WindowsClientStation ) then this is ROUTER independed solution (EDIT: but still WindowsClientStation Firewall is used). Of course as far as we are talking only about client ROUTER Locations. I mean I do not take that on SERVER location there is second router.
But this can be also Software VPN Server on WindowsServer , so in this case this will be totally ROUTER independed solution.

one remark: NOT TESTED  ;)
 

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • Developers
Posted

Not going to go in more detail here is that would be "Wordsmithing".
In the "home/users" world you are probably right or at least that is how it is phrased, but in the "Corporate world" you are missing my point I was trying to make.
The comments were also related for the Server side, received the connection, not the client side making the connection.

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...