This CA root certificate is not trusted. to enable trust, install this certificate in the trusted root certification authorities store

This CA root certificate is not trusted. to enable trust, install this certificate in the trusted root certification authorities store Техника


Posted by Krrmt 2020-02-26T15:33:08Z

I can not access a websites only in one computer with the error 

«this ca root certificate is not trusted because it is not in the trusted root certification authorities store»

User: Krrmt

To continue this discussion, please ask a new question.

Avatar of fnillc

I was able to renew a self signing certificate on Exchange 2007 using the console, but I cannot make it trusted. The Exchange box is part of a domain, but the DC doesn’t have SSL enabled so I’m working on the exchange box only. How do I add this cert to the trusted root cert authorities store?

SSL / HTTPS

Avatar of undefined


8/22/2022 — Mon

Suliman Abu Kharroub

I need to add the cert to the trusted root CA on the exchange server itself, not a workstation. I renewed the cert using the Exchange Management Shell on the Exchange box via «Get-ExchangeCertificate -thumbprint «xxx» New-Exchangecertificate». I’m getting the «install this certificate in the trusted root certification authorities store» in the IIS Manager — Default Web Site Properties — View Certificate.

Diregard the previous link. It wasn’t what I thought — sorry.

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.

View this solution by signing up for a free trial.

Members can start a

7-Day free trial

and enjoy unlimited access to the platform.

Thanks Shmoid! your sugestion fix it.

What happens if I run that command and I get prompted to insert a smartcard?..

Thank you so much Shmoid! You just saved my hide.

I faced a similar issue with Comodo certificates recently when developing a script using Ruby. In the end it was that OpenSSL did not have it in the store, even though it looked like it did.

To test this, download all of the Comodo intermediate certs and create a cert bundle something like this (you’ll need to use different cert names depending on what you downloaded):

cat EssentialSSLCA_2.crt ComodoUTNSGCCA.crt UTNAddTrustSGCCA.crt AddTrustExternalCARoot.crt > yourDomain.ca-bundle

Comodo has an article on how to do this.

Once done, try verifying the certificate again using OpenSSL and specifying the cert store on the command line:

openssl verify -untrusted yourDomain.ca-bundle cert.pem

That example was adapted from this Unix and Linux StackExchange article.

Once you’ve determined which certificate it is, it should be possible to add the certificate to the local cert store, which is detailed here for Ubuntu, and is something like:

sudo mkdir /usr/share/ca-certificates/extra

Copy the ‘.crt’ file to the directory

sudo cp foo.crt /usr/share/ca-certificates/extra/foo.crt
sudo dpkg-reconfigure ca-certificates

I am dealing with big problem on multiple workstations in our company. Many Windows 7 computers and one Windows XP computer have all Root CA certificates not trusted so I cannot import new certificate generate by Certification Authority in our Country.

I noticed this problem recently and after two days on google I couldn’t find solution to this.

If I open mmc and select Certificates — > Computer -> Trusted Root Certification Authorities I see all certs on computer but after I check any they show this in General info about Cert:

This CA Root certificate is not trusted because it is not in the Trusted Root Certification Authorities store.

This root certificate appears to be trusted by the remote computer. To ensure this root certificate is valid on the remote computer, verify this root certificate on that computer.

We push only Critical and Security Updates from our wsus server. Affected computers have installed all updates.

We have firewall and don’t allow full access to internet but I tried to give one computer with this issue full access to internet and reboot couple times but that didn’t help.

Screenshots: http://imgur.com/a/HCGWo Opens a new window

