Configure SSH tunnels and port forwarding for dev services
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill port-forwarding --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Port Forwarding?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-port-forwarding)More formats (shields.io, HTML) on the badges page.
---
name: port-forwarding
description: "Configure SSH tunnels and port forwarding for dev services"
---
# Port Forwarding
## Local Forwarding
```bash
# Access remote service locally
ssh -L 8080:localhost:80 user@server
# Now http://localhost:8080 reaches server:80
```
## Remote Forwarding
```bash
# Expose local service to remote
ssh -R 9090:localhost:3000 user@server
# Server:9090 reaches your local port 3000
```
## Dynamic (SOCKS Proxy)
```bash
ssh -D 1080 user@server
# Use localhost:1080 as SOCKS proxy
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!