2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

自宅ネットワークを強化!Proxmox上にAdGuard Homeを構築する方法

Last updated at Posted at 2025-04-26

:cherry_blossom:

  • Proxmox VE 8.4.1
  • debian-12-standard

:cherry_blossom: ンプレートの作成

テンプレートのダウンロード

local > CT Templates > Templatesの順にクリックし、テンプレートの一覧を表示する。
image.png

今回は、debian-12-standardを選択し、右下のDownloadを押下します。
image.png

:cherry_blossom: ンテナ(CT)の作成

Proxmox VEのWEB GUIの右上にあるCreate CTを押下し設定を進めていきます。

Generalタブ

image.png

Templateタブ

image.png

Disksタブ

image.png

CPUタブ

image.png

Memoryタブ

image.png

メモリに余裕がある場合は、スワップを0にすることをおすすめします。

Networkタブ

image.png

コンテナIDとIPアドレスの下3桁を合わせておくと覚えやすくておすすめです。

DNSタブ

image.png

Confirmタブ

image.png

設定内容を確認して問題なければ、Finishを押下します。

:cherry_blossom: ンテナ(CT)の設定

左側のビューに作成したコンテナが追加されているので、選択します。
image.png

オプション

Firewall > OptionsからFirewallを有効にし、DHCPNDPを無効にします。
image.png

セキュリティ確保のため、Input PolicyDROPにすることを推奨します。
細かいルールの追加は、左にあるFirewallのメニューからできます。

ファイアウォール

AdGuard Homeを利用するために必要なポートを開放します。
image.png

解放するポートは下記になります。

  • Port 53(DNS用)
  • Port 80(AdGuard Home管理用)
  • Port 3000(AdGuard Homeセットアップ用)

AdGuard Homeのセットアップ完了後には、3つ目のルールは削除を推奨します。

:cherry_blossom: AdGuard Homeのインストール

作成したコンテナ(CT)を選択し、右上にあるStartボタンを押下します。
コンテナが起動すると、Consoleからログインし下記の手順を進めていきます。

1. コンテナ(CT)のパッケージの更新

apt update 
apt upgrade -y

2. 必要なパッケージのインストール

apt install curl -y

3. AdGuard Homeのインストール

curl -s -S -L https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v

公式のインストールコマンドを使用しています。

AdGuard Homeの初期設定
http://IPアドレス:3000にブラウザからアクセスし、初期設定を進めていきます。

:cherry_blossom: 後に

今回は、自宅で勉強のためにProxmoxの環境を構築し、AdGuard Homeをインストールしたので、その際の手順を記載させていただきました。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?