Home > Article > Operation and Maintenance > What should I do if centos7 cannot access the Internet in the virtual machine?
First, enter the /etc/sysconfig/network-scripts/ directory:
Command:
cd /etc/sysconfig/network-scripts
Then check ifcfg-ens33 in the file in the directory, usually this is it. Some people may have other numbers. Use the vim command to open it for editing:
Command:
vim ifcfg-ens33
(Recommended tutorial: centos usage tutorial)
At this time, enter the vim editing content, change ONBOOT=no to ONBOOT=yes, and then Save and exit:
#Finally enter the command service network restart in the terminal to restart the network service.
Command:
service network restart
The above is the detailed content of What should I do if centos7 cannot access the Internet in the virtual machine?. For more information, please follow other related articles on the PHP Chinese website!