mirror of
https://github.com/vimagick/dockerfiles.git
synced 2026-01-04 20:14:56 +01:00
add openconnect
This commit is contained in:
53
openconnect/README.md
Normal file
53
openconnect/README.md
Normal file
@@ -0,0 +1,53 @@
|
||||
openconnect
|
||||
===========
|
||||
|
||||

|
||||
|
||||
[OpenConnect][1] is an SSL VPN client initially created to support Cisco's
|
||||
AnyConnect SSL VPN. It has since been ported to support the Juniper SSL VPN
|
||||
which is now known as Pulse Connect Secure.
|
||||
|
||||
## docker-compose.yml
|
||||
|
||||
```yaml
|
||||
openconnect:
|
||||
image: vimagick/openconnect
|
||||
command: https://vpn.easypi.info:4443
|
||||
net: host
|
||||
volumes:
|
||||
- ./data:/etc/openconnect
|
||||
stop_signal: SIGINT
|
||||
privileged: yes
|
||||
```
|
||||
|
||||
## up and running
|
||||
|
||||
```bash
|
||||
$ cd ~/fig/openconnect/
|
||||
$ tree
|
||||
.
|
||||
├── data/
|
||||
│ ├── certs/
|
||||
│ │ └── client.p12
|
||||
│ └── openconnect.conf
|
||||
├── docker-compose.yml
|
||||
├── Dockerfile
|
||||
└── README.md
|
||||
|
||||
$ cd ./data/certs/
|
||||
$ openssl pkcs12 -in client.p12 -nodes -cacerts -out ca-cert.pem
|
||||
$ openssl pkcs12 -in client.p12 -nodes -clcerts -out client-cert.pem
|
||||
$ openssl pkcs12 -in client.p12 -nodes -nocerts -out client-key.pem
|
||||
|
||||
$ docker-compose up -d
|
||||
$ docker-compose logs -f
|
||||
|
||||
$ ip link show
|
||||
$ ip addr show
|
||||
$ ip route show
|
||||
|
||||
$ curl ifconfig.co
|
||||
$ curl ifconfig.ovh
|
||||
$ curl ifconfig.me
|
||||
```
|
||||
[1]: http://www.infradead.org/openconnect/index.html
|
||||
Reference in New Issue
Block a user