Skip to main content
Tag

SSH

Installing Windows 10’s SSH Proxy and Connecting to the CMD Console

By Developer's Corner No Comments

Overview Windows 10 provides an SSH server for developers to remotely access the local CMD console using the SSH protocol. We’ll go over how you can achieve this below. Installing the SSH Service Enable Developer Mode Navigate to Settings -> Update and Security -> For developers. Select ‘Developer mode’ under ‘Use developer features’ Enable the SSH Proxy Service Run the services.msc command Confirm Firewall Settings To allows external connections you’ll need to allows SSH Services in your Windows Firewall. Use the…

Read More

Connecting through HTTP Proxy Server

By Tips & Tricks No Comments

This example will use Squid 3.1.10 as an HTTP proxy server and Xshell 4 as a SSH client in CentOS x64: First make sure Squid is running on the server. [root@centOS64-x64 ~]# ps -aef | grep squid root 1557 1 0 Jul18 ? 00:00:00 squid -f /etc/squid/squid.conf squid 1560 1557 0 Jul18 ? 00:00:45 (squid) -f /etc/squid/squid.conf squid 1562 1560 0 Jul18 ? 00:00:00 (unlinkd) squid 12484 1560 0 Jul21 ? 00:00:00 (pam_auth) root 22119 22095 0 01:15 pts/0 00:00:00…

Read More

Run X Applications via an SSH Tunnel

By Features No Comments

Last time we discussed accessing remote hosts via Secure XDMCP. But what if your server has insufficient memory and you only need to run certain X applications, not an entire desktop environment. Using Xmanager, you can utilize the X11 forwarding of the SSH protocol to securely run X applications. The SSH protocol not only secures the X11 connection but also makes it easy to connect to X applications beyond the NAT gateway, so a user from a private IP network…

Read More