zoukankan      html  css  js  c++  java
  • CentOS7.6配置ip

    CentOS7.6配置ip

    1、查看CentOS版本信息

    [root@localhost ~]# cat /etc/redhat-release 
    CentOS Linux release 7.6.1810 (Core)

    2、配置ip

    [root@localhost ~]# cd /etc/sysconfig/network-scripts/
    [root@localhost network-scripts]# vi ifcfg-ens160
    TYPE=Ethernet
    PROXY_METHOD=none
    BROWSER_ONLY=no
    BOOTPROTO=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=ens160
    UUID=c7e9416b-47bf-4360-95a0-96038e78fe40
    DEVICE=ens160
    ONBOOT=yes
    IPADDR=172.16.4.243
    NETMASK=255.255.252.0
    GATEWAY=172.16.7.254

    3、 关闭firewalld防火墙

    查看防火墙状态
    systemctl status firewalld.service
    关闭防火墙
    systemctl stop firewalld.service
    打开防火墙 systemctl start firewalld.service

    4、关闭selinux

    vi /etc/sysconfig/selinux

    #将SELINUX修改为disabled

    [root@localhost ~]# vi /etc/sysconfig/selinux
    
    
    # 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

     立即关闭 setenforce 0 

    
    
  • 相关阅读:
    hbase shell-namespace(命名空间指令)
    hbase shell-general(常规指令)
    hbase shell概述
    Codeforces Round #412 div2 ABCD
    Educational Codeforces Round 19
    CSU 1786 莫队+KDTree
    cdq分治入门and持续学习orz
    VK Cup 2017
    HRBUST 2072 树上求最大异或路径值
    UvaLive 5811 概率DP
  • 原文地址:https://www.cnblogs.com/connected/p/10477403.html
Copyright © 2011-2022 走看看