Exposing a Local Redis Instance to the Internet via TCP Tunneling
Redis is an in-memory key-value store prized for microsecond-level latency. Running it in side a private network is straightforward, but making it reachable from anywhere requires an extra hop. Below you’ll learn how to compile Redis on CentOS 8, seecure it for remote clients, and then punch a stable TCP tunnel through any NAT or firewall using ...
Posted on Thu, 13 Aug 2026 16:29:01 +0000 by tonchily
Setting Up Persistent SSH Access to Kali Linux Using TCP Tunneling
Enabling SSH Service on Kali Linux
New Kali installations have SSH disabled by default. Enable it with the following commands:
# Start the SSH daemon
sudo systemctl start ssh
# Verify SSH is running
sudo systemctl status ssh
# Enable SSH on boot
sudo systemctl enable ssh
Once SSH is active, you need to configure password authentication. Open ...
Posted on Mon, 20 Jul 2026 16:15:40 +0000 by Jack Sparrow
Setting Up Remote SSH Access via NAT Traversal
Deploying a NAT Traversal Tunnel for External SSH Connectivity
A NAT traversal service bridges the gap betwean a remote client and a server situated behind a firewall or NAT device. This walkthrough covers establishing an SSH pipe using a cloud-based relay platform.
Provisioning the Tunnel on the Management Console
Navigate to the service dash ...
Posted on Sun, 19 Jul 2026 16:49:06 +0000 by romano2717
Establishing SSH Connections to Network Attached Storage
Secure Shell (SSH) provides an encrypted channel for remote administration of a Network Attached Storage (NAS) device, bypassing the constraints of standard web interfaces or client applications. This command-line access is particularly useful for executing advanced operations, such as troubleshooting Docker container pulls that fail through th ...
Posted on Tue, 02 Jun 2026 17:31:33 +0000 by faifas
Setting Up a Virtual Desktop on Linux with TigerVNC for Remote GUI Applications
When managing a remote Linux server, running graphical user interface (GUI) applications can be challenging, especially if the physical console is in use or direct graphical access is not feasible. Traditional X11 forwarding over SSH can often be plagued by performance issues, particularly across high-latency networks, making tasks like install ...
Posted on Mon, 01 Jun 2026 02:12:31 +0000 by memotype
Deploying Swagger Editor with Docker on Linux and Enabling Remote Collaboration Without Public IP
Deploy Swagger Editor with Docker
Docker simplifies deployment by handling dependencies automatically. Begin by pulling the Swagger Editor image from the Docker registry.
docker pull swaggerapi/swagger-editor
Launch the container, mapping its internal port 8080 to a host port of your choice, such as 8088.
docker run -p 8088:8080 -d swaggerapi/ ...
Posted on Wed, 27 May 2026 22:07:19 +0000 by AV
Deploy JumpServer Locally and Expose It via Public URL Using cpolar
JumpServer is an open-source bastion host that adheres to 4A security standards, enabling secure access control, real-time monitoring, and post-operation auditing for IT assets. This guide demonstrates how to install JumpServer locally and expose its web interface over the public internet using cpolar for remote access without a public IP or do ...
Posted on Tue, 19 May 2026 19:36:16 +0000 by paxman356
Running RStudio Server on Linux with Remote Web Access via Tunnel
RStudio Server provides a browser-based interface for R development, allowing you to access a full RStudio IDE from any device. This guide covers setting up RStudio Server on Linux and configuring secure remote access through an HTTP tunnel.
1. Prerequisites and Installation
RStudio Server requires R to be installed first. Install R using your ...
Posted on Sat, 09 May 2026 00:08:25 +0000 by brainardp