extensões de arquivo OpenVPN CCD

1

Eu configurei um servidor OpenVPN no Windows, tudo está funcionando bem. Eu quero que meus clientes OpenVPN se conectem com um endereço IP predeterminado. Com a leitura / pesquisa eu entendo isso é empurrado para fora através de um arquivo na pasta CCD no servidor.

Minha pergunta é bastante simples: No diretório OpenVPN / Config / CCD, qual é a extensão do arquivo que é criado? Nenhum tutorial especifica.

user1. user2.

Obrigado,

    
por UniqueTurbo 08.07.2018 / 13:22

1 resposta

1

Não há extensão de arquivo, o nome do arquivo deve simplesmente corresponder ao nome do Common Name (CN) no certificado apresentado pelo cliente.

Ou seja, se o CN for foo , o nome do arquivo será foo .

Veja a seção do CCD no manual :

--client-config-dir dir
Specify a directory dir for custom client config files. After a connecting client has been authenticated, OpenVPN will look in this directory for a file having the same name as the client's X509 common name. If a matching file exists, it will be opened and parsed for client-specific configuration options. If no matching file is found, OpenVPN will instead try to open and parse a default file called "DEFAULT", which may be provided but is not required. Note that the configuration files must be readable by the OpenVPN process after it has dropped it's root privileges.

This file can specify a fixed IP address for a given client using --ifconfig-push, as well as fixed subnets owned by the client using --iroute.

One of the useful properties of this option is that it allows client configuration files to be conveniently created, edited, or removed while the server is live, without needing to restart the server.

The following options are legal in a client-specific context: --push, --push-reset, --push-remove, --iroute, --ifconfig-push, and --config.

    
por 08.07.2018 / 13:34