Loading... ###Ubuntu 静态IP设置 > 虚拟机网络为NAT > ####一、静态ip设置: > 1.``sudo vim /etc/network/interfaces`` > 2.配置: ``` auto ens33 //网卡名称 iface ens33 inet static //设置为静态ip address 192.168.101.1 //ip地址 netmask 255.255.0.0 //子网掩码 gateway 192.168.101.254 //网关地址 dns-nameserver 223.5.5.5 //阿里的DNS ``` 3.重启网络服务:``sudo /etc/init.d/networking restart`` Last modification:November 19, 2020 © Allow specification reprint Like