Update solution templates with scenario descriptions

This commit is contained in:
Hugh Ratsch
2025-03-02 09:45:00 -06:00
parent cd36415d1d
commit e4ba16bfc7
5 changed files with 436 additions and 75 deletions
+18 -24
View File
@@ -21,9 +21,9 @@ From Practice Scenarios v1, Scenario 7:
5. Implement network access restrictions using firewalld zones
### Environment
- OS Version: RHEL/Rocky Linux
- Initial State: [Initial network configuration]
- Required Outcome: [Desired network setup]
- OS Version: RHEL/Rocky Linux 8.x
- Initial State: DHCP-configured network interface
- Required Outcome: Properly configured static network settings with hostname and firewall zones
### Solution Steps
1. Check Current Network Configuration
@@ -34,36 +34,30 @@ From Practice Scenarios v1, Scenario 7:
# Check routing
ip route show
```
[Explanation of current state]
[My explanation will go here after completing the exercise]
2. Configure Network Interface
```bash
# Network configuration commands
nmcli connection modify ...
# To be filled with my solution
```
[Explanation of configuration]
[My explanation will go here after completing the exercise]
3. Apply and Verify Changes
```bash
# Apply changes
nmcli connection up ...
# To be filled with my solution
```
[Explanation of changes]
[My explanation will go here after completing the exercise]
### Verification
```bash
# Test connectivity
ping -c 4 gateway_ip
ping -c 4 8.8.8.8
# Check DNS resolution
nslookup example.com
# To be filled with my verification steps
```
### Key Learnings
- Understanding of network configuration
- Troubleshooting methodology
- NetworkManager usage
- [To be filled after completing the exercise]
## Skills Demonstrated
- Network Configuration
@@ -83,12 +77,12 @@ From Practice Scenarios v2, Scenario 7:
6. Set up network teaming for redundancy
### Environment
- OS Version: [To be filled]
- Initial State: [To be filled]
- Required Outcome: [To be filled]
- OS Version: RHEL/Rocky Linux 8.x
- Initial State: System with various network and storage issues
- Required Outcome: Fully functional system with resolved issues and properly configured network
### Solution Steps
[Your solution will be added here]
[To be filled when I complete this exercise]
## Scenario: [v3-S7] Network Services Configuration
@@ -108,9 +102,9 @@ From Practice Scenarios v3, Scenario 7:
- Fail2ban configuration
### Environment
- OS Version: [To be filled]
- Initial State: [To be filled]
- Required Outcome: [To be filled]
- OS Version: RHEL/Rocky Linux 8.x
- Initial State: Basic network configuration with single interface
- Required Outcome: Advanced network configuration with bonding, VLANs, and security features
### Solution Steps
[Your solution will be added here]
[To be filled when I complete this exercise]