Added new post

This commit is contained in:
Tristan Ancelet 2023-09-05 21:31:11 -05:00
parent 804cdf676a
commit d663bb0af2
2 changed files with 14 additions and 9 deletions

View File

@ -37,19 +37,20 @@ I had a backup DNS server as well, but after looking into the VM (that was still
<p> <p>
Here is the commands it did to whitelist DNS (running firewalld as a device side firewall) Here is the commands it did to whitelist DNS (running firewalld as a device side firewall)
</p> </p>
<blockquote>
firewall-cmd --perm --zone=public --add-service=dns <pre bash>
</blockquote> firewall-cmd --perm --zone=public --add-service=dns
<blockquote>
firewall-cmd --reload firewall-cmd --reload
</blockquote> </pre>
<p> <p>
After checking that DNS was resolving with dig, I was able to visit my site with no more issues. After checking that DNS was resolving with dig, I was able to visit my site with no more issues.
</p> </p>
<blockquote>
dig blog.tristanancelet.com <pre bash>
</blockquote> dig blog.tristanancelet.com
</pre>
</body> </body>
</html> </html>

View File

@ -17,12 +17,16 @@ I had a backup DNS server as well, but after looking into the VM (that was still
Here is the commands it did to whitelist DNS (running firewalld as a device side firewall) Here is the commands it did to whitelist DNS (running firewalld as a device side firewall)
{{{bash
firewall-cmd --perm --zone=public --add-service=dns firewall-cmd --perm --zone=public --add-service=dns
firewall-cmd --reload firewall-cmd --reload
}}}
After checking that DNS was resolving with dig, I was able to visit my site with no more issues. After checking that DNS was resolving with dig, I was able to visit my site with no more issues.
{{{bash
dig blog.tristanancelet.com dig blog.tristanancelet.com
}}}