centos7配置IP地址&CentOS7 修改hostname,ip地址以及hosts(永久生效)

CentOS7 修改hostname,ip地址以及hosts(永久生效)

https://blog.csdn.net/ntuxiaolei/article/details/81130866

在局域网内配置多节点场合, 通常用VMare装好一个linux系统后可以直接克隆,只要设定不同的IP地址及主机名就可以了。

1.修改hostname

①# hostname 

查看当前主机名

②#hostnamectl set-hostname ***

修改主机名

③#reboot

重启

 

2.修改IP地址

①#ifconfig

查看IP地址及网卡(IP地址:192.168.1.220 网卡:ens33)

②# vi /etc/sysconfig/network-scripts/ifcfg-ens33

编辑对应的网卡配置,修改IPADDR的值。

③#reboot

重启

3.修改hosts文件

①#vi /etc/hosts

最后行加上修改后的IP地址及对应的主机名

我增加的内容:192.168.1.222 node2 

②#reboot

重启

以上三个可以设置完毕后也最后一起重启。

centos7配置IP地址

https://www.cnblogs.com/yhongji/p/9336247.html

有关于centos7获取IP地址的方法主要有两种,1:动态获取ip;2:设置静态IP地址

在配置网络之前我们先要知道centos的网卡名称是什么,centos7不再使用ifconfig命令,可通过命令 IP addr查看,如图,网卡名为ens32,是没有IP地址的

centos7配置IP地址&CentOS7 修改hostname,ip地址以及hosts(永久生效)_第1张图片

 

1、动态获取ip(前提是你的路由器已经开启了DHCP)

修改网卡配置文件 vi /etc/sysconfig/network-scripts/ifcfg-ens32    (最后一个为网卡名称)

动态获取IP地址需要修改两处地方即可

(1)bootproto=dhcp

(2)onboot=yes

centos7配置IP地址&CentOS7 修改hostname,ip地址以及hosts(永久生效)_第2张图片

修改后重启一下网络服务即可 systemctl restart network

[root@mini ~]# systemctl restart network
[root@mini ~]# 

这样动态配置IP地址就设置好了,这个时候再查看一下ip addr 就可以看到已经获取了IP地址,且可以上网(ping 百度)

centos7配置IP地址&CentOS7 修改hostname,ip地址以及hosts(永久生效)_第3张图片

 

2、配置静态IP地址

设置静态IP地址与动态iIP差不多,也是要修改网卡配置文件 vi /etc/sysconfig/network-scripts/ifcfg-ens32    (最后一个为网卡名称)

(1)bootproto=static

(2)onboot=yes

(3)在最后加上几行,IP地址、子网掩码、网关、dns服务器

IPADDR=192.168.1.160
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
DNS1=119.29.29.29
DNS2=8.8.8.8

保存命令

按ESC键 跳到命令模式,然后:

:w 保存文件但不退出vi

:w file 将修改另外保存到file中,不退出vi

:w! 强制保存,不推出vi

:wq 保存文件并退出vi

:wq! 强制保存文件,并退出vi

q: 不保存文件,退出vi

:q! 不保存文件,强制退出vi

:e! 放弃所有修改,从上次保存文件开始再编辑

(4)重启网络服务

[root@mini ~]# systemctl restart network
[root@mini ~]# 

DNS服务器可以只配一个,我用的是两个免费的dns服务器,查看IP地址,测试联网

centos7配置IP地址&CentOS7 修改hostname,ip地址以及hosts(永久生效)_第4张图片

复制代码

[root@mini ~]# ip addr
1: lo:  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: ens32:  mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
    link/ether 00:0c:29:d2:42:55 brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.160/24 brd 192.168.1.255 scope global noprefixroute ens32
       valid_lft forever preferred_lft forever
    inet6 fe80::f86e:939e:ff9b:9aec/64 scope link noprefixroute
       valid_lft forever preferred_lft forever

[root@mini ~]# ping www.baidu.com
PING www.a.shifen.com (163.177.151.109) 56(84) bytes of data.
64 bytes from 163.177.151.109 (163.177.151.109): icmp_seq=1 ttl=55 time=27.5 ms
64 bytes from 163.177.151.109 (163.177.151.109): icmp_seq=2 ttl=55 time=35.2 ms
^C
--- www.a.shifen.com ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1008ms
rtt min/avg/max/mdev = 27.570/31.425/35.281/3.859 ms

1、centos6的网卡重启方法:service network restart
centos7的网卡重启方法:systemctl restart network

2、DNS配置文件:cat /etc/resolv.conf
设置主机和IP绑定信息:cat /etc/hosts
设置主机名:cat /etc/hostname

3、可以使用nmtui文本框方式修改IP

4、关闭防火墙并设置开机不启动
查看防火墙状态:systemctl status firewalld.service
关闭:systemctl stop firewalld
开启:systemctl start firewalld
开机自动关闭:systemctl disable firewalld
开机自动启动:systemctl enable firewalld
查看开机是否启动:chkconfig --list|grep network(RHLE6)

5、临时和永久关闭Selinux
临时关闭:
_getenforce
Enforcing

_setenforce 0
setenforce:SELinux is disabled

永久关闭:
_vim /etc/selinux/config

你可能感兴趣的:(系统维护(Windows,&,Linux),配置笔记)