1.IP地址
计算机要实现网络通信,就必须要有一个用于快速定位的网络地址
IP地址就是计算机在网络中的唯一身份ID
IP地址的组成:IP地址=网络地址+主机地址
什么叫IP ADDRESS
internet protocol ADDRESS ##网络进程地址
ipv4 ##internet protocol version 4
ip是由32个01组成,采用二进制
11111110.11111110.11111110.11111110 = 254.254.254.254
2.子网掩码
用来划分网络区域
子网掩码非0位置对应的ip上的数字表示这个ip的网络位
子网掩码0位对应的数字是ip的主机位
网络位表示网络区域
主机位表示网络区域内的某台主机
3.ip通信判定
网络位一致,主机位不一致的2个IP可以直接通讯
A类地址:172.25.254.0/8 (第一位是网络位)
B类地址:172.25.254.1/16 (第二位是网络位)
C类地址:172.25.254.1/24 (第三位是网络位)
8=255.0.0.0
16=255.255.0.0
24=255.255.255.0
4.网络设定工具
ping #检测网络是否畅通
ifconfig #查看或设定网络接口
ifconfig device(eth0网卡名称) ip/24 #设定
ifconfig device down #关闭
ifconfig device up #开启
1.临时设定
ip addr ##检测或设定网络接口
ip addr show #检测
ip addr add ip/24 dev device(eth0网卡名称) #设定
*注意:device名字是一个物理事实,你看到的是什么名字你就用什么名字
2.图形方式设定IP
nm-connection-editor ##nm-networkManager 有可能不生效
systemctl stop NetworkManager #记录网络服务状态
systemctl restart network
systemctl start NetworkManager
*以上三步操作可以重新启动网络服务连接网络不可达问题
3.命令的方式设定网络
1)使用设备名称
nmcli ##NetworkManager必须开启
nmcli device connect eth0 ##启用eth0网卡
nmcli device disconnect eth0 ##关闭eth0网卡
nmcli device show eth0 ##查看网卡信息
nmcli device status eth0 ##查看网卡服务接口信息
2)使用网络名称IP
为方便观察,先用nm-connection-editor将网络名改成westos
nmcli connection show ##显示网络信息
nmcli connection down westos ##关闭
nmcli connection up westos ##开启
nmcli connection delete westos ##删除
3)以命令行的方式添加网络
nmcli connection add type ethernet con-name westos ifname eth0 ip4 172.25.62.162/24
## 添加一个名字为westos,ip为172.25.62.162,子网掩码为255.255.255.0的以太网
nmcli connection add type ethernet con-name westos ifname eth0 autoconnection yes
##直接添加一个动态的网络
4)修改为动态的网络
nmcli connection modify westos ipv4.method auto
nmcli connection modify westos ipv4.method manual
nmcli connection modify westos ipv4.addresses 172.25.254.200/24
5.管理网络配置文件
网络配置目录
/etc/sysconfig/network-scripts/
网络配置文件的名命规则
ifcfg-xxxx
DEVICE=xxx ##设备名称
BOOTPROTO=dhcp|static|none ##设备工作方式
ONBOOT=yes ##网络服务开启时自动激活网卡
IPADDR= ##IP地址
PREFIX=24 ##子网掩码
NETMASK=255.255.255.0 ##子网掩码
NAME= ##接口名称(可有可无)
*nmcli connection delete westos 先删除,再添加(删除的是配置文件)
示例:
静态网络设定文件
vim /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
IPADDR=172.25.62.162
NETMASK=255.255.255.0
BOOTPROTO=none
NAME=westos ##加与不加在图形化看区别
systemctl restart network ##重启网络
ip addr show eth0 ##查看网络状态
一块网卡上配置多个IP
vim /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
IPADDR0=172.25.2.100
NETMASK0=255.255.255.0
BOOTPROTO=none
NAME=westos
IPADDR1=172.25.0.100
PREFIX1=24
6.网关
1.把真实主机变成路由器
systemctl stop libvirtd
systemctl restart firewalld
systemctl start libvirtd
firewall-cmd --list
firewall-cmd --permanent --add-masquerade
firewall-cmd --reload
firewall-cmd --list-all
public (default, active)
interfaces: br0 enp0s25 wlp3s0
sources:
services: dhcpv6-client ssh
ports:
masquerade: yes <<<地址伪装功能开启,真实主机变成路由器
forward-ports:
icmp-blocks:
rich rules:
2.设定虚拟机网关
vim /etc/sysconfig/network ##全局网关,针对所有没有设定网关的网卡生效
GATEWAY=172.25.254.250
vim /etc/sysconfig/network-scripts/ifcfg-eth0
GATEWAY0=172.25.254.250 ##档网卡中设定的IP有多个时,指定对于那个IP生效
GATEWAY=172.25.254.250 ##档网卡中设定的IP只有一个时
route -n ##查看网关
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 "172.25.254.250" 0.0.0.0 UG 1024 0 0 eth0
172.25.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
172.25.254.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
7.设定dns
domain name server == 域名解析服务 ##解析就是把域名变成IP
vim /etc/hosts ##本地解析文件
ip 域名
220.181.111.188 www.baidu.com
vim /etc/resolv.conf ##dns的指向文件
nameserver 114.114.114.114 ##当需要某个域名的IP地址时去问114.114.114.114
- 注意:
档网络工作模式为dhcp时
系统会自动获得ip 网关 dns
那么/etc/resolv.conf会被获得到的信息修改
如果不需要获得dns信息
在网卡配置文件中加入
PEERDNS=no
##网卡参数怎么写:/usr/share/doc/initscripts-9.49.37/sysconfig.txt
##11.设定解析的优先级
系统默认:
/etc/hosts > /etc/resolv.conf
vim /etc/nsswitch.conf
39 hosts: files dns ##/etc/hosts优先
vim /etc/nsswitch.conf
39 hosts: dns files ##/etc/resolv.conf dns指向优先
8.dhcp服务配置
先reset两台虚拟机
yum install dhcp -y
cp /usr/share/doc/dhcp*/dhcpd.conf.example /etc/dhcp/dhcpd.conf
vim /etc/dhcp/dhcpd.conf
#dhcpd.conf
# #
# Sample configuration file for ISC dhcpd
#
# option definitions common to all supported networks...
option domain-name "westos.com"; ##域名
option domain-name-servers 114.114.114.114; ##dns
default-lease-time 600; ##默认租约
max-lease-time 7200; ##最长租约
# Use this to enble / disable dynamic dns updates globally.
#ddns-update-style none;
# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
#authoritative;
#Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.
27 删除
28 删除
# This is a very basic subnet declaration.
subnet 172.25.254.0 netmask 255.255.255.0 { ##子网设定
range 172.25.254.160 172.25.254.200; ##IP地址池
option routers 172.25.254.250; ##网关
}
35行有面全删除