ubuntu20.04 netplan 配置外网用wifi内网用有线
时间: 2024-10-12 13:10:44 浏览: 27
在Ubuntu 20.04系统中,Netplan是一个用于配置网络连接的简单工具,可以方便地管理网络配置,包括Wi-Fi和有线连接。为了配置外网用Wi-Fi,内网用有线,你可以按照以下步骤操作:
1. **安装netplan**:
```sh
sudo apt-get update
sudo apt-get install netplan.io -y
```
2. **创建网络配置文件**:
默认情况下,Ubuntu会在`/etc/netplan/50-cloud-init.yaml`找到云配置文件。如果你需要手动编辑,可以创建一个新的配置文件,如`/etc/netplan/60-wifi-and-ethernet.yaml`,内容类似:
```yaml
network:
version: 2
ethernets:
ens3: #假设你的有线网卡名为ens3
dhcp4: true
addresses: [192.168.1.100/24] # 内网IP地址
nameservers:
addresses: [DNS服务器地址]
wifis:
wlan0: #替换为你的无线网卡名称
name: "your_wifi_name"
dhcp4: true
operator: "your_operator" # 如果适用,填写运营商名
security: "wpa2-psk" # 加密类型
password: "your_wifi_password" # Wi-Fi密码
# 让netplan应用新的配置
sudo netplan apply
```
请将上述示例中的`ens3`, `your_wifi_name`, `your_operator`, 和 `your_wifi_password`替换为你实际的网络设备名称、Wi-Fi名称、运营商和服务提供商密码。
3. **重启网络服务**:
为了使更改生效,你需要重启网络服务:
```sh
sudo reboot now
```
阅读全文