Write the seven-field asset record and the one-page network document
Task
Produce the two documents that survive: a minimal asset register that is right, and a one-page logical network document that will still be true next month. Both are deliberately smaller than people first attempt, because seven fields that are maintained beat thirty that are plausible.
Steps
- Write
lab/docs/assets.csvwith headertag,model,serial,user,location,purchased,statusfor every computer, phone, tablet and network device you own or are inventorying. - Write
lab/docs/network.mdas a one-page logical document: what is connected to what, which subnets exist, where the internet connection and the firewall are. Date it and put a name on it. - Write
lab/docs/addressing.csvwith headersubnet,purpose,dhcp_range,reserved_address,belongs_tocovering every fixed address on your network. - Write one knowledge base article at
lab/docs/kb.mdfor a fault you have actually fixed, with a searchable title, the symptom first, numbered steps with exact values, a verification step and a what-if-it-does-not-work section. - Write
lab/docs/policy-vs-procedure.mdgiving one policy you are subject to, one procedure that implements it, and the difference between changing each.
Verify
awk -F, 'NR>1 && NF>=7 {n++} END {print n" asset(s)"}' lab/docs/assets.csv
awk -F, 'NR>1 && $4=="" {n++} END {print n" asset(s) with no holder"}' lab/docs/assets.csv
grep -Eic '20[0-9][0-9]' lab/docs/network.md
awk -F, 'NR>1 && NF>=5 {n++} END {print n" address reservation(s)"}' lab/docs/addressing.csv
grep -Ec '^[0-9]+\.' lab/docs/kb.md
grep -Eic 'verif|confirm|check that' lab/docs/kb.md
grep -Eic 'approval|authority|what and why|how' lab/docs/policy-vs-procedure.md
Every asset with all seven fields, a dated network document, numbered steps in the article and a verification step in it. An article with no verification step is an article whose reader cannot tell whether it worked.
Notes
The date on the network document is not decoration. A reader who knows a document is two years old can judge it; a reader with no date will either trust it or ignore it, and both are worse.
This is an independent study companion for CompTIA A+ Core 2 220-1202 and is not produced by or endorsed by CompTIA.