From 753c86939c45c2a78d0cb671bcf558406612b946 Mon Sep 17 00:00:00 2001 From: Hugh Ratsch Date: Thu, 20 Feb 2025 11:47:16 -0600 Subject: [PATCH] updated notes --- src/rhcsa.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/rhcsa.md b/src/rhcsa.md index 5a4ba29..f899b9e 100644 --- a/src/rhcsa.md +++ b/src/rhcsa.md @@ -887,3 +887,29 @@ sudo vmstat 1 5 # Display the VM statistics every 1 second for 5 seconds ### top sudo top # Display the top processes then press m to sort by memory ``` + +### Troubleshooting Network Issues +```bash +### nmtui +sudo nmtui # Network Manager Text User Interface + +### nmcli +sudo nmcli connection show # Display the network connections + +### ip route +ip route show # Display the routes + +### ip addr +ip -c addr # Display the network interfaces +``` + +### Troubleshooting DNS Issues +```bash +### check dns resolution with dig +dig google.com # Query the DNS server for google.com + +### check dns resolution with resolv.conf +sudo vim /etc/resolv.conf # Edit the resolv.conf file +### change the nameserver to 8.8.8.8 +nameserver 8.8.8.8 +``` \ No newline at end of file