#! /bin/bash
set -e
base_folder="$HOME/.acme-development-certs"
start_dir=$PWD
if test -f "$base_folder/leaf_cert/acme.pem"; then echo "ACME development certs already created: skipping CA and cert creation." exit 0
fi
mkdir -p $base_folder
cd $base_folder
# create root cert
mkdir -p root_ca/certs root_ca/crl root_ca/newcerts root_ca/private
echo 1000 > root_ca/serial
touch root_ca/index.txt root_ca/index.txt.attr
echo '
[ ca ]
default_ca = CA_default
[ CA_default ]
dir = root_ca # Where everything is kept
certs = $dir/certs # Where the issued certs are kept
crl_dir = $dir/crl # Where the issued crl are kept
database = $dir/index.txt # database index file.
new_certs_dir = $dir/newcerts # default place for new certs.
certificate = $dir/cacert.pem # The CA certificate
serial = $dir/serial # The current serial number
private_key = $dir/private/ca.key # The private key
nameopt = default_ca
certopt = default_ca
policy = policy_match
default_days = 3650
default_md = sha512
copy_extensions = copy
[ policy_match ]
countryName = optional
stateOrProvinceName = optional
organizationName = optional
organizationalUnitName = optional
commonName = supplied
emailAddress = optional
[req]
utf8 = yes
string_mask = utf8only
x509_extensions = v3_req
distinguished_name = req_distinguished_name
prompt = no
[req_distinguished_name]
CN = ACME Development Root CA
O = ACME
OU = ACME Engineering
[v3_req]
basicConstraints = critical,CA:TRUE
keyUsage = critical,keyCertSign,cRLSign
subjectKeyIdentifier = hash
' > root_ca/openssl.conf
openssl genrsa -out root_ca/private/ca.key 2048
openssl req -config root_ca/openssl.conf -new -x509 -days 3650 -key root_ca/private/ca.key -sha256 -extensions v3_req -out root_ca/certs/ca.crt
openssl x509 -in root_ca/certs/ca.crt -out root_ca/certs/ca.pem -outform PEM
# create leaf cert
mkdir leaf_cert
echo '
[ req ]Development
default_bits = 2048
prompt = no
default_md = sha256
req_extensions = req_ext
distinguished_name = dn
[ dn ]
CN = ACME
O = ACME
OU = ACME Engineering
[ req_ext ]
basicConstraints = CA:FALSE
keyUsage = nonRepudiation, digitalSignature, keyEncipherment
subjectAltName = @alt_names
[ alt_names ]
DNS.1 = acme.com
DNS.2 = *.acme.com
DNS.3 = *.sub.acme.com
DNS.4 = acme2.com
DNS.5 = *.acme2.com
DNS.6 = *.sub.acme2.com
' > leaf_cert/openssl.conf
openssl req -new -keyout leaf_cert/acme.key -out leaf_cert/acme.csr -days 3650 -nodes -newkey rsa:2048 -config leaf_cert/openssl.conf
openssl ca -batch -config root_ca/openssl.conf -keyfile root_ca/private/ca.key -cert root_ca/certs/ca.crt -out leaf_cert/acme.crt -infiles leaf_cert/acme.csr
openssl x509 -in leaf_cert/acme.crt -out leaf_cert/acme-leaf.pem -outform PEM
cat leaf_cert/acme-leaf.pem root_ca/certs/ca.pem > leaf_cert/acme.pem
# trust new CA at the OS level
sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain $base_folder/root_ca/certs/ca.pem
# serve HTTPS using the new cert
NGINX_PATH="/usr/local/etc/nginx"
cp leaf_cert/acme.pem $NGINX_PATH/star_acme_com.pem
cp leaf_cert/acme.key $NGINX_PATH/star_acme_com.key
sudo brew services restart nginx

I tried various combinations of parameters for the two .cfg and I also tried to add the cert manually to the keychain but nothing to do:

Chrome rejects it with:

This site can’t provide a secure connection

sub.acme.com doesn’t adhere to security standards.


  • Safari and curl are fine with the certificate. Firefox has it’s own list of CAs and is okay after I add the root CA .pem to the Authorities section of it’s internal list.
  • Nginx is configured to use the cert $NGINX_PATH/star_acme_com.key and it’s probably not the issue as it works perfectly with a paid one.
  • In Chrome dev tools, in the security tabs, it displays Certificate - valid and trusted

Output of openssl x509 -noout -text -in <cert>

  • for the cert
