Skip to content

Commit 26eddb4

Browse files
committed
add demo video
1 parent f407736 commit 26eddb4

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
Binary file not shown.

src/content/post/2025/04-20-ssh-tunnel-docker/index.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ import { IMAGE_SIZES } from '../../../../constants/image';
2020
import SshTunnelArchitectureImage from '../../../../content/post/2025/04-20-ssh-tunnel-docker/_images/ssh-tunnel-architecture.png';
2121
import FirewallImage from '../../../../content/post/2025/04-20-ssh-tunnel-docker/_images/firewall.png';
2222

23+
import TunnelDemoVideo from '../../../../content/post/2025/04-20-ssh-tunnel-docker/_images/tunnel-demo.webm';
24+
2325
## Introduction
2426

2527
Most of the consumer grade internet connections are hidden behind the CG-NAT and not reachable from the internet. This is done in order to save IP addresses because IPv4 has limited range. If you have a static public IPv4 or (any) IPv6 address you wont need the setup from this tutorial.
@@ -46,6 +48,12 @@ Possible use cases:
4648
- A local machine with a working SSH and dev server that you want to expose
4749
- A domain name (optional)
4850

51+
## Demo video
52+
53+
<video {...IMAGE_SIZES.FIXED.MDX_LG} controls>
54+
<source src={TunnelDemoVideo} type="video/webm" />
55+
</video>
56+
4957
## Architecture overview
5058

5159
Without going too deep into the theory of computer networks lets explain a port forwarding in simplified terms. Port forwarding is a mapping (binding) between two points (services) on a private network (or on the same machine) that would otherwise be unreachable. You can think of it as a VPN for a single service (port).

0 commit comments

Comments
 (0)