没有合适的资源?快使用搜索试试~ 我知道了~
linux网络相关操作 一、查看firewalld状态、关闭、开启、开机自动关闭、开机自动启动 [root@VM_0_12_centos ~]# systemctl status firewalld.service ● firewalld.service – firewalld – dynamic firewall daemon Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled) Active: inact
资源推荐
资源详情
资源评论
linux网络相关操作网络相关操作
linux网络相关操作
一、查看firewalld状态、关闭、开启、开机自动关闭、开机自动启动
[root@VM_0_12_centos ~]# systemctl status firewalld.service
● firewalld.service – firewalld – dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
Active: inactive (dead)
Docs: man:firewalld(1)
# systemctl stop firewalld
# systemctl start firewalld
# systemctl disable firewalld
# systemctl enable firewalld
二、临时或永久关闭selinux,一般生产线上的服务器也不开selinux
[root@VM_0_12_centos ~]# getenforce
Disabled
[root@VM_0_12_centos ~]# setenforce 0 临时关闭
setenforce: SELinux is disabled
# vim /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing – SELinux security policy is enforced.
# permissive – SELinux prints warnings instead of enforcing.
# disabled – No SELinux policy is loaded.
SELINUX=disabled 改这一行永久关闭改这一行永久关闭
# SELINUXTYPE= can take one of three values:
# targeted – Targeted processes are protected,
# minimum – Modification of targeted policy. Only selected processes are protected.
# mls – Multi Level Security protection.
SELINUXTYPE=targeted
改完后要reboot
三、网卡类型及操作
在centos7中,网卡以enX表示,en表示以太网,enX有下面三种类型:
o:主板板载网卡
p: 独立网卡,PCI网卡
s: 热插拔网卡,虚机网卡可以随时添加、删除
临时修改IP: ifconfig 网卡名称 x.x.x.x (netmask 子网掩码), 重启后失效
一块网卡添加多个IP
ifconfig 网卡名称:0 x.x.x.x netmask 子网掩码 –增加一个IP
ifconfig 网卡名称:1 x.x.x.x netmask 子网掩码 –再增加一个IP
ifconfig 网卡名称:0 del x.x.x.x –删除IP
ifdown eth0 禁用网卡
ifup eth0 启用网卡
1、编辑配置文件来永久修改IP
[root@VM_0_12_centos ~]# ls /etc/sysconfig/network-scripts/ifcfg-ens33
# vim /etc/sysconfig/network-scripts/ifcfg-ens33 网卡配置文件网卡配置文件
BOOTPROTO=dhcp none/static dhcp表示动态获取,static表示静态IP,none表示不指定,就是静态
DEVICE=eth0
HWADDR=52:54:00:e6:38:66
NM_CONTROLLED=no
ONBOOT=yes
PERSISTENT_DHCLIENT=yes
TYPE=Ethernet
USERCTL=no
IPADDR=192.168.1.63
PREFIX=24
GATEWAY=192.168.1.1
DNS1=114.114.114.114
DNS2=8.8.8.8
资源评论
weixin_38690402
- 粉丝: 5
- 资源: 1007
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功