Network Management Setup - jacob-dinapoli/tech-journal GitHub Wiki
Prerequisites
- Network web01 with an IP of 10.0.5.200, give it a hostname, and add a named sudo user called "yourname"
- Make sure you have DNS Entries on ad01, web01, and fw01 Configure fw01's SNMP Service
- locate to pfsense on mgmt
-http://10.0.5.2
- click snmp services and follow the lab for all the right protocols Configure nmon02
- Do the works, IP, gateway, dns, hostname, records
- download snmp on nmon02
- run command:
- sudo yum install net-snmp-utils
- download on web01
- systemctl enable snmp
- systemctl start snmp
- run the command:
- nslookup 10.0.5.2
- snmpwalk -Os -c SYS265 -v2c fw01-jacob system Install snmpd on web01
- run the following command:
- sudo yum install net-snmp-utils net-snmp
- make a copy of the /etc/snmp/snmpd.conf file
- within the new file pour in the contents below:
- com2sec myNetwork 10.0.5.0/24 SYS265
- group myROGroup v2c myNetwork
- view all included .1 80
- access myROGroup "" any noauth exact all none none
- within the new file pour in the contents below:
- enable and start snmpd service
- allow port 161/udp on firewall
- firewall-cmd --zone=public --add-port=161/udp --permanent
- run snmpwalk command on nmon02
- snmpwalk -Os -c SYS265 -v2c web01-jacob system Install SNMP service on AD01
- on mgmt right click on ad01 server
- click the add roles and feautures
- add the snmp service Install SNMP tools on mgmt01
- do the same thing as above Enable Remote Management on AD01
- Go into powershell on mgmt and type the following command:
- Set-NetFirewallRule -DisplayGroup "Remote Event Log Management" -Enabled True SNMP Service Security Properties on AD01
- right click on ad01 and choose computer management
- go down to services and applications
- go into SNMP service properties and add the community string (SYS265)