Certificate: Data: Version: 1 (0x0) Serial Number: 4096 (0x1000) Signature Algorithm: sha512WithRSAEncryption Issuer: CN=ACME Development Root CA, O=ACME, OU=ACME Engineering Validity Not Before: Jun 7 10:16:14 2019 GMT Not After : Jun 4 10:16:14 2029 GMT Subject: O=ACME, OU=ACME Engineering, CN=ACME Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (2048 bit) Modulus: *** Exponent: 65537 (0x10001) X509v3 extensions: X509v3 Basic Constraints: CA:FALSE X509v3 Key Usage: Digital Signature, Non Repudiation, Key Encipherment X509v3 Subject Alternative Name: DNS:acme.com, DNS:*.acme.com, DNS:*.sub.acme.com, DNS:acme2.com, DNS:*.acme2.com, DNS:*.sub.acme2.com Signature Algorithm: sha512WithRSAEncryption ***
  • for the root CA
Certificate: Data: Version: 3 (0x2) Serial Number: 11358523417566447898 (0x9da194de4501091a) Signature Algorithm: sha256WithRSAEncryption Issuer: CN=ACME Development Root CA, O=ACME, OU=ACME Engineering Validity Not Before: Jun 7 10:16:13 2019 GMT Not After : Jun 4 10:16:13 2029 GMT Subject: CN=ACME Development Root CA, O=ACME, OU=ACME Engineering Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (2048 bit) Modulus: *** Exponent: 65537 (0x10001) X509v3 extensions: X509v3 Basic Constraints: critical CA:TRUE X509v3 Key Usage: critical Certificate Sign, CRL Sign X509v3 Subject Key Identifier: 1F:50:BB:C9:85:C4:DB:71:46:E3:0E:B4:B5:48:B4:CF:10:C2:27:54 Signature Algorithm: sha256WithRSAEncryption ***

I always get this error when connecting to my computer, whether it be locally or over the internet. This obviously isn’t great and I would much rather implement kerberos so I can prove the identity of the computer I am connecting to. How should I best fix this issue?

Дополнительно:  Making and explaining the root file system tree

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

16 minutes ago, ThatFlashCat said:

I always get this error when connecting to my computer, whether it be locally or over the internet. This obviously isn’t great and I would much rather implement kerberos so I can prove the identity of the computer I am connecting to. How should I best fix this issue?

Have you verified that your system time matches the actual time in your timezone? If so, we need more details when it comes to exactly what you’re connecting to in order to help, including what certificate exactly is not trusted. Does this happen when connecting to websites, or just when trying to connect to your PC? And how do you mean «when connecting to your PC» — are you remote desktoping using MSTSC / RDP, SSH, Telnet, or another protocol?

Link to comment
Share on other sites

Link to post
Share on other sites

  • Author

4 minutes ago, kirashi said:

Have you verified that your system time matches the actual time in your timezone? If so, we need more details when it comes to exactly what you’re connecting to in order to help, including what certificate exactly is not trusted. Does this happen when connecting to websites, or just when trying to connect to your PC? And how do you mean «when connecting to your PC» — are you remote desktoping using MSTSC / RDP, SSH, Telnet, or another protocol?

So sorry, I thought I clarified that it was RDP.  This is the error in question, though I am connecting from the computer I usually connect to. The error always appears regardless of what computer is the client or server, but I can always click past it: 

image.png

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

3 minutes ago, ThatFlashCat said:

So sorry, I thought I clarified that it was RDP.  This is the error in question, though I am connecting from the computer I usually connect to. The error always appears regardless of what computer is the client or server, but I can always click past it: 

Link to comment
Share on other sites

Link to post
Share on other sites

  • Author

2 minutes ago, kirashi said:

Right, but if I connect to my work computer the identity is verified by kerberos automatically, though there is a  gateway server involved. I took a network security class recently so I know enough to recognize terms but don’t remember all of the details. lol

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

2 minutes ago, ThatFlashCat said:

Right, but if I connect to my work computer the identity is verified by kerberos automatically, though there is a  gateway server involved. I took a network security class recently so I know enough to recognize terms but don’t remember all of the details. lol

I know nothing about Kerberos, so won’t be much help there, but I’d imagine you could setup your own Kerberos server to verify your own computers.

