PVE系统连接wifi

Erik-d 2024-10-04 12:37:01 阅读 67

前置条件

<code>1、已识别无线网卡,命令 ip a命令,可以看到类似wlp1s0的网卡

在这里插入图片描述

2、以连接有线网络,保证有线网络可以联网

3、apt更新为清华源。https://mirrors.tuna.tsinghua.edu.cn/help/debian/

安装无线网络管理工具

<code>apt update

apt install wpasupplicant wireless-tools

配置无线网络

/etc/wpa_supplicant/wpa_supplicant.conf

network={

ssid="YourSSID"code>

psk="YourPassword"code>

}

启动wpa_supplicant

wpa_supplicant -B -i wlp1s0 -c /etc/wpa_supplicant/wpa_supplicant.conf

dhclient wlp1s0

设置pve网络

vi /etc/network/interfaces

配置内容:

auto lo

iface lo inet loopback

auto wlp1s0

iface wlp1s0 inet static

address 192.168.31.69/24

gateway 192.168.31.1

bridge-ports enx0826ae3c6416

bridge-stp off

bridge-fd 0

重启网络,配置生效

systemctl restart networking

不出意外,应该会出意外

如有什么问题,找找chatgpt



声明

本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。