らっちゃいブログ

日々の学びと気づきを発信するブログ

curlに名前解決を操作できるオプションがあって超絶便利だった話

スポンサーリンク

小ネタですが、初めて知って感動したので共有させてください。

例えば

  • ローカルサーバに本番のドメインでHTTPアクセスしたい
  • DNS を変更する前に変更後のドメインでHTTPアクセスしたい

のようなケースですが、通常 hosts ファイルを編集して解決することが多いと思います。

今回はなんと、curl を使って確認する場合に限り、いちいち hosts を編集しなくても名前解決を操作することができるオプションを見つけてしまいました。こちらです。

--resolve <host:port:address>

すごい解決してくれそうなオプション名ですね!

使い方はほとんど見たままなのですが、名前解決したいドメイン&ポートと、解決結果として使用するIPを指定するだけです。

例えば www.google.com へのアクセスをローカルアドレスに向ける場合は、以下のように実行します。

$ curl -v --resolve www.google.com:80:127.0.0.1 http://www.google.com/
* Added www.google.com:80:127.0.0.1 to DNS cache
* Hostname was found in DNS cache
*   Trying 127.0.0.1...
* Connected to www.google.com (127.0.0.1) port 80 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.35.0
> Host: www.google.com
> Accept: */*
> 
< HTTP/1.1 200 OK
* Server nginx is not blacklisted
< Server: nginx
< Date: Thu, 02 Jun 2016 08:37:29 GMT
< Content-Type: text/html
< Content-Length: 612
< Last-Modified: Tue, 04 Mar 2014 11:46:45 GMT
< Connection: keep-alive
< ETag: "5315bd25-264"
< Accept-Ranges: bytes
< 
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>
* Connection #0 to host www.google.com left intact

無事ローカルに立てている Nginx のウェルカム画面を取得することができました。

実際の名前解決ですが、こちらを見るとちゃんと127.0.0.1として解決してくれていることがわかります。

* Added www.google.com:80:127.0.0.1 to DNS cache
* Hostname was found in DNS cache
*   Trying 127.0.0.1...

もちろん、Host ヘッダーは www.google.com が指定されます。

> Host: www.google.com

これでDNS変更前のAPI試験が捗るぜ!