Skip to content

merge determine-the-ip-address-of-a-domain.md and resolve-the-public-… #49

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and pairing with smart people at Hashrocket.

For a steady stream of TILs, [sign up for my newsletter](https://tinyletter.com/jbranchaud).

_909 TILs and counting..._
_908 TILs and counting..._

---

Expand Down Expand Up @@ -122,11 +122,10 @@ _909 TILs and counting..._
- [Check The Status of All Services](devops/check-the-status-of-all-services.md)
- [Check The Syntax Of nginx Files](devops/check-the-syntax-of-nginx-files.md)
- [Connect To An RDS PostgreSQL Database](devops/connect-to-an-rds-postgresql-database.md)
- [Determine The IP Address Of A Domain](devops/determine-the-ip-address-of-a-domain.md)
- [Resolve The IP Address Of A Domain](devops/resolve-the-ip-address-of-a-domain.md)
- [Path Of The Packets](devops/path-of-the-packets.md)
- [Push Non-master Branch To Heroku](devops/push-non-master-branch-to-heroku.md)
- [Reload The nginx Configuration](devops/reload-the-nginx-configuration.md)
- [Resolve The Public IP Of A URL](devops/resolve-the-public-ip-of-a-url.md)
- [Running Out Of inode Space](devops/running-out-of-inode-space.md)
- [SSL Certificates Can Cover Multiple Domains](devops/ssl-certificates-can-cover-multiple-domains.md)
- [Wipe A Heroku Postgres Database](devops/wipe-a-heroku-postgres-database.md)
Expand Down
31 changes: 0 additions & 31 deletions devops/determine-the-ip-address-of-a-domain.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Resolve The Public IP Of A URL
# Resolve The IP Address Of A Domain

The `dig` command is a utility for doing DNS lookups. You can run it with a
URL argument to lookup the public IP for that domain.
The `dig` (domain information grouper) command can be used to get more
information about a domain name. To discover the IP address for a given
domain, invoke `dig` with the domain as an argument.

```bash
$ dig joshbranchaud.com
Expand All @@ -24,8 +25,8 @@ joshbranchaud.com. 1800 IN A 159.203.106.229
;; MSG SIZE rcvd: 51
```

The output is a bit noisy, but if you parse down to the _ANSWER SECTION_,
you'll see the IP address that it resolves to.
The *answer section* tells me that the IP address for `joshbranchaud.com` is
`198.74.60.157`.

Alternatively, you can skip the noise and get right to the IP address by
including the `+short` flag.
Expand Down