Army Net.
Network and Active Directory lab study guide — switch, router, DNS, DHCP, and user account build in one place.
- Domain
- ArmyNet.mil
- DC / DNS
- 10.0.0.10
- DHCP network
- 192.100.X.0/24
- Management VLAN
- 99
Lab variables
Values shown as <blank> must come from your station's addressing plan, SAAR, or instructor.
| Symbol | Meaning |
|---|---|
| X | Your station number |
| XX | Assigned data VLAN number |
| VLAN 99 | Management VLAN |
| VLAN 999 | Additional/unused VLAN used in the lab |
| DC | Domain Controller |
| DC/DNS IP | 10.0.0.10 |
| Domain | ArmyNet.mil |
| DHCP network | 192.100.X.0/24 |
| Management switch IP | 192.99.X.2/24 |
Physical topology and port assignments
Laptop ─── Switch ═══ Router ─── Instructor/Upstream Network
Access TrunkPort assignments
- Port/group 6: all switch ports except the trunk and laptop port
- Port 5: laptop-to-switch access port
- Port 2: switch-to-router trunk port
- The switch-facing router interface uses subinterfaces for the data and management VLANs.
Recommended configuration order
- 1Connect and identify interfaces.
- 2Configure the switch.
- 3Configure the router.
- 4Configure DNS.
- 5Configure DHCP.
- 6Build the OUs.
- 7Create and configure users.
- 8Set the laptop to DHCP.
- 9Add the computer to the domain.
Switch configuration
A.Unused access ports
Apply this configuration to all ports except the trunk and laptop access port.
interface range <unused-ports>
switchport mode access
switchport access vlan <assigned-vlan>
switchport port-security
switchport port-security maximum <value>
switchport port-security violation <mode>
shutdownImportant
The lab guidance specifies that unused ports should be shut down.
B.Laptop access port
interface <laptop-port>
switchport mode access
switchport access vlan <data-vlan>
switchport port-security
switchport port-security maximum <value>
switchport port-security violation <mode>Do not shut down the laptop port.
C.Router trunk port
interface <trunk-port>
switchport mode trunk
switchport trunk allowed vlan XX,99The trunk must carry:
- Data VLAN
XX - Management VLAN
99
D.Switch virtual interfaces
interface vlan XX
description DATA
ip address <data-svi-ip> <subnet-mask>interface vlan 99
description MANAGEMENT
ip address 192.99.X.2 255.255.255.0interface vlan 999
description <assigned-description>E.Default gateway
The switch's default gateway should point to the router's management VLAN address.
ip default-gateway <router-management-ip>F.Basic housekeeping and SSH
hostname <switch-hostname>
no ip domain-lookup
ip domain-name ArmyNet.mil
service password-encryption
banner motd #Authorized access only#
ip ssh version 2
crypto key generate rsaAlso configure the required:
- Enable password or enable secret
- Console password
- VTY password or local login
- Remote-management settings
Router configuration
This is a router-on-a-stick configuration. One physical router interface is divided into subinterfaces for multiple VLANs.
A.Data VLAN subinterface
interface g0/0/X.XX
description DATA
encapsulation dot1Q XX
ip address <data-gateway-ip> <subnet-mask>
ip helper-address 10.0.0.10Why ip helper-address
DHCP clients send broadcasts, but the DHCP server is on another network. The router converts and forwards those DHCP broadcasts to the server at 10.0.0.10.
B.Management VLAN subinterface
interface g0/0/X.99
description MANAGEMENT
encapsulation dot1Q 99
ip address <management-gateway-ip> <subnet-mask>C.Instructor-facing interface
interface <instructor-facing-interface>
description INSTRUCTOR
ip address <assigned-ip> <subnet-mask>
no shutdownMake sure the physical router interface supporting the subinterfaces is also enabled.
interface g0/0/X
no shutdownD.OSPF
This lab uses OSPF process ID 100.
router ospf 100
router-id <router-id>
passive-interface g0/0/X.XX
passive-interface g0/0/X.99
network <instructor-network> <wildcard-mask> area <area>
network <data-network> <wildcard-mask> area <area>
network <management-network> <wildcard-mask> area <area>Why the VLAN interfaces are passive
A passive interface:
- Advertises its connected network through OSPF
- Does not send OSPF hello packets
- Does not try to form an OSPF neighbor relationship with end devices
E.Router housekeeping
Configure:
- Hostname
- Passwords
- Password encryption
- MOTD banner
- Remote management and SSH
DNS configuration
Create a secondary forward lookup zone.
A.Add the DNS server
- 1Open DNS Manager.
- 2Highlight or right-click DNS.
- 3Select Add Server.
- 4Enter the Domain Controller's IP address.
- 5Click OK.
B.Create the secondary zone
- 1Expand the DNS server.
- 2Right-click Forward Lookup Zones.
- 3Select New Zone.
- 4Click Next.
- 5Select Secondary Zone.
- 6Click Next.
- 7Enter the zone name
ArmyNet.mil. - 8Enter the master DNS server IP
10.0.0.10. - 9Click Next, then Finish.
C.Allow zone transfers
On the server hosting the primary zone:
- 1Highlight the
ArmyNet.milzone. - 2Right-click it and select Properties.
- 3Open the Zone Transfers tab.
- 4Check Allow zone transfers.
- 5Click Apply, then OK.
Note
Without zone transfers, a secondary DNS server cannot receive a copy of the zone data.
DHCP configuration
Important
X represents your station number.
A.Authorize and connect to the server
- 1Open DHCP Manager.
- 2Right-click DHCP and select Authorize if it is unauthorized.
- 3Right-click DHCP and select Add Server.
- 4Enter the Domain Controller's IP.
- 5Click OK.
B.Create the IPv4 scope
- 1Expand the DHCP server.
- 2Right-click IPv4.
- 3Select New Scope.
- 4Name the scope
Station X – DHCP.
C.Address range
Starting IP: 192.100.X.1
Ending IP: 192.100.X.254
Subnet mask: 255.255.255.0D.Exclusions and reservations
The lab uses an exclusion beginning at 192.100.X.1 and ending at an instructor-assigned host number 192.100.X.XX.
Use this exclusion range to protect addresses assigned to infrastructure, such as:
- Router/default gateway
- Servers
- Printers or other statically addressed devices
- Reserved systems
E.Lease duration
Set the lease duration to 1 day.
F.DHCP options
| Option | Value |
|---|---|
| Router / default gateway | 192.100.X.1 |
| DNS | Already populated — verify it points to the correct DNS/DC server. |
| WINS | Enter the Domain Controller's IP address and click Add. |
G.Activate the scope
- 1Select Yes, activate this scope now.
- 2Click Next.
- 3Click Finish.
H.Configure the laptop
After DHCP setup is complete, configure the laptop's adapter to:
Obtain an IP address automatically
Obtain a DNS server address automaticallyImportant
Do not forget this step before testing DHCP.
Organizational unit structure
DC means Domain Controller. Create the following structure in Active Directory Users and Computers.
TrainingOrg
├── Users
│ ├── S1
│ └── S6
└── Computers
├── S1
└── S6This separates user accounts from computer accounts and then organizes them by section.
User naming standards
A.Full name and display name
LAST, First MI RANK/CIV
Military example: <Last>, <First> <MI> <Rank>
Civilian example: <Last>, <First> <MI> CIVUse:
- The person's military rank for military users
CIVfor civilian or GS users
The displayed name and the name shown outside the user object should match.
B.User logon name
first.mi.last.mil
first.mi.last.civUse lowercase letters and periods between each portion.
User properties
A.General tab
| Field | Example |
|---|---|
| First name | <First> |
| Initial | <MI> |
| Last name | <Last> |
| Display name | <Last>, <First> <MI> <Rank/CIV> |
| Description | <Authorized role / rank> |
| Office | <Authorized unit / section> |
| Telephone | <Authorized contact number> |
| Leave blank | |
| Web page | Leave blank |
SAAR references
- Description: use Block 6 of the SAAR
- Telephone: use Block 4 of the SAAR
- Section/OU membership: use Block 13
The course notes state that the email field will automatically populate after the user is added to the appropriate system.
B.Address tab
Street: <Authorized street / building>
City: <City>
State: <State>
ZIP: <ZIP code>
Country: <Country>
PO Box: Leave empty if not requiredC.Member Of tab
- 1Click Add.
- 2Enter the first letter or number of the unit/group.
- 3Click Check Names.
- 4Select either
S1orS6, depending on Block 13 of the user's SAAR. - 5Click OK.
- 6Click OK again.
- 7Click Apply.
D.Account tab
- 1Locate Account expires.
- 2Set the expiration date to the authorized date from the source paperwork or instructor.
Final verification checklist
Work through each area before calling the lab complete.
Ticks are saved in this browser only.