Link to comment
Share on other sites

Link to post
Share on other sites

  • Author

2 minutes ago, kirashi said:

I know nothing about Kerberos, so won’t be much help there, but I’d imagine you could setup your own Kerberos server to verify your own computers.

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Дополнительно:  «Ошибка обновления загрузчика. Подключиться заново?» — Решение проблемы в Genshin Impact

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

Honestly, I just tick «Don’t ask for connections to this computer again»

And get on with it

Edit: Sorry this doesn’t help your post directly, but it will atleast stop the pop up every single time

Edit: You could also try installing like Let’s Encrypt on a Pi and getting a free SSL for a domain you own and then point the domain to your IP and have it all be secure to stop the Man in the middle attacks

Link to comment
Share on other sites

Link to post
Share on other sites

  • Author

6 minutes ago, davehkiin said:

Honestly, I just tick «Don’t ask for connections to this computer again»

And get on with it

Edit: Sorry this doesn’t help your post directly, but it will atleast stop the pop up every single time

Edit: You could also try installing like Let’s Encrypt on a Pi and getting a free SSL for a domain you own and then point the domain to your IP and have it all be secure to stop the Man in the middle attacks

The popup itself doesn’t annoy me, it’s what it means that annoys me. 

That’s a good idea actually, I’m using a Pi 2 currently for an OpenVPN server but I often connect to my computer directly.

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

6 minutes ago, ThatFlashCat said:

The popup itself doesn’t annoy me, it’s what it means that annoys me. 

That’s a good idea actually, I’m using a Pi 2 currently for an OpenVPN server but I often connect to my computer directly.

Yeah, personally I do this:

Let’s Encrypt rPi 3b+

Windows Server with NO-IP DUC

DNS Set to NO-IP Free Address

The Duc Updates the no-ip address, in turn keeping my nicer subdomain ready and always up to date

See how it goes, Digital Ocean have some great resources for setting up SSL

Link to comment
Share on other sites

Link to post
Share on other sites

1 hour ago, ThatFlashCat said:

The popup itself doesn’t annoy me, it’s what it means that annoys me. 

That’s a good idea actually, I’m using a Pi 2 currently for an OpenVPN server but I often connect to my computer directly.

There error you’re getting is because the SSL certificate is self signed. Meaning it hasn’t been signed by a trusted CA. Majority of remote SSL certificates are the this. If you want. You can install the certificate in the Trusted Root Certificate Authority folder or like everyone said. Click the «don’t ask me again»

Link to comment
Share on other sites

Link to post
Share on other sites

  • Author

1 hour ago, davehkiin said:

Yeah, personally I do this:

Let’s Encrypt rPi 3b+

Windows Server with NO-IP DUC

DNS Set to NO-IP Free Address

The Duc Updates the no-ip address, in turn keeping my nicer subdomain ready and always up to date

See how it goes, Digital Ocean have some great resources for setting up SSL

That’s similar to what I have already with my Pi 2 B for my VPN, it puts a no-ip domain in each certificate I issue for a device and then one of my computers (I believe it’s my t3500 workstation) is running the update client, though I have been monitoring it and the IP has not changed since I started monitoring it. This said, I really only need to add the SSL certificate.

And to clarify, I have opened two separate ports and the VPN server is unrelated to the issue here. If I were using my VPN, I would not worry about the remote identity as only local computers would be accessible and I would connect with the internal IP instead. This thread is specifically related to connecting to my computer without the VPN.

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

Just set the IP to a domain and SSL the domain

Link to comment
Share on other sites

Link to post
Share on other sites

  • Author

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

Has been working for me

Now bear in mind i’m no security expert, just a web dev with some free time and limited knowledge but has worked fine for me when I need to remote in from Work as I just straight RDP without VPN Tunelling (which I believe to be the Ideal way since then you don’t open any ports, of which RDP is a vulnerable port)

Let me know how you get on

Link to comment
Share on other sites

Link to post
Share on other sites

  • Author

6 minutes ago, davehkiin said:

Has been working for me

