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.
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 insudo apt-get update
sudo apt-get install openssh-server
If you want to use port 443 you'll need to edit the configuration in /etc/ssh/sshd_config
. Find the line that reads
# Port 22
and change it to
Port 443
(note that I removed the number symbol).
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.
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:
curl ifconfig.me
Eproxy will need the following
Since this is the Ubuntu stack exchange I'll also include the ssh commands for an Ubuntu client:
ssh -D 1080 -p 443 proserver1@the.ip.address