Available only for Intezer Protect enterprise licenses.
Intezer Protect License Key
A license key is used to deploy the sensor & associate it with your account. The sensor license key is available on the account details page.
Installation
Installing on a Linux machine relevant for both VMs and container hosts.
SSH to the Linux machine you would like to protect (See supported Linux versions) and run the following commands:
Machine With Direct Internet Access
wget -O - https://protect.intezer.com/v2/install?key=<SENSOR_LICENSE_KEY> | sudo sh -s --
Replace the <SENSOR_LICENSE_KEY>
placeholder with your account license key
This automatic installation downloads, installs and configures an RPM/DEB package. This process could be done manually if needed. See manual installation
Proxy Configuration
https_proxy=<PROXY_URL> wget -O - https://protect.intezer.com/v2/install?key=<SENSOR_LICENSE_KEY> | sudo sh -s -- --proxy-url "<PROXY_URL>"
Replace the <SENSOR_LICENSE_KEY>
placeholder with your account license key
Replace the <PROXY_URL>
placeholder with appropriate proxy URL (e.g. http://1.2.3.4:8899)
Proxy With Basic Auth
https_proxy=<PROXY_URL> wget --proxy-user=<PROXY_USER> --proxy-passwd=<PROXY_PASS> -O - https://protect.intezer.com/v2/install?key=<SENSOR_LICENSE_KEY> | sudo sh -s -- --proxy-url "<PROXY_URL>" --proxy-user "<PROXY_USER>" --proxy-pass "<PROXY_PASS>"
Replace the <SENSOR_LICENSE_KEY>
placeholder with your account license key
Replace the placeholders with appropriate proxy details:
<PROXY_URL>
: Proxy URL (e.g. http://1.2.3.4:8899)<PROXY_USER>
: Proxy username<PROXY_PASS>
: Proxy password