> 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/ai-totsru/ide-plugins-overview/troubleshooting/troubleshooting-ide-plugin-connectivity.md).

# IDEプラグインの接続性

## プラグインがネットワークをどのように使用するか

IDE プラグインはコードを処理します **ローカルで、あなたのデバイス上で。** ソースコードが Aikido のサーバーにアップロードされることはありません。クラウド接続は以下の目的で使用されます：

| 方向         | 転送されるもの                                                             |
| ---------- | ------------------------------------------------------------------- |
| クラウド → IDE | スキャンルールと設定（例：SAST/シークレットのルールセット、opengrep ルール）                       |
| IDE ↔ クラウド | スコアリング、重複排除、組織の無視およびトリアージルールの適用のためのスキャン結果（問題）                       |
| IDE ↔ クラウド | AutoFix および AutoTriage のリクエストは処理のために Aikido のバックエンドに送信され、IDE に返されます |

これは SAST、シークレット、SCA、IaC のスキャンに適用されます。接続された Aikido ワークスペースに適用されるのと同じデータ処理ポリシーが、IDE プラグインにも適用されます。

## 必要なドメイン

正常に動作するには、プラグインが HTTPS（ポート 443）経由で以下のドメインにアクセスできる必要があります：

```
*.aikido.dev
または
ide.aikido.dev
```

## トラブルシューティング

Aikido IDE プラグインが接続できない、またはログインが永続しない場合、ネットワーク制限やファイアウォールのルールが原因である可能性が高いです。

### 1. ターミナルから接続性を確認する

**macOS / Linux（bash）**

```
# DNS 解決をテスト
nslookup ide.aikido.dev

# HTTPS 接続をテスト
curl -v https://ide.aikido.dev/ping

# またはポートが開いているか確認
nc -vz ide.aikido.dev 443
```

**Windows（PowerShell）**

```
# DNS 解決をテスト
Resolve-DnsName ide.aikido.dev

# HTTPS 接続をテスト
Invoke-WebRequest -Uri https://ide.aikido.dev/ping -UseBasicParsing

# ポート接続性をテスト
Test-NetConnection ide.aikido.dev -Port 443
```

### 2. プロキシまたはファイアウォールの設定を確認する

* プロキシまたは社内ファイアウォールが \*.aikido.dev への外向き HTTPS 接続を許可していることを確認してください。
* VPN を使用している場合は、一時的に無効にして接続に影響するか確認してください。
* SSL インターセプションや証明書ピンニングの問題でアクセスが妨げられていないことを確認してください。

[IDE 内でプロキシと CA を設定する方法については、このガイドを参照してください。](/docs/docs-ja/ai-totsru/ide-plugins-overview/troubleshooting/ide-plugin-proxy-and-ca-settings.md)

### 3. まだ問題がありますか？

すべてのテストが失敗する、またはタイムアウトが発生する場合は、診断をさらに進めるためにコマンド出力を Aikido チームに共有してください。

{% content-ref url="/pages/19c8285a278f5435c1db99b1b7a529201d266097" %}
[Visual Studio - サポート向け情報](/docs/docs-ja/ai-totsru/ide-plugins-overview/troubleshooting/visual-studio-information-for-support.md)
{% endcontent-ref %}

{% content-ref url="/pages/3acb2ad144599c16acabc8d17decfc858efbb4d7" %}
[JetBrains - サポート向け情報](/docs/docs-ja/ai-totsru/ide-plugins-overview/troubleshooting/jetbrains-information-for-support.md)
{% endcontent-ref %}


---

# 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/ai-totsru/ide-plugins-overview/troubleshooting/troubleshooting-ide-plugin-connectivity.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.