Now bear in mind i’m no security expert, just a web dev with some free time and limited knowledge but has worked fine for me when I need to remote in from Work as I just straight RDP without VPN Tunelling (which I believe to be the Ideal way since then you don’t open any ports, of which RDP is a vulnerable port)

Let me know how you get on

I use obscure ports for both my VPN and RDP which is at least a «slight» help for security.

Дополнительно:  Восстановление удаленных файлов на андроид внутренней памяти без root прав

Edit: was there a specific guide you used?

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

Link to comment
Share on other sites

Link to post
Share on other sites

  • Author

3 hours ago, davehkiin said:

Thank you but how is the SSL portion useful for me? I obviously won’t have an apache server running: 

Certbot needs to be able to find the correct virtual host in your Apache configuration for it to automatically configure SSL. Specifically, it does this by looking for a ServerName directive that matches the domain you request a certificate for.

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

Windows like many others has a list of trusted certificate authorities which can sign certificates which you trust. Your PC doesn’t have one.

Unless you imprement an RD Gateway (which you asked about in another thread) you’d have to change the hostname of your machine to one with real domain (like mypc.domain.tld) and buy a certificate for that.

BUT, this is not an ERROR this is a warning and won’t change the performance in any way, shape or form other than you’d have to check a box and click yes once per connecting machine.

Link to comment
Share on other sites

Link to post
Share on other sites

  • Author

6 hours ago, Acedia said:

Unless you imprement an RD Gateway (which you asked about in another thread) you’d have to change the hostname of your machine to one with real domain (like mypc.domain.tld) and buy a certificate for that.

I’m not opposed to using a gateway server but I have yet to find much about running one on a raspberry pi. I guess it’s focused on windows server implementations?

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

17 hours ago, ThatFlashCat said:

I’m not opposed to using a gateway server but I have yet to find much about running one on a raspberry pi. I guess it’s focused on windows server implementations?

Link to comment
Share on other sites

Link to post
Share on other sites

  • Author

7 hours ago, Acedia said:

I guess I could test with windows server installed in a VM.

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

  • Author

I’m actually going to try this now. So you’re saying to SSL the domain (I’ve been using certbot at work actually so I have more knowledge than when I made this thread) and make sure the pc has the same hostname, but how do I change what certificate RDP presents when a connection is made? By default it will only use the self-signed one.

CPU: AMD 1700x Cooler: Corsair H100i V2 Asus Crosshair VI Hero RAM: 4 * 8GB G.Skill RGB DDR4 Graphics: EVGA GTX 1080 Ti SC2 Storage: Samsung 960 EVO 500GB Case: Fractal Design Meshify C PSU: EVGA 750w G3 Monitors: Dell SG2716DG +  2x Dell U2515H

CPU: Intel Xeon E5-2650 V2 Cooler: Some noctua cooler  Supermicro X9 SRL-F RAM: 8 * 8GB Samsung DDR3 ECC Storage: 6 * 4TB Seagate 7200 RPM RAIDZ2 Controller: LSI H220 Case: Phanteks Enthoo Pro PSU: EVGA 650w G3

Phone: iPhone 6S 32 GB Space Grey

Link to comment
Share on other sites

Link to post
Share on other sites

Read these next.

  • Curated Snap! -- Ingenuity Calls Home, Swatting Database, Faster Fiber, Flying Cars

    Snap! — Ingenuity Calls Home, Swatting Database, Faster Fiber, Flying Cars

  • Curated Spark! Pro Series - 3rd July 2023

    Spark! Pro Series — 3rd July 2023

  • Curated Nerd Journey # 222 - A Closer Look at John’s Recent Interview Process

    Nerd Journey # 222 — A Closer Look at John’s Recent Interview Process

    Best Practices & General IT

  • Curated What do Database Administrators / IT People DO all day?

    What do Database Administrators / IT People DO all day?

  • Curated SpiceQuest July (2023) -- Of Space and Simplicity

    SpiceQuest July (2023) — Of Space and Simplicity

Sign in

Already have an account? Sign in here.

Sign In Now

Create an account or sign in to comment

You need to be a member in order to leave a comment

Оцените статью
Master Hi-technology