...
The Linux Open-AudIT installer will test for and if required, install Open-AudIT's dependencies from your distributions repository. After installing you should run the below to SetUID. This is required for SNMP (UDP 161) detection. This is supported on RedHat/CentOS and Debian/Ubuntu. If you need to manually install Nmap:
...
Code Block | ||
---|---|---|
| ||
sudo yum install nmap
sudo chmod u+s `which nmap` |
For Debian/Ubuntu run (including setting dpkg to remember your override so an apt-get upgrade will not break Open-AudIT).
Code Block | ||
---|---|---|
| ||
sudo apt-get install nmap sudo chmod u+s `which nmap` sudo dpkg-statoverride --list `which nmap` |
...