1.IP地址是什么?
主机唯一的标识,保证主机间正常通信
一种网络编码,用来确定网络中一个节点 逻辑地址
IP地址由32位二进制(32bit)组成
2.IP地址的组成
网络部分(network)、主机部分(hostname)
注:A类:1网+3主
B类:2网+2主
C类:3网+1主
3.IP地址的分类
A:1-126
B:128-191
C:192-223
D:224-239
E:240-255
注意:D、E不能分配给主机使用,组播和实验室留用
4.私有地址包括三组
A类:10.0.0.0-10.255.255.255
B类:172.16.0.0-172.31.255.255
C类:192.168.0.0-192.168.255.255
5.A、B、C三类地址的默认子网掩码
A类:255.0.0.0 /8
B类:255.255.0.0 /16
C类:255.255.255.0 /24
6.子网掩码的作用
用来确定IP的网络地址。
7.本地回环地址:127.0.0.1
8.思科常用命令
1.配置主机名:hostname
2.显示系统IOS名称及版本信息:show version
3.查看MAC地址表:show mac-address-table [dynamic]
4.指定接口双工模式:duplex 模式
模式:full:全双工 half:半双工 auto:自动协商
5.指定接口的通信速率:speed (10/100/1000/auto)
6.查看接口的双工模式和通信速率:sh int f0/24
9.常用重点命令
- 查看IP地址:ipconfig
- 测试网络连通性:ping
3.查看所有IP地址信息:ipconfig /all
4.路由追踪命令:tracert
10.常用Cisco命令
永不超时:
switch(config)#line con 0
switch(config-if)#exec-timeout 0 0
信息同步:
switch(config)#line con 0
switch(config-if)#logg sync
禁用域名解析:
switch(config)#no ip domain-lookup
路由器配置IP地址:
Router(config)#interface fastethernet 0/1
Router(config-if)#ip address ip-address subnet-mask
Router(config-if)#no shutdown
交换机ip地址设置:
Switch(config)#interface vlan 1
Switch(config-if)#ip address ip-address subnet-mask
Switch(config-if)#no shutdown
查看接口状态
Sw1#show int f0/1
查看接口ip和状态
Route#show ip int bri
查看当前配置:
Switch#show run
保存配置
Switch#write
删除配置
Switch#erase startup-config