« Back to Product

Documentation

Server Socket

Require: IP-Symcon >= 4.1

The server socket opens a port for all networks on the server. The port can then be listened on and data can be received on it.

Only a click on "Apply" saves the settings and then the port is opened.

If SSL is activated, the certificate and the private key must be specified.

Configuration page

Create certificate

Using OpenSSL, certificates and private keys can be created.

// Generate a private key
    openssl genrsa -out pk.pem 1024

    // Create a certificate signing request
    openssl req -new -key pk.pem -out req.csr

    // Self-sign the csr
    openssl x509 -req -days 3650 -in req.csr -signkey pk.pem -out cert.pem
Warning

The certificate for the certification authority is optional.

Any questions?