simultaneously direct and SSH Tunnel connections to port 3306 on local server 192.168.0.0 and www remote server, respectively
-
Hi Everybody,
How to have simultaneously both
A) direct connection to port 3306 on local server 192.168.0.0 directly and
B) SSH Tunnel connection to port 3306 on www remote server
in the same single Qt 6.5 C++ app running on a Windows 10 64 bits ?
Does it work using SSH tunneling of the whole Windows OS or the app?
-
A arost deleted this topic on
-
A arost restored this topic on
-
Hi Everybody,
How to have simultaneously both
A) direct connection to port 3306 on local server 192.168.0.0 directly and
B) SSH Tunnel connection to port 3306 on www remote server
in the same single Qt 6.5 C++ app running on a Windows 10 64 bits ?
Does it work using SSH tunneling of the whole Windows OS or the app?
What's the realtion to Qt here? Just because you use a Qt app?
-
What's the realtion to Qt here? Just because you use a Qt app?
@Christian-Ehrlicher
How to have both direct and SSH connections simultaneously within an Qt app? -
@Christian-Ehrlicher
How to have both direct and SSH connections simultaneously within an Qt app?How do you use ssh in this Qt app? Via libssh? Please provide some code.
-
How do you use ssh in this Qt app? Via libssh? Please provide some code.
@Christian-Ehrlicher
Nothing yet.
I will be appreciated with comments and suggestions in this regard. -
@Christian-Ehrlicher
Nothing yet.
I will be appreciated with comments and suggestions in this regard.Hi,
You don't tunnel a whole OS, just a connection to a socket.
Nothing forbids you to establish a connection to multiple servers at the same time.
The question is: are you establishing the tunnel outside your application ?
-
Hi,
You don't tunnel a whole OS, just a connection to a socket.
Nothing forbids you to establish a connection to multiple servers at the same time.
The question is: are you establishing the tunnel outside your application ?