| IKECTL(8) | System Manager's Manual | IKECTL(8) |
ikectl — control
the IKEv2 daemon
ikectl |
[-q] [-s
socket] command
[arg ...] |
The ikectl program controls the
iked(8) daemon and provides
commands to maintain a simple X.509 certificate authority (CA) for IKEv2
peers.
The options are as follows:
The following commands are available to control iked(8):
activepassivecoupledecoupleload
filenamelog
brieflog
verbosemonitorreloadreset
allreset
careset
policyreset
sareset
userreset
id ikeidshow
saIn order to use public key based authentication with IKEv2, a
public key infrastructure (PKI) has to be set up to create and sign the peer
certificates. ikectl includes commands to simplify
maintenance of the PKI and to set up a simple certificate authority (CA) for
iked(8) and its peers.
The following commands are available to control the CA:
ca
name create
[password password]ca
name deleteca
name export
[peer peer]
[password password]ca
name install
[path]ca
name certificate
host create
[server | client |
ocsp]The certificate will be valid for client and server
authentication by default by setting both flags as the extended key
usage in the certificate; this can be restricted using the optional
server or client
argument. If the ocsp argument is specified, the
extended key usage will be set for OCSP signing.
ca
name certificate
host deleteca
name certificate
host export
[peer peer]
[password password]ca
name certificate
host install
[path]ca
name certificate
host revokeshow
ca name
certificates [host]ca
name key
host createca
name key
host install
[path]ca
name key
host deleteca
name key
host import
fileikectl will
include the contents with the ca export
commands.First create a new certificate authority:
# ikectl ca vpn create
Now create the certificates for the VPN peers. The specified hostname, either IP address or FQDN, will be saved in the signed certificate and has to match the IKEv2 identity, or srcid, of the peers:
# ikectl ca vpn certificate 10.1.2.3 create # ikectl ca vpn certificate 10.2.3.4 create # ikectl ca vpn certificate 10.3.4.5 create
It is possible that the host that was used to create the CA is also one of the VPN peers. In this case you can install the peer and CA certificates locally:
# ikectl ca vpn install # ikectl ca vpn certificate 10.1.2.3 install
Now export the individual host key, the certificate and the CA
certificate to each other peer. First run the export
command to create tarballs that include the required files:
# ikectl ca vpn certificate 10.2.3.4 export # ikectl ca vpn certificate 10.3.4.5 export
These commands will produce two tarballs 10.2.3.4.tgz and 10.3.4.5.tgz. Copy these tarballs over to the appropriate peers and extract them to the /etc/iked/ directory:
10.2.3.4# tar -C /etc/iked -xzpf 10.2.3.4.tgz 10.3.4.5# tar -C /etc/iked -xzpf 10.3.4.5.tgz
ikectl will also create
‘zip’ archives 10.2.3.4.zip and 10.3.4.5.zip in addition to
the tarballs if the zip tool is found in
/usr/local/bin/zip. These archives can be exported
to peers running Windows and will include the certificates in a format that
is supported by the OS. The zip tool can be installed from the
OpenBSD packages or ports collection before running
the export commands, see
packages(7) for more
information. For example:
# pkg_add zip
The ikectl program first appeared in
OpenBSD 4.8.
The ikectl program was written by
Reyk Floeter
<reyk@openbsd.org>
and
Jonathan Gray
<jsg@openbsd.org>.
For ease of use, the ca commands maintain
all peers' private keys on the CA machine. In contrast to a
‘real’ CA, it does not support signing of public keys that
have been imported from peers that do not want to expose their private keys
to the CA.
| March 31, 2022 | openbsd |