Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created March 11, 2019 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/17be7ba74607b55b880baa3c3fa24a79 to your computer and use it in GitHub Desktop.
Save ryantm/17be7ba74607b55b880baa3c3fa24a79 to your computer and use it in GitHub Desktop.
/nix/store/1bxx8409qf472w885d5qn727v22wbs47-openvpn-2.4.7
├── bin
│   └── openvpn
├── include
│   ├── openvpn-msg.h
│   └── openvpn-plugin.h
├── lib
│   ├── openvpn
│   │   └── plugins
│   │   ├── openvpn-plugin-auth-pam.la
│   │   ├── openvpn-plugin-auth-pam.so
│   │   ├── openvpn-plugin-down-root.la
│   │   └── openvpn-plugin-down-root.so
│   ├── systemd
│   │   └── system
│   │   ├── openvpn-client@.service
│   │   └── openvpn-server@.service
│   └── tmpfiles.d
│   └── openvpn.conf
├── sbin -> bin
└── share
├── doc
│   └── openvpn
│   ├── Changes.rst
│   ├── COPYING
│   ├── COPYRIGHT.GPL
│   ├── examples
│   │   ├── sample-config-files
│   │   │   ├── client.conf
│   │   │   ├── firewall.sh
│   │   │   ├── home.up
│   │   │   ├── loopback-client
│   │   │   ├── loopback-server
│   │   │   ├── office.up
│   │   │   ├── openvpn-shutdown.sh
│   │   │   ├── openvpn-startup.sh
│   │   │   ├── README
│   │   │   ├── server.conf
│   │   │   ├── static-home.conf
│   │   │   ├── static-office.conf
│   │   │   ├── tls-home.conf
│   │   │   ├── tls-office.conf
│   │   │   ├── xinetd-client-config
│   │   │   └── xinetd-server-config
│   │   ├── sample-keys
│   │   │   ├── ca.crt
│   │   │   ├── ca.key
│   │   │   ├── client.crt
│   │   │   ├── client-ec.crt
│   │   │   ├── client-ec.key
│   │   │   ├── client.key
│   │   │   ├── client.p12
│   │   │   ├── client-pass.key
│   │   │   ├── dh2048.pem
│   │   │   ├── gen-sample-keys.sh
│   │   │   ├── openssl.cnf
│   │   │   ├── README
│   │   │   ├── server.crt
│   │   │   ├── server-ec.crt
│   │   │   ├── server-ec.key
│   │   │   ├── server.key
│   │   │   └── ta.key
│   │   └── sample-scripts
│   │   ├── auth-pam.pl
│   │   ├── bridge-start
│   │   ├── bridge-stop
│   │   ├── ucn.pl
│   │   └── verify-cn
│   ├── management-notes.txt
│   ├── README
│   ├── README.auth-pam
│   ├── README.down-root
│   ├── README.IPv6
│   ├── README.mbedtls
│   └── README.systemd
└── man
└── man8
└── openvpn.8.gz
18 directories, 59 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment