Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Note

Before you begin, Armor recommends that you pre-installation information, including firewall rules. To learn more, see Armor Anywhere Agent 3.0 Pre-Installation.

...

  1. In the Armor Management Portal (AMP), in the left-side navigation, click Infrastructure
  2. Click Virtual Machines
  3. Hover over the plus ( + ) icon, and then click the Anywhere Agent  icon.
    • If you don't have any agents listed, then click Add an Armor Agent. 
  4. Copy your license key. You will need this information in a later step.
  5. Select your operating system (Linux or Windows).  

...

Step 2: Install the Armor Anywhere Agent

Armor recommends installing the Armor Agent with all Security Services. Run the command to install the Armor Anywhere Agent with all Security Services. 

Code Block
themeMidnight
sudo curl -sSL https://agent.armor.com/latest/armor_agent.sh | sudo bash /dev/stdin -l AAAA1-AAAA1-AAAA1-AAAA1-AAAA1 -r us-west(region) -f
Tip

You must replace

  • AAAA1-AAAA1-AAAA1-AAAA1-AAAA1 with your specific license key

...

Code Block
themeMidnight
sudo curl -sSL https://agent.armor.com/latest/armor_agent.sh | sudo bash /dev/stdin -l AAAA1-AAAA1-AAAA1-AAAA1-AAAA1 -r us-west(region)
Tip

You must replace

  • AAAA1-AAAA1-AAAA1-AAAA1-AAAA1 with your specific license key

...

Note

Step 1: Install Trend Sub-Agent:

Code Block
themeMidnight
/opt/armor/armor trend install


Step 2: Turn On File Integrity Monitoring in "Auto-Apply" Mode (This automatically applies FIM rules identified in Recommendation Scans)

Code Block
themeMidnight
/opt/armor/armor fim on auto-apply-recommendations=on


Step 3: Turn On Intrusion Prevention Service in "Auto-Apply" Mode (This automatically applies IPS rules identified in Recommendation Scans)

Option 1: Detect Mode 

Code Block
themeMidnight
/opt/armor/armor ips detect auto-apply-recommendations=on

Option 2: Prevent Mode

Code Block
themeMidnight
/opt/armor/armor ips prevent auto-apply-recommendations=on


Step 4: Install Malware Protection (Anti-Virus)

Code Block
themeMidnight
/opt/armor/armor av on


Step 5: Install Vulnerability Scanning

Code Block
themeMidnight
/opt/armor/armor vuln install


Step 6: Install Logging

Code Block
themeMidnight
/opt/armor/armor logging install


Step 7: Run a Recommendation Scan (This runs the initial Recommendation Scan to apply the baseline rules for FIM and IPS)

Code Block
themeMidnight
/opt/armor/armor trend recommendation-scan


Step 8: Turn On Ongoing Recommendation Scans (This automatically runs Recommendation Scans every 7 days. All FIM and IPS rule changes are automatically applied if you followed Steps 2 and 3.)

Code Block
themeMidnight
/opt/armor/armor trend ongoing-recommendation-scan on

...