Knowledge Base

308 copy-ready commands with fill-in variables, plus step-by-step installation guides.

Installation Guides 11

Categories

Installation Guides (11)

Tags

4 results

Networking & Tunneling

Expose a Local Port via Cloudflare Tunnel

cloudflared tunnel --url http://localhost:{{local_port}}
#cloudflare #tunnel
4 views 0 copies
Networking & Tunneling

Forward a Remote Port to Localhost (SSH Tunnel)

ssh -L {{local_port}}:{{remote_host}}:{{remote_port}} {{ssh_user}}@{{jump_host}}...
#ssh #tunnel
4 views 0 copies
Networking & Tunneling

Check Which Ports Are Listening

ss -tlnp | grep {{port}}
#network #ports
4 views 0 copies
Networking & Tunneling

Test a Domain Against a Specific IP (curl --resolve)

curl -I --resolve {{domain}}:{{port}}:{{target_ip}} https://{{domain}}/{{path}}
#curl #dns
4 views 0 copies