March 29, 2024

learnlinux.in

Change is the end result of all true learning

Socks Proxy V5 Configuration

Play Video

Install SSH:

yum install sshd

To Enable SSH Service: 

systemctl enable sshd

To Start SSH Service:

systemctl start sshd

To See The Status Of SSH:

systemctl status sshd

To Allow The SSH Service Listen Through The Local Firewall:

Firewall-cmd --zone=public --permanent --add-service=ssh

To See The Ports Listend By The SSH:

netstat -ltnp | grep sshd

To Forward The Local Port Dynamically Using SSH:

ssh -D 9000 127.0.0.1

To Know Weather Port 9000 Listening Localhost 127.0.0.1 Or Not!

netstat -ltnp | grep sshd

To Listen The 9000 Port By Remote Client / Host Use Putty
Do Enter Hostname (or IP Address) : Public IP Example: 202.153.32.18 Port = 22

Go To Connections Then Go To Tunnels
Source Port = 9000
Destination = 127.0.0.1
Choose Connection = Dynamic

Click On Add
Check Boxes Under Port forwarding
☑ Local ports accept connections from other hosts

☑ Remote ports do the same (SSH-2 only)
Click On Open

Enter Your SSH Credentials You Are Ready To Go
Open Firefox Browser
Go To Networking Settings:
Check Manual Proxy : SOCKS Host 127.0.0.1 Port 9000
Choose SOCKS v5
Click On Okay Done.
Successfully Completed Configuration Of Socks Proxy v5