SSH service validation - PXE basics - DNS
Verify and harden SSH server configuration
Understand PXE boot role and discovery process
Investigate DNS resolution settings and tools
Use host, dig, and nslookup to resolve names and test DNS behavior
linux-system-management-3/
├── README.md
├── outputs/
│ ├── 01-sshd-status.txt
│ ├── 01b-sshd-port-check.txt
│ ├── 02-sshd-config.txt
│ ├── 03-pxe-theory.txt
│ ├── 04-resolv-nsswitch.txt
│ └── 05-dns-tools-output.txt
└── screenshots/
├── 01-sshd-status.png
├── 02-sshd-config.png
├── 03-pxe-theory.png
├── 04-resolv-nsswitch.png
└── 05-dns-tools-output.png
sudo systemctl status sshd
sudo ss -tuln | grep :22
sudo lsof -i :22sudo grep -Ei 'permitrootlogin|passwordauthentication|port' /etc/ssh/sshd_configWhat is PXE How DHCP and TFTP are used The boot process sequence
cat /etc/resolv.conf
cat /etc/nsswitch.conf | grep hostshost google.com
dig google.com +short
nslookup google.com✅ linux-system-management-1
✅ linux-system-management-2
✅ linux-system-management-3




