lliux网卡配置文件
时间: 2024-09-11 22:18:52 浏览: 46
Linux 网卡配置文件通常位于 `/etc/network/interfaces` 或者 `/etc/netplan/*.yaml`(在 Ubuntu 16.04 及以后版本)。这些配置文件用于设置网络接口的状态、IP 地址、子网掩码、网关以及DNS服务器等网络信息。
在 `interfaces` 文件中,你可以找到类似于这样的基本结构:
```bash
auto eth0
iface eth0 inet dhcp
# 或者手动配置静态IP
iface eth0 inet static
address <IP_ADDRESS>
netmask <NETMASK>
gateway <GATEWAY_IP>
dns-nameservers <DNS_SERVERS>
```
`/etc/netplan/*.yaml` 配置文件采用 YAML 格式,更易读且支持更多的高级功能。例如:
```yaml
network:
version: 2
renderer: networkd
ethernets:
ens3:
dhcp4: yes
optional: true
addresses:
- <IP_ADDRESS>
- <SUBNET MASK>
gateway4: <GATEWAY_IP>
nameservers:
addresses:
- <DNS_SERVER>
```
阅读全文