Hi I have Ubuntu server.
I want to install a ssh proxy server like below.
https://cyberssh.com/ssh/region/europe
I want use eproxy APK.
- Port 443
- Socks5
- Local port 1080
- Udp port 7300
Hi I have Ubuntu server.
I want to install a ssh proxy server like below.
https://cyberssh.com/ssh/region/europe
I want use eproxy APK.
If I understand correctly I think you're describing a SOCKS proxy. Those are very straightforward on Ubuntu.
Secure the server (optional but recommended)
I would recommend hardening the server a couple ways
AllowUsers proserver1
to the end of/etc/ssh/sshd_config
so that only you can log inInstall the SSH server application on your server
Configure ssh to use port 443
If you want to use port 443 you'll need to edit the configuration in
/etc/ssh/sshd_config
. Find the line that readsand change it to
(note that I removed the number symbol).
Open port 443 to the internet
The next part requires knowledge of your setup so I can't provide specific help... You need to allow access to the server port 443 from the internet. The way you do that will depend on how the server is hosted.
For example if you are running the server on your home network, you'll need to configure your router to pass port 443 of the server to the internet.
You may need to contact your hosting service about port forwarding.
Determine your public IP (optional if you have a domain service)
You'll need the public IP address or domain for your server. On the server you can run the following to get the public IP:
Establish the proxy
Eproxy will need the following
Since this is the Ubuntu stack exchange I'll also include the ssh commands for an Ubuntu client: