---
title: "無料SPFレコードルックアップツール | AutoSPF"
description: "任意のドメインのSPFレコードを即座にルックアップ。生のTXTレコードを表示し、DNSルックアップを数え、ネストしたincludeを展開し、RFC 7208違反にフラグを立てます。無料、登録不要。"
image: "https://autospf.com/images/og-default.png"
canonical: "https://autospf.com/ja/tools/spf-record-lookup/"
---

Enter your domain name

Check SPF Record

Type a domain to see its published SPF record, a mechanism-by-mechanism breakdown, and a live DNS lookup count.

## SPFレコードのルックアップとは何か

**SPFレコードのルックアップは、ドメインの頂点に公開されたSender Policy Framework TXTレコードをDNSに問い合わせます。** このレコードは、どのIPアドレス、サーバー、サードパーティサービスが、そのドメインを代表してメールを送信することを許可されているかを宣言します。受信メールサーバーは、送信者の身元を検証するため、着信SMTPトランザクションのたびにこのルックアップを実行します。

このツールは単純なDNSクエリを超えて、すべての`include`、`redirect`、そしてネストしたメカニズムを再帰的に展開し、合計DNSルックアップを[RFC 7208](https://datatracker.ietf.org/doc/html/rfc7208)の上限である10に照らして数え、構文エラー、voidルックアップ、非推奨メカニズムにフラグを立てます。

重要な理由 

## 無料SPFルックアップツールを使う理由

### 常にライブのDNS

ツールはあなたのドメインのDNSにリアルタイムで問い合わせるので、古いキャッシュではなく、受信者が実際に今解決しているレコードを確認できます。

### 再帰的なincludeの展開

1つのフラットな文字列ではなく、完全なメカニズムツリーが得られます。ネストしたすべてのinclude、redirect、そしてそれぞれが許可するIPまで表示します。

### 自動ルックアップ数計測

サードパーティのincludeの内部に隠れたものも含め、レコードが引き起こすすべてのDNSルックアップを集計し、RFCの上限である10を超える前に警告します。

### digより速い

手作業のdigやnslookupは生の文字列を表示しますが、展開されたツリーやルックアップ数は示しません。このツールは、複数ステップのCLIセッションを単一のクエリに変えます。

ルックアップの仕組み 

## SPFレコードのルックアップを理解する

SPFルックアップは、受信メールサーバーが、あなたのドメインとしてメールを送信することを許可したサーバーを把握するために実行するDNSクエリです。着信するすべてのメッセージで発生するので、同じルックアップを自分で実行する方法を知ることが、受信者が見ているものを確認する最速の方法です。このルックアップを[SPFレコードチェッカー](/ja/tools/spf-checker/)と組み合わせて、見つけたレコードを検証しましょう。

### SPFルックアップの仕組み

あなたのSPFレコードは、ドメインの頂点（例：`_spf.example.com`ではなく`example.com`）にDNS TXTレコードとして公開されます。メッセージが届くと、受信者はエンベロープ送信者のドメインを読み取り、そのドメインのTXTレコードに問い合わせ、`v=spf1`で始まるものを見つけ、接続してきたサーバーのIPアドレスに照らして評価します。IPが許可されていればSPFは合格し、そうでなければレコードの修飾子が次に何が起きるかを決めます。

### 生のSPFレコードを読む

ルックアップは次のような1行を返します。

`v=spf1 include:_spf.google.com include:sendgrid.net ip4:203.0.113.0/24 -all`

各トークンはメカニズムです。`include:`は別のプロバイダーの許可された送信者を取り込み、`ip4:`はアドレスまたは範囲を直接許可し、末尾の`-all`は一致しなかった相手を拒否するよう受信者に伝えます。[a、mx、ip4、include](/blog/understanding-spf-mechanisms-a-mx-ip4-and-include/)に関する当社のガイドが、それぞれを解説しています。ただし、生の文字列は全体像の半分にすぎません。本当の作業は、これらのincludeが何を含んでいるかを展開することです。

### 再帰的なincludeの展開とルックアップ数計測

すべての`include:`は、それ自体が独自のSPFレコードを持つドメインであり、さらにincludeを含むことがあります。このツールはそのチェーンを最後まで追うので、3つのincludeに見えるレコードが、実際には十数個のDNSルックアップに解決されることがあります。それが重要なのは、RFC 7208が評価を10のDNS問い合わせメカニズム（加えて2つのvoidルックアップの上限）に制限しているからです。いずれかを超えると受信者はPermErrorを返します。展開したレコードが10を超えている場合、[AutoSPF](/ja/home/)がincludeをコンパクトなレコードにフラット化し、最新の状態に保ちます。[DNSルックアップが多すぎる](/ja/spf-dns-rukkuappu-oosugi/)をご覧ください。

### SPFレコードを手動でルックアップする

基礎となるクエリは、ターミナルから自分で実行できます。macOSまたはLinuxの場合：

`dig TXT example.com +short`

Windowsの場合：

`nslookup -type=TXT example.com`

どちらもSPF行を含む生のTXTレコードを返しますが、ネストしたincludeを展開したり合計ルックアップを数えたりはしません。だからこそ、簡単な確認を超える作業には、専用のルックアップツールの方が速いのです。

### ルックアップが何も返さない（または失敗する）とき

- **レコードが見つからない。** ドメインが`v=spf1` TXTレコードを公開していないため、受信者は送信者を照合する対象がありません。
- **レコードが2つ見つかる。** RFC 7208は1つしか許可していません。2つ目はPermErrorを生じさせ、両方が無視されます。単一のエントリに[SPFレコードを統合](/blog/combine-spf-records-correctly-to-avoid-too-many-dns-lookups-errors/)して修正します。
- **サブドメインにレコードがない。** サブドメインは親のSPFレコードを継承しません。メールを送信する各サブドメインには独自のレコードが必要です。
- **カウントでのPermError。** 構文は有効ですが、展開したルックアップが10を超えています。

### ルックアップの後：検証し、修正し、DKIMとDMARCをカバーする

レコードを手に入れたら、[SPFバリデーター](/ja/tools/spf-validator/)にかけてすべてのRFCルールに照らしてチェックするか、[SPFレコードジェネレーター](/ja/tools/spf-record-generator/)でクリーンに再構築します。そして、SPFは送信サーバーしかカバーしないので、無料の[DMARCチェッカー](/ja/tools/dmarc-checker/)と[DKIMルックアップ](/ja/tools/dkim-lookup/)と組み合わせましょう。[DMARC](/blog/what-is-dmarc-email-authentication-guide/)こそが、SPFとDKIMをあなたの可視のFromアドレスに結び付けるものです。送信者を追加したとき、プロバイダーを移行したとき、メールが迷惑メールに振り分けられているのを見たときは、いつでもレコードをルックアップしてください。

## 10ルックアップ上限を超えていますか？

AutoSPFは、あなたのSPFレコードをフラット化し、15分ごとに更新し続けます。エンタープライズSLA、SSO/SAML、監査ログ、DNSロールバックを含みます。

[無料トライアルを開始→](https://subscriptions.zoho.com/subscribe/31162770c20bc42aba9c86185ed6106a6a2bba0f6b053217ad482bf477cf719e/smb%5F1)[プランと料金を見る](/ja/ryokin/)

Rated 5/5 on G2 · Trusted since 2018 

##  お客様の声 

### "AutoSPF Flattens SPF Records Seamlessly & Keeps Changes Logged - I am quite pleased with the product"

> It does what it promises to do, and does it very well. I appreciate that it keeps a log of changes made, which prevents many mistakes. A client's SPF record would have way too many lookups, but AutoSPF makes that problem go away. The length of the SPF record is typically not the issue; it's the amount of lookups in the record that are. AutoSPF "flattens" the record, automatically expanding the defined lookups to IP addresses or ranges. And it auto-updates the record when the un-flattened lookups change. 

 PJ 

Peter J.

 President · Small-Business (50 or fewer emp.) 

### "Helped us go beyond capacity"

> AutoSPF did exactly as described, it helped us get past our 10 lookup limit. Afterwards, we hit another limit regarding overall capacity and when contacted, they quickly provided us with a new solution to eliminate capacity issues entirely going forward, so now we can add as many SPF records as needed. They also provided us with a personalized support video explaining their new method in its entirety using our instance as the example. 

 VU 

Verified User

 Financial Services · Mid-Market (51-1000 emp.) 

[Read our reviews on G2 ](https://www.g2.com/products/autospf/reviews)

```json
{"@context":"https://schema.org","@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com","logo":{"@type":"ImageObject","url":"https://autospf.com/images/autospf-logo.png"},"description":"Automatic SPF flattening and email authentication management. Resolve SPF lookup limits, flatten SPF records, and maintain email deliverability across all your domains.","parentOrganization":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138883901","name":"DuoCircle LLC","url":"https://www.duocircle.com","sameAs":["https://www.wikidata.org/wiki/Q138883901","https://www.crunchbase.com/organization/duocircle-llc","https://www.linkedin.com/company/duocircle","https://github.com/duocircle"],"subOrganization":[{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897912","name":"Phish Protection","url":"https://www.phishprotection.com"}]},"sameAs":["https://www.wikidata.org/wiki/Q138897474","https://www.linkedin.com/company/autospf","https://x.com/autospf01","https://www.facebook.com/autospf","https://github.com/duocircle","https://www.g2.com/products/autospf/reviews"],"aggregateRating":{"@type":"AggregateRating","ratingValue":"5.0","reviewCount":"21","bestRating":"5","worstRating":"1","url":"https://www.g2.com/products/autospf/reviews"},"contactPoint":{"@type":"ContactPoint","contactType":"customer support","url":"https://autospf.com/contact-us/"},"knowsAbout":["SPF Record Flattening","Sender Policy Framework","Email Authentication","DNS Management","DMARC","DKIM","Email Deliverability","SPF Lookup Limits"]}
```

```json
{"@context":"https://schema.org","@type":"WebSite","name":"AutoSPF","url":"https://autospf.com","description":"Automatic SPF flattening and email authentication management. Resolve SPF lookup limits, flatten SPF records, and maintain email deliverability across all your domains.","publisher":{"@type":"Organization","name":"AutoSPF","url":"https://autospf.com","logo":{"@type":"ImageObject","url":"https://autospf.com/images/autospf-logo.png"},"description":"Automatic SPF flattening and email authentication management. Resolve SPF lookup limits, flatten SPF records, and maintain email deliverability across all your domains.","parentOrganization":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138883901","name":"DuoCircle LLC","url":"https://www.duocircle.com","sameAs":["https://www.wikidata.org/wiki/Q138883901","https://www.crunchbase.com/organization/duocircle-llc","https://www.linkedin.com/company/duocircle","https://github.com/duocircle"],"subOrganization":[{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897912","name":"Phish Protection","url":"https://www.phishprotection.com"}]}}}
```

```json
{"@context":"https://schema.org","@type":"FAQPage","mainEntity":[{"@type":"Question","name":"SPFレコードのルックアップとは何ですか？","acceptedAnswer":{"@type":"Answer","text":"SPFレコードのルックアップは、そのドメインを代表してメールを送信することを許可されたIPアドレスとサーバーを宣言する、ドメインの頂点にあるTXTレコードをDNSに問い合わせます。ルックアップは生のレコード文字列を返し、それを解析して構文をチェックし、DNSルックアップを数え、RFC 7208への準拠を検証できます。"}},{"@type":"Question","name":"SPFレコードはいくつのDNSルックアップを使えますか？","acceptedAnswer":{"@type":"Answer","text":"RFC 7208は、SPF評価を10のDNSメカニズムルックアップ（include、a、mx、redirect、exists）と2つのvoidルックアップに制限しています。いずれかの上限を超えると、そのドメインからのすべてのメッセージの認証を壊すPermErrorが発生します。"}},{"@type":"Question","name":"このSPFルックアップツールは無料ですか？","acceptedAnswer":{"@type":"Answer","text":"はい。AutoSPFのSPFレコードルックアップは完全に無料で、登録もログインも不要、レート制限（1分あたり30リクエスト）以外の使用制限もありません。ライブのDNSに問い合わせ、メカニズムごとのルックアップ数とともに再帰的なincludeの解決を表示します。"}}]}
```

```json
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://autospf.com/"},{"@type":"ListItem","position":2,"name":"ツール","item":"https://autospf.com/ja/tools/"},{"@type":"ListItem","position":3,"name":"SPFレコードルックアップ","item":"https://autospf.com/ja/tools/spf-record-lookup/"}]}
```

```json
{"@context":"https://schema.org","@type":"Product","name":"AutoSPF","url":"https://autospf.com","aggregateRating":{"@type":"AggregateRating","ratingValue":5,"reviewCount":21,"bestRating":5,"worstRating":1},"review":[{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":5,"bestRating":5},"author":{"@type":"Person","name":"Peter J.","jobTitle":"President"},"datePublished":"2026-03-10","reviewBody":"It does what it promises to do, and does it very well. I appreciate that it keeps a log of changes made, which prevents many mistakes. A client's SPF record would have way too many lookups, but AutoSPF makes that problem go away. The length of the SPF record is typically not the issue; it's the amount of lookups in the record that are. AutoSPF \"flattens\" the record, automatically expanding the defined lookups to IP addresses or ranges. And it auto-updates the record when the un-flattened lookups change.","name":"AutoSPF Flattens SPF Records Seamlessly & Keeps Changes Logged - I am quite pleased with the product","publisher":{"@type":"Organization","name":"G2","url":"https://www.g2.com"}},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":5,"bestRating":5},"author":{"@type":"Person","name":"Verified User","jobTitle":"Financial Services"},"datePublished":"2025-07-31","reviewBody":"AutoSPF did exactly as described, it helped us get past our 10 lookup limit. Afterwards, we hit another limit regarding overall capacity and when contacted, they quickly provided us with a new solution to eliminate capacity issues entirely going forward, so now we can add as many SPF records as needed. They also provided us with a personalized support video explaining their new method in its entirety using our instance as the example.","name":"Helped us go beyond capacity","publisher":{"@type":"Organization","name":"G2","url":"https://www.g2.com"}}]}
```
