Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

29
openconnect Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# openconnect
> A VPN client, for Cisco AnyConnect VPNs and others.
> More information: <https://www.infradead.org/openconnect/manual.html>.
- Connect to a server:
`openconnect {{vpn.example.org}}`
- Connect to a server, forking into the background:
`openconnect --background {{vpn.example.org}}`
- Terminate the connection that is running in the background:
`killall -SIGINT openconnect`
- Connect to a server, reading options from a configuration file:
`openconnect --config={{path/to/file}} {{vpn.example.org}}`
- Connect to a server and authenticate with a specific SSL client certificate:
`openconnect --certificate={{path/to/file}} {{vpn.example.org}}`