Commit 66af0541 authored by Greg Myers's avatar Greg Myers Committed by Mike Jang

Expand Linux cheat sheet's Networking section

parent 5a9393eb
...@@ -304,6 +304,24 @@ whois <ip_address> | grep -i "orgname\|netname" ...@@ -304,6 +304,24 @@ whois <ip_address> | grep -i "orgname\|netname"
# Curl headers with redirect # Curl headers with redirect
curl --head --location "https://example.com" curl --head --location "https://example.com"
# Test if a host is reachable on the network. `ping6` works on IPv6 networks.
ping example.com
# Show the route taken to a host. `traceroute6` works on IPv6 networks.
traceroute example.com
mtr example.com
# List details of network interfaces
ip address
# Check local DNS settings
cat /etc/hosts
cat /etc/resolv.conf
systemd-resolve --status
# Capture traffic to/from a host
sudo tcpdump host www.example.com
``` ```
## Package Management ## Package Management
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment