Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. crt.sh | example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.
My domain is:
I ran this command: certbot certonly --standalone
It produced this output:
Fetching http://example.com/.well-known/acme-challenge/23D9uZ5nC6zDTHxfY-IXMs4eINZkzgWFGYBlpuskJNg: Timeout during connect (likely firewall problem)
Hint: The Certificate Authority failed to download the challenge files from the temporary standalone webserver started by Certbot on port 80. Ensure that the listed domains point to this machine and that it can accept inbound connections from the internet.
My web server is (include version): IIS
The operating system my web server runs on is (include version): Windows Server 2019
My hosting provider, if applicable, is: Private Server
I can login to a root shell on my machine (yes or no, or I don't know): Yes
I'm using a control panel to manage my site (no, or provide the name and version of the control panel): Yes
The version of my client is (e.g. output of certbot --version
or certbot-auto --version
if you're using Certbot): certbot 1.24.0
We are using a private web page that is only accessed between our internal offices using a Site To Site VPN and allowing an external vendor using Firewall ACL. The message I get when running Certbot is:
Fetching http://example.com/.well-known/acme-challenge/23D9uZ5nC6zDTHxfY-IXMs4eINZkzgWFGYBlpuskJNg: Timeout during connect (likely firewall problem)
Hint: The Certificate Authority failed to download the challenge files from the temporary standalone webserver started by Certbot on port 80. Ensure that the listed domains point to this machine and that it can accept inbound connections from the internet.
Some challenges have failed.
So looking at the above message it looks like it is trying to communicate over port 80. I did a Packet Capture and I do not see any traffic going over port 80, only port 443 to IP 172.65.32.248. So I added a Firewall rule to allow this server to communicate to IP 172.65.32.248 over port 80 and 443 but I am still receiving the same error. I checked the log file and I see:
"type": "http-01",
"status": "invalid",
"error": {
"type": "urn:ietf:params:acme:error:connection",
"detail": "XX.XX.XX.XX: Fetching http://example.com/.well-known/acme-challenge/sMYM6SfVEVVPAi1_9z8KI3Objrx3Sn-MNGNxou21ZFw: Timeout during connect (likely firewall problem)",
"status": 400
},
"url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/117829159416/2q05sw",
"token": "sMYM6SfVEVVPAi1_9z8KI3Objrx3Sn-MNGNxou21ZFw",
"validationRecord": [
{
"url": "http://example.com/.well-known/acme-challenge/sMYM6SfVEVVPAi1_9z8KI3Objrx3Sn-MNGNxou21ZFw",
"hostname": "example.com",
"port": "80",
"addressesResolved": [
I also see:
2022-06-09 08:47:56,600:DEBUG:acme.client:Storing nonce: 0102dd37En-oliN7cXMUYgj3F_hDTdP5B2HGC-0o9utoyWg
2022-06-09 08:47:56,601:INFO:certbot._internal.auth_handler:Challenge failed for domain example.com
2022-06-09 08:47:56,601:INFO:certbot._internal.auth_handler:http-01 challenge for example.com
2022-06-09 08:47:56,602:DEBUG:certbot._internal.display.obj:Notifying user:
Certbot failed to authenticate some domains (authenticator: standalone). The Certificate Authority reported these problems:
Domain: example.com
Type: connection
Detail: XX.XX.XX.XX: Fetching http://example.com/.well-known/acme-challenge/sMYM6SfVEVVPAi1_9z8KI3Objrx3Sn-MNGNxou21ZFw: Timeout during connect (likely firewall problem)
Hint: The Certificate Authority failed to download the challenge files from the temporary standalone webserver started by Certbot on port 80. Ensure that the listed domains point to this machine and that it can accept inbound connections from the internet
So going by the log, it shows it is trying to communicate over port 80 but I do not see any packets using port 80 in the packet capture even after I allowed IP 172.65.32.248 port 80 and 443 in the Firewall ACL.
I am new to Lets Encrypt and Certbot so I appreciate the help. Thanks