标签:net 网关 def 查看 fail 服务 本机 vmnet win
Windows用power shell或cmd查看本机ip地址
PS C:\Users\18530> ipconfig
以太网适配器 VMware Network Adapter VMnet1: //此项!!
连接特定的 DNS 后缀 . . . . . . . :
IPv4 地址 . . . . . . . . . . . . : 192.168.230.1
子网掩码 . . . . . . . . . . . . : 255.255.255.0
默认网关. . . . . . . . . . . . . :
将CentOS7的ip地址设置为静态并自定义ip地址
[root@host ~]# ip addr show
1: lo: ...
2: ens33: ...
[root@host ~]# vi /etc/sysconfig/network-scripts/ifcfg-ens33
TYPE=Ethernet
PROXY_METHOD=none
BROWSER_ONLY=no
BOOTPROTO=static //修改为static
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=yes
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=ens33
UUID=f285f15e-e49e-44bd-962b-f408d3005125
DEVICE=ens33
ONBOOT=yes //修改为yes
IPADDR=192.168.230.100 //添加自定义ip
//要求与VMware Network Adapter VMnet1的ip在同一区段
[root@host ~]# /etc/init.d/network restart
//or [root@host ~]# service network restart
[root@host ~]# ps -e | grep sshd //检查sshd服务是否开启
927 ? 00:00:00 sshd
ssh连接成功!
标签:net 网关 def 查看 fail 服务 本机 vmnet win
原文地址:https://www.cnblogs.com/qinghui3/p/12500118.html