> For the complete documentation index, see [llms.txt](https://help.aikido.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.aikido.dev/docs/docs-ja/zen-firewall/miscellaneous/outbound-network-connections-for-zen.md).

# Zen のアウトバウンドネットワーク接続

Zen が正しく機能するには、アウトバウンドのインターネットアクセスが必要です。

動作中、Zen [データを送信します](/docs/docs-ja/zen-firewall/miscellaneous/data-sent-by-aikido-zen.md) 以下の Aikido サービスに:

**EU ベースのドメイン:**

* guard.aikido.dev
* runtime.aikido.dev

**US ベースのドメイン:**

* guard.us.aikido.dev
* runtime.us.aikido.dev

**ME ベースのドメイン:**

* guard.me.aikido.dev
* runtime.me.aikido.dev

{% hint style="warning" %}
両方のドメインは、Aikido のクラウドインフラストラクチャによって管理される動的 IP を使用しています。
{% endhint %}

環境でアウトバウンドトラフィックが制限されている場合は、IP アドレスではなくホスト名でこれらのドメインを許可してください。

## 接続テスト

これらの確認は、アプリが動作しているのと同じホスト（該当する場合は同じコンテナ）から実行してください。EU クラスターを使用していない場合は、アカウントに一致するリージョンのドメインに置き換えてください。

**Linux / macOS**

```bash
# DNS 解決
nslookup guard.aikido.dev
nslookup runtime.aikido.dev

# HTTPS 接続
curl -v https://guard.aikido.dev
curl -v https://runtime.aikido.dev
```

**Windows（PowerShell）**

```powershell
Resolve-DnsName guard.aikido.dev
Test-NetConnection guard.aikido.dev -Port 443
```

プロキシ、社内ファイアウォール、VPN、または SSL インターセプトを使用している場合は、へのアウトバウンドトラフィックが `*.aikido.dev` ポート 443 で許可されており、Aikido の証明書が書き換えられていないことを確認してください。プロキシ設定については [プロキシおよびロードバランサーの設定](/docs/docs-ja/zen-firewall/zen-installation-instructions/proxy-load-balancer-settings.md).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.aikido.dev/docs/docs-ja/zen-firewall/miscellaneous/outbound-network-connections-for-zen.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
