最近,开始使用centos 7.2系统,在这里分享一下我的基本网卡操作。在安装完系统后,对系统进行简单的配置,连接Xshell,方便使用。以下是我的操作步骤:
1.虚拟机的网络设置连接为VMnet8 本地Vmnet8网卡的IP为172.18.19.1
2.配置网卡文件
#vim /etc/sysconfig/network-scripts/ifcfg-eno16777736
IPADDR0=172.18.19.213
PREFIX0=24
GATEWAY0=172.18.19.1
DNS1=172.8.1.1
ONBOOT=yes
3.重启网络服务(二选一)
#servier network restart
#systemctl restart network.service
4.查看网卡信息(二选一)
#ifconfig
#ip addr
5.配置防火墙,开启80端口、3306端口
CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。
1、关闭firewall:
#systemctl stop firewalld.service #停止firewall
#systemctl disable firewalld.service #禁止firewall开机启动
6.安装并配置iptables防火墙 ,开启22,80,306端口(安装前,挂载磁盘,配置yum)
6.1挂载光盘
1.设置里选CD-ROM中的已连接
2.命令:
[root@wen-7 ~]# mount /dev/cdrom /mnt
mount: /dev/sr0 写保护,将以只读方式挂载
6.2配置yum
[root@wen-7 ~]# cd /etc/yum.repos.d/ 会看到系统默认的一些以Centos开头文件, 是网络yum源,暂不使用,可以创建一个文件,mv移动到文件里以后使用
[root@wen-7 yum.repos.d]# ls
1 yum.repo
[root@wen-7 yum.repos.d]# cat yum.repo 创建一个以repo为文件类型的文本,配置如下:
[yum]
name=yum
gpgcheck=0
enabled=1
baseurl=file:///mnt
[root@wen-7 yum.repos.d]# yum repolist #检查yum是否配置成功,结果如下,表示已加载成功软件包,可正常使用yum了
已加载插件:fastestmirror,langpacks
Loading mirror speeds from cached hostfile
源标识 源名称 状态
yum yum 9,007
repolist: 9,007
6.3安装iptables
#yum install iptables-services #安装
#vi /etc/sysconfig/iptables #编辑防火墙配置文件
# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT
:wq! #保存退出
#systemctl restart iptables.service #最后重启防火墙使配置生效
#systemctl enable iptables.service #设置防火墙开机启动
注:以上做法是开启防火墙,运用规则 通过22端口使用虚拟终端连接系统。新手建议关闭防火墙
6.4关闭防火墙
#systemctl stop iptables.service #最后重启防火墙使配置生效
7.关闭SELINUX
#vi /etc/selinux/config
#SELINUX=enforcing #注释掉
#SELINUXTYPE=targeted #注释掉
SELINUX=disabled #增加
:wq! #保存退出#此做法必须重启系统,才能使配置生效,是配置永久生效!
#setenforce 0 #使配置立即生效 但是配置是临时生效 关机后selinux仍开启 ,不用重启系统
建议:两步同时使用,下次开机不用再配置,并满足现在使用
8.查看主机是否与外界通常
#ping 172.18.19.213
9.shelll连接虚拟机
我已经成功连接了,你呢?
原文链接:https://www.f2er.com/centos/381557.html