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

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

Remote Development with IntelliJ IDEA: SSH Tunnel Configuration for Linux Servers

Entroduction Working with remote Linux environments is a common requirement for modern development teams. This guide explains how to configure IntelliJ IDEA for remote server development using SSH, and demonstrates how to establish connections through network boundaries using tunneling software. The appproach allows compilation, building, debug ...

Posted on Wed, 20 May 2026 19:24:28 +0000 by prudens

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