> 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 の証明書が書き換えられていないことを確認してください。プロキシ設定については、 [Proxy & Load Balancer Settings](/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.
