大鹅控制面板

Daed

Github
发行版

大鹅控制面板,是一个用来管理大鹅透明代理的理代化面板。

注意事项:
NEVER LET YOUR COMPUTER SLEEP OR HIBIRNATE WHILE PROXY IS STILL ON!
NEVER SWITCH NETWORK WHILE PROXY IS STILL ON!
TURN IT OFF BEFORE YOU MOVE OR LEAVE YOUR COMPUTER!
OR YOU WILL HAVE POSSIBILITY TO NEED A REBOOT TO RECOVER YOUR NETWORK CONNECTIVITY!

Debian/Ubuntu命令安装

1
2
3
4
5
6
7
8
9
10
11
12
# Download
wget -P /tmp https://github.com/daeuniverse/daed/releases/latest/download/installer-daed-linux-$(arch).deb

# install
sudo dpkg -i /tmp/installer-daed-linux-$(arch).deb
rm /tmp/installer-daed-linux-$(arch).deb

# Start daed
sudo systemctl start daed

# enable daed start automatically
sudo systemctl enable daed

Docker部署

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#======== Docker镜像部署 ==============
sudo docker run -d \
--privileged \
--network=host \
--pid=host \
--restart=unless-stopped \
-v /sys:/sys \
-v /etc/daed:/etc/daed \
--name=daed \
ghcr.io/daeuniverse/daed:latest

#==== Docker编译部署 ================
# clone the repository
git clone https://github.com/daeuniverse/daed --recursive

# build the image
docker build -t daed .

# run the container
sudo docker run -d \
--privileged \
--network=host \
--pid=host \
--restart=unless-stopped \
-v /sys:/sys \
-v /etc/daed:/etc/daed \
--name=daed \
daed

本地运行命令设置

1
2
3
4
5
6
7
8
sudo chmod +x ./daed
sudo install -Dm755 daed /usr/bin/
sudo daed run

# helper
sudo daed [-h,--help]

# If everything goes well, open your browser and navigate to http://localhost:2023

V2rayA

Daed是V2rayA的继承者,但V2rayA现在也在更新。

GitHub
Debian|Ubuntu

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 添加密钥文件
wget -qO - https://apt.v2raya.org/key/public-key.asc | sudo tee /etc/apt/keyrings/v2raya.asc

# 更新V2rayA软件源
echo "deb [signed-by=/etc/apt/keyrings/v2raya.asc] https://apt.v2raya.org/ v2raya main" | sudo tee /etc/apt/sources.list.d/v2raya.list
sudo apt update

# 安装V2rayA服务以及v2ray或xray核心
sudo apt install v2raya v2ray ## 也可以使用 xray 包

sudo systemctl start v2raya.service # 启动服务
sudo systemctl enable v2raya.service # 设置自启动

# 更新IP数据
sudo sh -c "$(curl -sL https://github.com/daeuniverse/dae-installer/raw/main/installer.sh)" @ update-geoip update-geosite

V2rayA默认访问链接:http://localhost:2017

默认端口: socks5: 20170, http: 20171, http(分流规则):20172