明道学苑

学而不思则罔,思而不学则殆

0%

Ubuntu Linux环境在shell中配置网卡

本文说明Ubuntu Linux环境下如何在shell中配置网卡。

修改/etc/network/interfaces

nano /etc/network/interfaces

文件内容示例,根据需要修改IP地址、网关和dns

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto enp9s0
iface enp9s0 inet static
address 192.168.1.103
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1