注:如果Linux系统未安装vim,使用delete和insert键进行插入和删除,上下移动时,要在非插入模式下。
命令行方式:
设置动态获取IP:
$vi /etc/network/interfaces
auto eth0
iface eth0 inet dhcp
设置静态IP:
$vi /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.161.xxx
netmask 255.255.255.0
gateway 192.168.161.1
设置DNS:
$vi /etc/resolv.conf
nameserver 124.xxx.xxx.254
注:除了127.0.1.1那个,不要配置多个DNS
配置生效,需要重启网卡(或者重启电脑):
ifconfig eth0 down
ifconfig eth0 up
图形窗口方式:
右下角或右上角,点击网络设置,添加ipv4地址,填入ip和dns,OK!立即生效!
时间: 2024-11-06 03:40:06