IP地址的主要作用标识节点。
组成
32位 二进制组成 11111111,11111111,11111111,11111111
192.168.1.1
网络部分(标识不同的网络)和主机部分(标识不同网络中的某一台主机)组成
IP地址分类
五类
类别 | 范围 | 作用 |
A | 网+主+主+主 1~126 | 主机数量最多,大型网络中 |
B | 网+网+主+主 128~191 | 中等规模的网络环境中 |
C | 网+网+网+主 192~223 | 主机数少的小规模网络中 |
D | 224~239 | 组播通信 |
E | 240~255 | 科学研究保留地址 |
私有地址
10.0.0.0~10.255.255.255 /8
172.16.0.0~172.31.255.255 /16
192.168.0.0~192.168.255.255 /16
子网掩码
A类:255.0.0.0 /8
B类:255.255.0.0 /16
C类:255.255.255.0 /24
配置网络互通
R1配置
R1#conf t Enter configuration commands, one per line. End with CNTL/Z. R1(config)#int fa0/0 R1(config-if)#$192.168.200.1 255.255.255.0 R1(config-if)#no shutdown |
R2配置
R2#conf t Enter configuration commands, one per line. End with CNTL/Z. R2(config)#int fa0/0 R2(config-if)#ip address 192.168.200.2 255.255.255.0 R2(config-if)#no shutdown |
测试