Simple tool to manage users
Go to file
Ilya Sosnovsky 4c5423169d Merge branch 'master' of github.com:pashcovich/openvpn-user 2021-02-19 09:45:45 +03:00
.github/workflows Update release.yaml 2021-02-14 13:23:29 +03:00
.dockerignore Initial commit 2021-02-05 09:37:12 +03:00
.gitignore Initial commit 2021-02-05 09:37:12 +03:00
Dockerfile small fixes 2021-02-19 09:45:26 +03:00
LICENSE Initial commit 2021-02-05 09:37:12 +03:00
README.md Add check commnad; Fixes 2021-02-05 21:19:54 +03:00
auth.sh some fixes and additional features 2021-02-08 12:53:09 +03:00
build.sh Initial commit 2021-02-05 09:37:12 +03:00
go.mod Initial commit 2021-02-05 09:37:12 +03:00
go.sum Initial commit 2021-02-05 09:37:12 +03:00
install-deps.sh Update install-deps.sh 2021-02-14 13:16:36 +03:00
openvpn-user.go small fixes 2021-02-19 09:45:26 +03:00

README.md

openvpn-user

Disclaimer

- Not tested in production environments! 

Use it on your own risk =)

Description

A simple tool to use with openvpn when you need to use auth-user-pass-verify or wherever you want

Example

make sure openvpn-user binary available through PATH variable and you have auth.sh script with +x rights available to openvpn server

i.e. put binary to /usr/local/sbin/ and auth script to /etc/openvpn/scripts/ dir

part of openvpn server config

script-security 2
auth-user-pass-verify /etc/openvpn/scripts/auth.sh via-file

Usage

usage: openvpn-user [<flags>] <command> [<args> ...]

Flags:
  --help                         Show context-sensitive help (also try --help-long and --help-man).
  --db.path="./openvpn-user.db"  path do openvpn-user db

Commands:
  help [<command>...]
    Show help.

  db-init
    Init db.

  db-migrate
    STUB: Migrate db.

  create --user=USER --password=PASSWORD
    Create user.

  delete --user=USER
    Delete user.

  revoke --user=USER
    Revoke user.

  restore --user=USER
    Restore user.

  list [<flags>]
    List active users.
    
    flags:
      --all  Show all users include revoked and delete

  auth --user=USER --password=PASSWORD
    Auth user.

  change-password --user=USER --password=PASSWORD
    Change password