Ubuntu16.04中网络配置的示例分析

2023-04-09 06:32:00 分析 示例 配置

在Ubuntu 16.04中,网络配置文件位于/etc/network/interfaces中。它包含了有关网络接口的配置信息。

配置文件的格式如下:

# This file describes the network interfaces available on your system

# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface

auto lo

iface lo inet loopback

如果要配置静态IP,只需要在配置文件中添加一行配置即可:

auto eth0

iface eth0 inet static

address 192.168.1.100

netmask 255.255.255.0

gateway 192.168.1.1

如果要配置动态IP,只需要在配置文件中添加一行配置即可:

auto eth0

iface eth0 inet dhcp

如果要配置多个网络接口,只需要在配置文件中添加多行配置即可:

auto eth0

iface eth0 inet static

address 192.168.1.100

netmask 255.255.255.0

gateway 192.168.1.1

auto eth1

iface eth1 inet dhcp

相关文章