Linux deployment includes some prerequisite verification before accessing the command line and installing the tool.
Procedure
- Obtain the package from the Trend Vision One console.
Important
Each package is specific to your company. After installing the package, the endpoint starts reporting to your company's Trend Vision One console. - Verify that the system is running OpenSSL version 1.0.2 or later by executing
the following command:
openssl version
- Extract the contents of the package by executing the following command:
tar -xvf ${package_file}
- Verify that the signature and issuer of the certificate are valid.
- Execute the following command:
openssl cms -verify -binary -no_check_time -in checksum.p7 -inform DER -verify -content checksum -purpose any -certsout need_to_check.certs -out /dev/null
The expected output isVerification successful
.Note
Use theneed_to_check.certs
certificate generated by the command in the subsequent verification steps. - Verify that the certificate subject is
Trend Micro, Inc
and the issuer isDigiCert Inc
by executing the following command:openssl crl2pkcs7 -nocrl -certfile need_to_check.certs | openssl pkcs7 -print_certs -noout
The output should be:subject=C = US, O = "DigiCert, Inc.", CN = DigiCert Trusted G4 Code Signing RSA4096 SHA384 2021 CA1
issuer=C = US, O = DigiCert Inc, OU = www.digicert.com, CN = DigiCert Trusted Root G4
subject=businessCategory = Private Organization, jurisdictionC = TW, serialNumber = 23310837, C = TW, ST = Taipei City, L = Da\E2\80\99an District, O = "Trend Micro, Inc.", CN = "Trend Micro, Inc."
issuer=C = US, O = "DigiCert, Inc.", CN = DigiCert Trusted G4 Code Signing RSA4096 SHA384 2021 CA1
- Verify that the checksum is valid by executing the following
command:
sha256sum -c checksum
If the system does not return an error, you can begin installing the package.
- Execute the following command:
- Install the agent.
-
To install Trend Vision One Agent without a proxy, execute the following command:
$ ./tmxbc install
-
To install Trend Vision One Agent with a specific proxy on the endpoint, execute the following command:
$ ./tmxbc install --proxyURL <IPv4 or IPv6 address of proxy server>
For example:$ ./tmxbc install --proxyURL http://10.1.1.1:80
Important
This command only supports HTTP proxies and does not support the use of proxy credentials.
For a complete list of available CLI commands, see Linux CLI commands. -