mirror of
https://github.com/vimagick/dockerfiles.git
synced 2026-01-04 12:05:02 +01:00
24 lines
444 B
Markdown
24 lines
444 B
Markdown
pptpd
|
|
=====
|
|
|
|
This is still a work in progress, a successful connection has not been made.
|
|
|
|
## docker-compose.yml
|
|
|
|
```
|
|
pptpd:
|
|
image: vimagick/pptpd
|
|
ports:
|
|
- "1723:1723"
|
|
volumes:
|
|
- ./chap-secrets:/etc/ppp/chap-secrets
|
|
privileged: true
|
|
restart: always
|
|
```
|
|
|
|
You must open the following ports:
|
|
|
|
- To allow PPTP tunnel maintenance traffic, open `1723/tcp`.
|
|
- To allow PPTP tunneled data to pass through router, open `Protocol 47`.
|
|
|