ubuntu22.4.04ip配置文件格式
时间: 2024-09-21 08:12:12 浏览: 54
ubuntu22.04.2 LTS iso 共3个压缩包,ubuntu官网下载,此为卷3
Ubuntu 22.04 (代号Jammy Jellyfish) 的 IP 配置文件通常位于 `/etc/network/interfaces` 或者在 newer Linux 发行版中,更倾向于使用 `/etc/netplan/*.yaml`。`interfaces` 文件是传统的文本格式,而 `netplan` 则是 YAML 格式。
`/etc/network/interfaces` 文件的基本结构如下:
```bash
# interfaces(5) file used by ifup(8) and ifdown(8)
# Include files from /etc/network/interfaces.d:
auto ens33
iface ens33 inet dhcp
# 或者静态IP配置
iface eth0 inet static
address <your_ip_address>
netmask <your_netmask>
gateway <default_gateway>
# 更多配置项可以在这里添加,比如DNS服务器等
dns-nameservers <dns_server_1> <dns_server_2>
```
`/etc/netplan/*.yaml` 文件则类似于这样:
```yaml
# cat /etc/netplan/01-netcfg.yaml
network:
version: 2
renderer: networkd
ethernets:
ens33:
dhcp4: true
optional: true
# 或者静态IP配置
ethernets:
ens33:
dhcp4: no
addresses:
- 192.168.1.100/24
gateway4: 192.168.1.1
nameservers:
addresses: [8.8.8.8, 8.8.4.4]
```
阅读全文