修改网络模式,修改静态ip,动态ip获取方式
查看当前的上网信息
1.确保你的机器,是连接的网络的,是插上了网线的。(模拟了物理服务器的软件是什么?看你的虚拟的机器(vmware))
2.进入系统,查看软件的网络配置了
进入网卡配置文件目录
[root@yuanlai-0224 ~]# cd /etc/sysconfig/network-scripts/
[root@yuanlai-0224 network-scripts]#
[root@yuanlai-0224 network-scripts]#
[root@yuanlai-0224 network-scripts]# ll
总用量 248
-rw-r--r--. 1 root root 310 2月 25 15:12 ifcfg-ens33
-rw-r--r--. 1 root root 254 1月 3 2018 ifcfg-lo
lrwxrwxrwx. 1 root root 24 2月 25 15:05 ifdown -> ../../../usr/sbin/ifdown
-rwxr-xr-x. 1 root root 654 1月 3 2018 ifdown-bnep
-rwxr-xr-x. 1 root root 6569 1月 3 2018 ifdown-eth
-rwxr-xr-x. 1 root root 6190 4月 11 2018 ifdown-ib
-rwxr-xr-x. 1 root root 781 1月 3 2018 ifdown-ippp
-rwxr-xr-x. 1 root root 4540 1月 3 2018 ifdown-ipv6
lrwxrwxrwx. 1 root root 11 2月 25 15:05 ifdown-isdn -> ifdown-ippp
-rwxr-xr-x. 1 root root 2102 1月 3 2018 ifdown-post
-rwxr-xr-x. 1 root root 1068 1月 3 2018 ifdown-ppp
-rwxr-xr-x. 1 root root 870 1月 3 2018 ifdown-routes
-rwxr-xr-x. 1 root root 1456 1月 3 2018 ifdown-sit
-rwxr-xr-x. 1 root root 1621 3月 18 2017 ifdown-Team
-rwxr-xr-x. 1 root root 1556 3月 18 2017 ifdown-TeamPort
-rwxr-xr-x. 1 root root 1462 1月 3 2018 ifdown-tunnel
lrwxrwxrwx. 1 root root 22 2月 25 15:05 ifup -> ../../../usr/sbin/ifup
-rwxr-xr-x. 1 root root 12415 1月 3 2018 ifup-aliases
-rwxr-xr-x. 1 root root 910 1月 3 2018 ifup-bnep
-rwxr-xr-x. 1 root root 13442 1月 3 2018 ifup-eth
-rwxr-xr-x. 1 root root 10114 4月 11 2018 ifup-ib
-rwxr-xr-x. 1 root root 12075 1月 3 2018 ifup-ippp
-rwxr-xr-x. 1 root root 11893 1月 3 2018 ifup-ipv6
lrwxrwxrwx. 1 root root 9 2月 25 15:05 ifup-isdn -> ifup-ippp
-rwxr-xr-x. 1 root root 650 1月 3 2018 ifup-plip
-rwxr-xr-x. 1 root root 1064 1月 3 2018 ifup-plusb
-rwxr-xr-x. 1 root root 4981 1月 3 2018 ifup-post
-rwxr-xr-x. 1 root root 4154 1月 3 2018 ifup-ppp
-rwxr-xr-x. 1 root root 2001 1月 3 2018 ifup-routes
-rwxr-xr-x. 1 root root 3303 1月 3 2018 ifup-sit
-rwxr-xr-x. 1 root root 1755 3月 18 2017 ifup-Team
-rwxr-xr-x. 1 root root 1876 3月 18 2017 ifup-TeamPort
-rwxr-xr-x. 1 root root 2711 1月 3 2018 ifup-tunnel
-rwxr-xr-x. 1 root root 1836 1月 3 2018 ifup-wireless
-rwxr-xr-x. 1 root root 5419 1月 3 2018 init.ipv6-global
-rw-r--r--. 1 root root 19948 1月 3 2018 network-functions
-rw-r--r--. 1 root root 31027 1月 3 2018 network-functions-ipv6
[root@yuanlai-0224 network-scripts]#
3.编辑网卡的配置文件
编辑网卡配置文件
[root@yuanlai-0224 network-scripts]# ls |grep ens33
ifcfg-ens33
4.需要关闭,禁用centos7在图形化下,设置的网络服务,同时管理wifi和有线
服务名 NetworkManager
systemctl stop NetworkManager # 关闭
systemctl is-enabled NetworkManager # 查看是否开机自启
禁止开机运行
systemctl disbale NetworkManager
5.启动管理网络的服务
systemctl start network
systemctl status network # 查看网络服务状态
6.通过ip命令,查看ip地址信息
ifconfig
默认的dhcp动态获取ip
不用操作了,直接启动network服务即可
systemctl start netowrk
改为静态ip的步骤
1.查看你的vmware虚拟网卡,网络环境是什么(NAT)
桥接
你的linux采用桥接,等于你去这个路由器分配的局域网中,拿走一个ip,等于教室多了一个学生
NAT
网络地址转换
ip地址映射表
vmnet8先找到你的虚拟网卡
虚拟机是如何上网的
给虚拟机配置静态ip,需要根据如上配置来,找到哪些信息
-
确认你所在的网段环境 (10.96.0.xx)
-
确认网关
-
填写dns服务器地址
-
修改网卡为 static模式
bash
[root@yuanlai-0224 network-scripts]# cat ifcfg-ens33
TYPE="Ethernet"
PROXY_METHOD="none"
BROWSER_ONLY="no"
# 你要根据你的网络环境修改的信息如下这几个
BOOTPROTO="static"
IPADDR="10.96.0.77"
NETMASK="255.255.255.0"
GATEWAY="10.96.0.2"
DNS1='114.114.114.114'
DNS2='115.115.115.115'
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="c00d6dd2-38dd-4f08-ba63-44333a825502"
DEVICE="ens33"
ONBOOT="yes"
5.修改配置文件,一定要重启网络服务
bash
systemctl restart network
6.重新使用新的ip地址,试试连接
bash
[root@yuanlai-0224 ~]#
[root@yuanlai-0224 ~]# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: ens33: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 00:0c:29:c2:f1:f1 brd ff:ff:ff:ff:ff:ff
inet 10.96.0.77/24 brd 10.96.0.255 scope global noprefixroute ens33
valid_lft forever preferred_lft forever
inet6 fe80::409b:ebcf:7ff7:7764/64 scope link noprefixroute
valid_lft forever preferred_lft forever
3: virbr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default qlen 1000
link/ether 52:54:00:2e:55:62 brd ff:ff:ff:ff:ff:ff
inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0
valid_lft forever preferred_lft forever
4: virbr0-nic: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast master virbr0 state DOWN group default qlen 1000
link/ether 52:54:00:2e:55:62 brd ff:ff:ff:ff:ff:ff
[root@yuanlai-0224 ~]#
[root@yuanlai-0224 ~]#
[root@yuanlai-0224 ~]# ping baidu.com
PING baidu.com (220.181.38.148) 56(84) bytes of data.
64 bytes from 220.181.38.148 (220.181.38.148): icmp_seq=1 ttl=128 time=8.80 ms
64 bytes from 220.181.38.148 (220.181.38.148): icmp_seq=3 ttl=128 time=7.45 ms
64 bytes from 220.181.38.148 (220.181.38.148): icmp_seq=4 ttl=128 time=7.10 ms