0%

PVE系统中安装OpenWrt

目的

为了解决 PVE 中的虚拟机科学上网问题,在 OpenWrt 中使用统一的 OpenClash 为虚拟机提供上网服务。

硬件与软件版本

  • 电脑主板网口: 用作 PVE 系统管理口
  • PCIe RTL 8125B 2.5G 网卡: 用作接入 OpenWrt 的外部网口 (WAN口)

网络拓扑

TODO 网络拓扑

OpenWrt 安装步骤

PVE 建立网桥, 作为 OpenWrt 的WAN口和LAN口。

  1. 安装好驱动的物理网口(ens1)作为 OpenWrt 的 WAN 口(连接外部网络)

  2. 创建一个新的网桥(vmbr1)作为 OpenWrt 的 LAN 口(用于内部虚拟机通信)

  3. 其他虚拟机连接到 OpenWrt 提供的 LAN 网络

  4. ens1(网口名称)->vmbr1(网桥名称)->OpenWRT WAN 口

  5. OpenWRT LAN 口 -> vmbr2(网桥名称) -> 虚拟机网卡

WAN 口网桥桥接网口 ens1

注: 物理网口的网卡名称可以使用 ip link showifconfig 获取

创建 OpenWRT WAN 口网桥 vmbr1

  1. 在 PVE Web 界面,进入 Datacenter -> Node -> Network。
  2. 点击 “Create” -> “Linux Bridge”,填写:
    • 名称: vmbr1
    • 桥接端口: ens1
    • IPv4/IPv6: 设为 无(None)
    • Autostart: 选中 ✔
  3. 点击 “Create” 并 应用更改。

创建 OpenWRT LAN 口网桥 vmbr2:

  1. 在 PVE Web 界面,点击 “Create” -> “Linux Bridge”。
  2. 填写如下信息:
    • 名称: vmbr2
    • 桥接端口: 为空(如果需要给外部设备提供网关功能,则填写对应网口即可)
    • IPv4/IPv6: 设为 无(None)
    • Autostart: 选中 ✔
  3. 点击 “Create” 并 应用更改

OpenWrt 官网, 下载对应固件。

我的设备是 x86 的所以下载固件 penwrt-24.10.0-x86-64-generic-ext4-combined-efi.img.gz








查看已经创建好的 OpenWrt 虚拟机,把 LAN 口网桥也添加上去

为 OpenWrt 导入系统镜像

1
2
3
qm importdisk 100 openwrt-24.10.0-x86-64-generic-ext4-combined-efi.img local-lvm # 导入 openwrt 系统镜像到硬盘
qm set 100 --scsihw virtio-scsi-pci --scsi0 local-lvm:vm-100-disk-0 # 设置该硬盘属性
qm set 100 --boot c --bootdisk scsi0 # 设置该虚拟机启动盘

将如上

  1. openwrt-24.10.0-x86-64-generic-ext4-combined-efi.img 替换为自己的上传镜像的路径和文件名
  2. 100 替换为你的 VM ID
  3. local-lvm 替换为你想要安装 OpenWrt 系统的硬盘

如果想要对系统盘扩容,可执行如下操作:

配置完网口和硬盘后, 可以启动系统

进入 OpenWrt 系统后, 配置 WAN 口和 LAN 口地址

这俩我想要 LAN 口下的设备都为 192.168.27.xx 在配置文件中找到如下片段,改为如下配置

1
2
3
4
5
6
7
8
9
vi /etc/config/network

config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.27.1'
option netmask '255.255.255.0'
option gateway '192.168.27.1'
option ip6assign '60'

在同文件中,修改 WAN 口配置, 配置为静态地址方便后续 SSH

1
2
3
4
5
6
7
config interface 'wan'
option device 'eth1'
option proto 'static'
option gateway '17.9.1.254'
list ipaddr '192.0.1.67/24'
list dns '8.8.8.8'

重启网络服务

1
/etc/init.d/network restart

在外部设备上 ping 其 WAN 口地址,以确认其 WAN 口静态地址设置成功

1
ping 192.0.1.67

检查 SSH 是否已启动

1
2
netstat -tlnp | grep dropbear
# 如果输出中包含 0.0.0.0:22,表示 SSH 监听在所有 IP,已经开启

如果没有启动则

1
2
3
4
# 启动 SSH 服务
/etc/init.d/dropbear start
# 开机自启
/etc/init.d/dropbear enable

设置 SSH 服务可以穿过防火墙

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
vi /etc/config/firewall

config rule
option name 'Allow-ISAKMP'
option src 'wan'
option dest 'lan'
option dest_port '500'
option proto 'udp'
option target 'ACCEPT'

config rule 'allow_ssh'
option name 'Allow-SSH'
option src 'wan'
option proto 'tcp'
option dest_port '22'
option target 'ACCEPT'


uci commit firewall
/etc/init.d/firewall restart

使用 passwd 命令设置 root 密码

在外部可以 ping 通 OpenWrt WAN 口的设备上

1
ssh root@192.0.1.67

使用网页

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
vi /etc/config/firewall

config rule
option name 'Allow-HTTP'
option src 'lan'
option dest_port '80'
option proto 'tcp'
option target 'ACCEPT'

config rule
option name 'Allow-HTTP-WAN'
option src 'wan'
option dest_port '80'
option proto 'tcp'
option target 'ACCEPT'

uci commit firewall
/etc/init.d/firewall restart

在浏览器中,输入对用 ip 地址进行访问 http://192.0.1.67

使用刚才配置的 root 密码进入主界面

同步一下时间,便于后续安装软件

参考资料: 超详细,多图 PVE 安装 OpenWRT 教程(个人记录)

安装 OpenClash

下载安装包 vernesong/OpenClash Releases, 我下载的是 v0.46.079

导入 OpenWrt 中, 先安装依赖,再安装 ipk 包

1
2
3
4
opkg update
opkg install bash iptables dnsmasq-full curl ca-bundle ipset ip-full iptables-mod-tproxy iptables-mod-extra ruby ruby-yaml kmod-tun kmod-inet-diag unzip luci-compat luci luci-base

opkg install /tmp/openclash.ipk

启动前请先在插件设置页面的版本更新标签下确认内核编译版本,您也可以手动下载 Clash内核 后解压到 /etc/openclash/core/文件夹,并将二进制文件命名为clash_meta

安装后在 网页端 Service -> OpenClash 界面中进入 OpenClash 配置界面