有的小朋友问我:我的虚拟机ip老是变 都想砸电脑了 能不能让ip固定不变 我说:好的
- 使用NAT模式
- 查看网关地址并记住
- 修改网卡信息:
cd /etc/sysconfig/network-scripts
vi ifcfg-eno16777736
把红色部分修改成下面这样并追加内容
代码语言:javascript复制DEVICE="eth0"
BOOTPROTO="static"
HWADDR="00:0C:29:93:55:6E"
IPV6INIT="yes"
NM_CONTROLLED="yes"
ONBOOT="yes"
TYPE="Ethernet"
UUID="6ae58225-ebb2-482a-813b-108eaaafcc45"
IPADDR="192.168.217.130"
NETMASK="255.255.255.0"
GATEWAY="192.168.217.2"
DNS1="114.114.114.114"
- 重启网卡
service network restart
- 测试是否连通 ping baidu.com(是否可以连通外网) ip addr(查看本机ip地址是否正确)
完事。
小知识: 1、基础-工具安装 wget、vim
代码语言:javascript复制yum –y install wget
yum –y install vim*
2、centos6 关闭防火墙
代码语言:javascript复制service iptables stop(关闭命令)
chkconfig iptables off(永久关闭防火墙)
两个命令同时运行,运行完成后查看防火墙关闭状态
代码语言:javascript复制service iptables status
3、centos7 关闭防火墙
代码语言:javascript复制systemctl status firewalld (查看防火墙状态)
systemctl stop firewalld (停止防火墙)
systemctl disable firewalld(禁止开机启动)