-2

I've setup a guest network behind the same public IP as a home web server running Seafile, communication between it and the clients is secured by the HTTPS protocol using a certificate signed by a local root CA.

How can I stop clients on the guest network from issuing certificates for the web server's domain using a service like Let's Encrypt on my behalf? I don't know how the validation process works for those sort of services, but I'd imagine that you need to be a able to send a receive packets from that address in the first place.

Thanks!

Facundo
  • 33

1 Answers1

1

If you want to block letsencrypt (or any CA) issuing for you domain, then publish a CAA record within your domain.

So if you want to block all CAs you could add a record like

example.com.    IN      CAA     0 issue ";"
Zoredache
  • 20,021