Last active
April 13, 2019 16:22
-
-
Save notapatch/c1d2744cbd8db81db60b91d31333c530 to your computer and use it in GitHub Desktop.
bcs.io server up
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Is link up up? | |
sudo ethtool [interface] | grep 'Link detected' | |
- expect to see yes | |
Is interface up? | |
sudo ifconfig [interface] | grep 'inet addr' | |
Is DNS working? | |
nslookup [server name] | |
Can I route to the remote host? | |
traceroute [ip address] | |
Is the remote port open? | |
nmap -p 80 [ip address] | |
Test for listening ports | |
sudo netstat -lnp | grep :80 | |
What firewall rules? | |
suo iptables -L |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment