Uniform certificate installer: הבדלים בין גרסאות בדף
DovidStroh (שיחה | תרומות) (הסרת כל התוכן מהדף) תגית: ריקון |
DovidStroh (שיחה | תרומות) |
||
| שורה 1: | שורה 1: | ||
| + | <big>'''Installation Guides:'''</big> | ||
| + | === Windows Operating System: === | ||
| + | ==== Standard Installation: ==== | ||
| + | [[Standard certificate installer|Click here to install the certificate using the standard method]] | ||
| + | |||
| + | {{Bootstrap alert-danger| The certificate must be installed separately on every computer connected to NetFree!}} | ||
| + | |||
| + | ==== Manual Installation: ==== | ||
| + | If the standard installation does not work, try installing the certificates manually.<br> | ||
| + | Follow the instructions in the manual installation guide:<br> | ||
| + | [[Installing certificate on computer manually - new]] | ||
| + | |||
| + | ---- | ||
| + | |||
| + | === Linux: === | ||
| + | ==== General Installation on Linux: ==== | ||
| + | Use the following command for these certificates: | ||
| + | <pre dir="ltr"> | ||
| + | curl -sL https://netfree.link/dl/unix-ca2.sh | sudo sh | ||
| + | </pre> | ||
| + | |||
| + | Sometimes the <code>curl</code> command is not installed on the system, and in that case the command will fail with the message: | ||
| + | <code>Command 'curl' not found</code>. | ||
| + | To fix this, install curl using: | ||
| + | <pre dir="ltr"> | ||
| + | sudo sh -c "(apt update && apt install -y curl) || yum install -y curl || apk add curl" | ||
| + | </pre> | ||
| + | Then run the original command again. | ||
| + | |||
| + | ==== Installation in Chrome, Edge, Firefox on Linux: ==== | ||
| + | Follow the regular guides:<br> | ||
| + | [[Installation of certificate in Chrome browser in Linux]]<br> | ||
| + | [[Installation of certificate in Firefox browser]]<br> | ||
| + | [[Installation of certificate in Microsoft Edge on Linux]]<br> | ||
| + | |||
| + | However, you must install all 5 certificates from the [[#Certificate List:|list below]], not from the standard link in those guides. | ||
| + | |||
| + | ==== Installation in Docker: ==== | ||
| + | Follow the regular guide [[Installation of certificate in Docker]] | ||
| + | But change the certificate source URL to: | ||
| + | https://netfree.link/dl/unix-ca2.sh | ||
| + | |||
| + | ===== Minikube: ===== | ||
| + | Use the following commands: | ||
| + | minikube ssh | ||
| + | curl -sL http://netfree.link/upload-file/fff87fd14b8481780d229f2fb1b1e382ba42a2ab | sudo -E bash - | ||
| + | sudo /etc/init.d/docker restart | ||
| + | exit | ||
| + | |||
| + | ---- | ||
| + | |||
| + | === Mac Computers (macOS): === | ||
| + | Search for an application called "Terminal", open it, and paste the following command: | ||
| + | <pre dir="ltr"> | ||
| + | curl -sL https://netfree.link/cacert/united/macos.zsh | zsh | ||
| + | </pre> | ||
| + | or | ||
| + | <pre dir="ltr"> | ||
| + | curl -sL https://netfree.link/cacert/united/macos.zsh | sudo zsh | ||
| + | </pre> | ||
| + | |||
| + | ---- | ||
| + | |||
| + | === Android and Emulators: === | ||
| + | ==== Simple Installation: ==== | ||
| + | Install according to the guides listed here: [[Security certificate]]<br> | ||
| + | However, you must install all 5 certificates from the [[#Certificate List:|list below]], not from the standard link in the guide. | ||
| + | |||
| + | ==== Installation on Emulators and Rooted Android Devices: ==== | ||
| + | |||
| + | ===== Using Magisk Module ===== | ||
| + | If you are using the Magisk module for security certificates and your Android version is below 14.0, download the new module version from here: | ||
| + | https://github.com/Sivan22/ca-netfree/releases/download/v6.0/Netfree-Root-CAs.zip | ||
| + | |||
| + | Open the Magisk app → Modules, remove the existing module. | ||
| + | Then install the downloaded file from storage and reboot the device. | ||
| + | |||
| + | If your device is Android 14.0 or higher, download this file: | ||
| + | https://github.com/Sivan22/ca-netfree-android14/releases/download/1.2/Netfree-CAs-Android-14.zip | ||
| + | and follow the same instructions above. | ||
| + | |||
| + | ===== Manual Installation ===== | ||
| + | Download the following file and extract the 5 certificates from it:<br> | ||
| + | https://netfree.link/cacert/united/android.zip | ||
| + | |||
| + | Place them in the system certificates directory | ||
| + | (usually: system/etc/security/cacerts/) | ||
| + | |||
| + | ---- | ||
| + | |||
| + | === Certificate List: === | ||
| + | https://netfree.link/cacert/united/root_ca_rsa.crt <br> | ||
| + | https://netfree.link/cacert/united/root_ca_ed25519.crt <br> | ||
| + | https://netfree.link/cacert/united/root_ca_prime256v1.crt <br> | ||
| + | https://netfree.link/cacert/united/root_ca_secp384r1.crt <br> | ||
| + | https://netfree.link/cacert/united/root_ca_rsa_2037.crt <br> | ||
| + | |||
| + | ==== Bundle file of all certificates for use in various applications: ==== | ||
| + | https://netfree.link/cacert/united/root_ca_bundle.crt | ||
| + | |||
| + | <big>'''Certificate Validation Test:'''</big><br> | ||
| + | After installation (and restarting your browser), make sure the installation was successful.<br> | ||
| + | Go to this link:<br> | ||
| + | https://testnewcert.internal.netfree.link/user/0<br> | ||
| + | |||
| + | If you receive a security error (for example: [https://untrusted-root.badssl.com/ click here]), then the certificate was not installed correctly. | ||
גרסה מ־22:07, 22 בינואר 2026
Installation Guides:
Windows Operating System:
Standard Installation:
Click here to install the certificate using the standard method
❕ The certificate must be installed separately on every computer connected to NetFree!
Manual Installation:
If the standard installation does not work, try installing the certificates manually.
Follow the instructions in the manual installation guide:
Installing certificate on computer manually - new
Linux:
General Installation on Linux:
Use the following command for these certificates:
curl -sL https://netfree.link/dl/unix-ca2.sh | sudo sh
Sometimes the curl command is not installed on the system, and in that case the command will fail with the message:
Command 'curl' not found.
To fix this, install curl using:
sudo sh -c "(apt update && apt install -y curl) || yum install -y curl || apk add curl"
Then run the original command again.
Installation in Chrome, Edge, Firefox on Linux:
Follow the regular guides:
Installation of certificate in Chrome browser in Linux
Installation of certificate in Firefox browser
Installation of certificate in Microsoft Edge on Linux
However, you must install all 5 certificates from the list below, not from the standard link in those guides.
Installation in Docker:
Follow the regular guide Installation of certificate in Docker But change the certificate source URL to:
https://netfree.link/dl/unix-ca2.sh
Minikube:
Use the following commands:
minikube ssh curl -sL http://netfree.link/upload-file/fff87fd14b8481780d229f2fb1b1e382ba42a2ab | sudo -E bash - sudo /etc/init.d/docker restart exit
Mac Computers (macOS):
Search for an application called "Terminal", open it, and paste the following command:
curl -sL https://netfree.link/cacert/united/macos.zsh | zsh
or
curl -sL https://netfree.link/cacert/united/macos.zsh | sudo zsh
Android and Emulators:
Simple Installation:
Install according to the guides listed here: Security certificate
However, you must install all 5 certificates from the list below, not from the standard link in the guide.
Installation on Emulators and Rooted Android Devices:
Using Magisk Module
If you are using the Magisk module for security certificates and your Android version is below 14.0, download the new module version from here: https://github.com/Sivan22/ca-netfree/releases/download/v6.0/Netfree-Root-CAs.zip
Open the Magisk app → Modules, remove the existing module. Then install the downloaded file from storage and reboot the device.
If your device is Android 14.0 or higher, download this file: https://github.com/Sivan22/ca-netfree-android14/releases/download/1.2/Netfree-CAs-Android-14.zip and follow the same instructions above.
Manual Installation
Download the following file and extract the 5 certificates from it:
https://netfree.link/cacert/united/android.zip
Place them in the system certificates directory (usually: system/etc/security/cacerts/)
Certificate List:
https://netfree.link/cacert/united/root_ca_rsa.crt
https://netfree.link/cacert/united/root_ca_ed25519.crt
https://netfree.link/cacert/united/root_ca_prime256v1.crt
https://netfree.link/cacert/united/root_ca_secp384r1.crt
https://netfree.link/cacert/united/root_ca_rsa_2037.crt
Bundle file of all certificates for use in various applications:
https://netfree.link/cacert/united/root_ca_bundle.crt
Certificate Validation Test:
After installation (and restarting your browser), make sure the installation was successful.
Go to this link:
https://testnewcert.internal.netfree.link/user/0
If you receive a security error (for example: click here), then the certificate was not installed correctly.