Ubuntu16.04桥接下配置固定IP
为了搭建我的k8s集群,需要配置vmware的ubutun虚拟机首先将网络适配器配成桥接然后自己电脑cmd下ipconfig查看自己的网关和网段我的网关是192.168.1.1,网段是192.168.1.xxx所以在虚拟机ubuntu命令vim /etc/network/interfacesauto loiface lo inet loopbackaut...
·
为了搭建我的k8s集群,需要配置vmware的ubutun虚拟机
首先将网络适配器配成桥接
然后自己电脑cmd下ipconfig查看自己的网关和网段
我的网关是192.168.1.1,网段是192.168.1.xxx
所以在虚拟机ubuntu命令
vim /etc/network/interfaces
auto lo
iface lo inet loopback
auto ens33
iface ens33 inet static
address 192.168.1.101
netmask 255.255.255.0
gateway 192.168.1.1
然后设置阿里的dns:
vim /etc/resolvconf/resolv.conf.d/base
nameserver 223.5.5.5
然后reboot重启服务器就完成了静态ip的设置
更多推荐
已为社区贡献2条内容
所有评论(0)