Built-In Server-to-Server Connectability (?)

  • Thread starter Thread starter sysreset
  • Start date Start date
Click For Summary
SUMMARY

This discussion focuses on establishing a secure connection to a remote destination server using an intermediary server with a fixed IP address. The user is testing connectivity via telnet and exploring the use of SSH for secure communication. Key insights include the use of SSH port forwarding to tunnel other protocols like telnet securely, and the necessity of having SSH client support on the web host. The discussion also highlights the importance of understanding SSH key management for secure access.

PREREQUISITES
  • Understanding of SSH (Secure Shell) and its functionalities
  • Familiarity with telnet and its use in network communication
  • Knowledge of port forwarding concepts
  • Basic understanding of SSL (Secure Sockets Layer) and its implications for secure connections
NEXT STEPS
  • Research "SSH port forwarding" and its implementation techniques
  • Learn about "SSH key management" and how to create and use SSH keys
  • Explore "telnet vs SSH" for secure communication practices
  • Investigate "SSL configuration" on servers and its interaction with SSH
USEFUL FOR

This discussion is beneficial for network administrators, security professionals, and developers seeking to implement secure server-to-server communication using SSH and intermediary servers.

sysreset
Messages
137
Reaction score
0
"Built-In" Server-to-Server Connectability (?)

I will try to ask this question coherently.

I am required to connect to a remote destination server from a fixed IP address. However, my computer is mobile and calls from various access points with differing IP addresses. So the solution I have selected is to set up an intermediary server with a fixed IP address that allows me (the client) to connect from any IP address and instruct the intermediary server to call the destination server with my username and password. I am testing this setup using telnet. For example, I transmit "telnet intermediaryserver.com 80" and I am connected to the intermediary server on port 80.

The question is what do I do on the intermediary server? Is there built-in functionality on the server that allows this with commands? Does this function reside in Windows, Linux, or Apache servers?
 
Computer science news on Phys.org


You could just do telnet again to the final destination.
Although ssh would be safer and would remove the need for the fixed ip (assuming that is for security) ssh has key exchange to ensure your machine is the one the server expects.

You can do ssh port forwarding to allow telnet (or other protoocls) to go tunnel over ssh but look like telnet at the remote end.
 


Thanks mgb! From my preliminary reading, ssh port forwarding is exactly what I was looking for. (It appears that the ssh client is built into newer versions of linux, so I just need to make sure the web host I choose includes the ssh client, and permissions to access it.)

Does ssh have built-in password protection?
 


Not sure what you mean by password protection.
You can either enter passwords for each login or use shared keys - either way all the traffic is strongly encrypted. Creating the keys for the first time is a bit tricky if you aren't familiar with the terms but there are lots of tutorials.
 


Oh, the intermediate server and the destination server are both SSL. Would that mess with the ssh encryptation?
 

Similar threads

Replies
3
Views
4K
  • · Replies 4 ·
Replies
4
Views
2K
Replies
4
Views
4K
  • · Replies 12 ·
Replies
12
Views
1K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 9 ·
Replies
9
Views
4K
  • · Replies 29 ·
Replies
29
Views
5K
  • · Replies 5 ·
Replies
5
Views
2K
Replies
4
Views
2K
  • · Replies 15 ·
Replies
15
Views
2K