#Download and install the ova https://www.nagios.com/downloads/nagios-log-server/vmware/ #Initial setup https://assets.nagios.com/downloads/nagios-log-server/docs/Installing-Nagios-Log-Server-with-VMware-Workstation-Player.pdf #Run this command if there is an issue with DHCP allocation /etc/sysconfig/network-scripts/ifup-eth eth0 #make things easy yum install nano #Set static IP nano /etc/sysconfig/network-scripts/ifcfg-eth0 So when you open up that file, you'll want to change: BOOTPROTO=dhcp To: BOOTPROTO=static Now you'll need to add the entries to set not only the IP address, but the netmask, gateway, and DNS addresses. At the bottom of that file, add the following: IPADDR=192.168.1.200 NETMASK=255.255.255.0 GATEWAY=192.168.1.1 DNS1=1.0.0.1 DNS2=1.1.1.1 DNS3=8.8.4.4 |
FOR DUMPS SAKE >