主要内容:
1.网卡配置文件:/etc/sysconfig/network-scripts/ifcfg-eth0或ens33
(1).
TYPE=Ethernet 网卡类型:以太网(互联网)
BOOTPROTO=none 标记/设置网卡获取ip的方式
方式:1.BOOTPROTO=DHCP : 自动获取IP地址;
2.BOOTPROTO=none/static 网卡ip是固定的(静态)
NAME=ens33 网卡名称
UUID=ec2ab149-8316-495e-8883-bbded3f1e53e 标识符,做到在系统中唯一
DEVICE=ens33 网卡名称
ONBOOT=yes 是否在开机的时候启动网卡
IPADDR=10.0.0.201 网卡IP地址
PREFIX=24 子网掩码(NETMASK=255.255.255.0)
作用:决定一个局域网中最多有多少台机器(ip地址)
GATEWAY=10.0.0.254 默认网关(数据进出的入口或出口)
DNS1=10.0.0.254 域名解析服务器 jd.com(域名)--DNS-->转化为ip地址
(2).DNS及它的作用和修改
DNS:域名===>解析===>IP地址
Domain Name Server /System 域名解析服务/系统
配置:
网卡配置文件中
DNS1
DNS2
如:
地域 | DNS1 | DNS2 |
---|---|---|
公共的DNS服务器 | DNS1=10.0.0.254 | DNS2=11.0.0.254 |
阿里云 | DNS1=223.5.5.5 | DNS2=223.6.6.6 |
114 | DNS1=114.114.114.114 | DNS2=114.114.115.115 |
以上均不能用,使用机房提供的DNS |
配置代码:
[root@oldboyedu59 ~]#vim /etc/sysconfig/network-scripts/ifcfg-ens33
...更改编辑DNS
[root@oldboyedu59 ~]# systemctl restart network
[root@oldboyedu59 ~]# system control restart network
用系统控制命令 重启 所有网卡 ---->让配置生效
(3).需要自动补全命令参数
tab 键默认只能补全 命令名字或目录
bash-completion tab键自动补全增强版
yum install -y tree vim bash-completion
安装完成之后需要重新登录下系统(断开xshell 重新连接)生效
检查软件是否安装:
rpm -qa 显示系统中安装了的所有软件
-q query 查询
-a all
2.DNS配置文件:/etc/resolv.conf 解析DNS
区别联系 | 网卡里面配置DNS | /etc/resolv.conf 配置DNS |
---|---|---|
相同点 | 都可以配置DNS | 都可以配置DNS |
不通点 | DNS1=223.XXX和DNS2=xxxx | nameserver 223.5.5.5和nameserver 223.6.6.6 |
网卡里面永久生效(重启网卡后生效) | 临时生效(写完改完立即生效,重启后失效) |
3.主机名配置文件:/etc/hostname
Linux下面如何修改主机名:
通用的:
(1).hostname 命令 ---->查看主机名(临时的 重启后失效)
[root@oldboyedu59 ~]# hostnameoldboyedu59
[root@oldboyedu59 ~]# hostname oldboyedu59-lnb
(2).修改文件内容(写合同 永久 重启后生效)
[root@oldboyedu59 ~]# vim /etc/hostname
...
[root@oldedu59 ~]# reboot
进入直接编辑,然后重启即可
(3).检查:
[root@lnb ~]# hostname
lnb
[root@lnb ~]# cat /etc/hostname
lnb
Centos7特有的;
一条命令:
[root@oldboy-lnb ~]# hostnamectl set-hostname oldedu59
[root@oldboy-lnb ~]# hostname
oldedu59
[root@oldboy-lnb ~]# cat /etc//hostname
oldedu59
4.域名和ip地址的解析关系文件:/etc/hosts
(1).相关知识
网站更新过程(程序代码更新)
a.在开发人员自己电脑进行测试
b.公司内部机房进行测试
c.在IDC机房(数据中心)测试
d.程序代码放在用户使用的环境(生产环境/线上环境)
(2).作用
搭建测试环境(域名访问测试环境服务器),将域名解析到指定ip
[root@oldedu59 ~]# vim /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost
4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost
6.localdomain6
~
~
-- INSERT -- 2,4 All
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
10.0.0.201 guoav.com jd.com
~
~
"/etc/hosts" 3L, 188C written
[root@oldedu59 ~]# ping jd.com
PING guoav.com (10.0.0.201) 56(84) bytes of data.
64 bytes from guoav.com (10.0.0.201): icmp_seq=1 ttl=64 time=0.023 ms
64 bytes from guoav.com (10.0.0.201): icmp_seq=2 ttl=64 time=0.025 ms
--- guoav.com ping statistics ---
6 packets transmitted, 6 received, 0% packet loss, time 5000ms
rtt min/avg/max/mdev = 0.023/0.031/0.042/0.010 ms
[root@oldedu59 ~]# ping guoav.com
PING guoav.com (10.0.0.201) 56(84) bytes of data.
64 bytes from guoav.com (10.0.0.201): icmp_seq=1 ttl=64 time=0.026 ms
--- guoav.com ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 4000ms
rtt min/avg/max/mdev = 0.026/0.028/0.030/0.006 ms
5.在开机的时候自动挂载命令:/etc/fstab
[root@oldedu59 ~]# cat /etc/fstab
#
# /etc/fstab
# Created by anaconda on Tue Mar 26 11:38:43 2019
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=0b447a33-b0b9-483e-a8e8-205df15ca0f6 / xfs defaults 0 0
UUID=5f8b4599-b7b8-4b26-a653-97fef3e0e65a /boot xfs defaults 0 0
UUID=2660ff3b-9079-4aac-af70-8721926a24bb swap swap defaults 0 0
[root@oldedu59 ~]# #第一列 设备名称
[root@oldedu59 ~]# #第二列 挂载点(入口)
6.存放开机自启动程序命令文件:/etc/rc.local
[root@oldedu59 ~]# cat /etc/rc.local
#!/bin/bash
# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES
#
# It is highly advisable to create own systemd services or udev rules
# to run scripts during boot instead of using this file.
#
# In contrast to previous versions due to parallel execution during boot
# this script will NOT be run after all other services.
#
# Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure
# that this script will be executed during boot.
touch /var/lock/subsys/local