26208. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/14/2018 1:18:38 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

26208.1 Files compared

# Location File Last Modified
1 MCCF_EDI_TAS_Infrastructure.zip\MCCF_EDI_TAS_Infrastructure\mag_sys_build\playbooks snmp.yml Tue Mar 27 23:51:10 2018 UTC
2 MCCF_EDI_TAS_Infrastructure.zip\MCCF_EDI_TAS_Infrastructure\mag_sys_build\playbooks snmp.yml Tue May 8 03:19:09 2018 UTC

26208.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 122
Changed 2 4
Inserted 0 0
Removed 0 0

26208.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

26208.4 Active regular expressions

No regular expressions were active.

26208.5 Comparison detail

  1   # Ansible  Playbook 
  2   # Erik van  Oudheusde PII                            - 28 Sep 2 017
  3   #
  4   #
  5  
  6   ---
  7   - name: SN MP server  installed
  8     hosts: r hel7
  9     become:  yes
  10     tasks:
  11     - name:  latest snm p version  installed
  12       yum:
  13         name : net-snmp
  14         stat e: latest
  15     - name:  Delete exi sting snmp  conf file
  16       file:  path=/etc/ snmp/snmpd .conf
  17         stat e=absent
  18     - name:  Create snm pd.conf
  19       blocki nfile: 
  20         path : /etc/snm p/snmpd.co nf
  21         crea te: yes
  22         back up: yes
  23         mark er: "## {m ark} Added  for VA CR ISP"
  24         owne r: root
  25         grou p: root
  26         mode : 0644
  27         cont ent: |
  28           ## ########## ########## ########## ########## ########## ########## ########## #######
  29           #
  30           #  snmpd.conf :
  31           #    An initi al configu ration fil e for conf iguring th e ucd-snmp  snmpd age nt.
  32           #
  33           ## ########## ########## ########## ########## ########## ########## ########## #######
  34           
  35           #        sec. name         source           co mmunity
  36           co m2sec VA_N etwork   1 0.0.0.0/8       V2S_s erver_ESE
  37           co m2sec VA_N etwork   1 0.0.0.0/8       nagio s
  38           co m2sec loca l        l ocalhost        V2S_s erver_ESE
  39           
  40           #        grou pName        security Model   se curityName
  41           gr oup   Read OnlyGroup     v2c              V A_Network
  42           gr oup   Read OnlyGroup     v2c              l ocal            
  43           
  44           
  45           #  Make at le ast  snmpw alk -v 1 l ocalhost - c public s ystem fast  again.
  46           #        name             incl/excl      subtr ee          mask(opti onal)
  47           vi ew    syst emview     included    .1.3.6.1. 2.1.1
  48           vi ew    syst emview     included    .1.3.6.1. 2.1.25.1.1
  49           vi ew    syst emview     included    .1
  50           
  51           #        grou p            context  sec.model  sec.level  prefix rea d          write   no tif
  52           ac cess  Read OnlyGroup     ""       any        noauth     exact  sy stemview    none    n one
  53           
  54           #                 System  informati on
  55           sy slocation      MAG-Vi rginia
  56           sy scontact        PII                                       
  57     - name:  snmp enabl ed and run ning
  58       servic e:
  59         name : snmpd
  60         enab led: true
  61         stat e: started   
  62  
  63