标签:
OSI 参考模型:
7应用层
6表示层
5会话层
4传输层 -- TCP / UDP (端口号)
3网络层 -- IP (原IP地址,目标IP地址)
2数据链路层 -- ARPA / ethernet (源MAC地址,目标MAC地址)
1物理层
发送方:数据从上层向下层走,是数据的封装过程
接收方:数据从下层向上层走,是数据的解封装过程
因为只有本层才可以读取本层的报头,所以达到一个同层对等通信的效果
IP地址:
32bit 以点分十进制形式表示
Ip地址分为网络部分和主机部分
A类IP 第一个比特是0 默认子网掩码为:255.0.0.0 默认网络部分是前8bi,,后24bit 是主机部分
B类IP 前两个比特是10 默认子网掩码为:255.255.0.0 默认网络部分是前16bit,后16bit 是主机部分
C类IP 前三个比特是110 默认子网掩码为:255.255.255.0 默认网络部分是前24bit,后8bit 是主机部分
D类IP 前四个比特是 1110 组播地址 224.0.0.0 – 239.255.255.255
E类IP 前四个比特是 1111 实验地址
私有地址范围(RFC1918):
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
特殊地址:
0.0.0.0 无IP地址
255.255.255.255 广播地址
127.0.0.0 – 127.255.255.255 本地地址
IP地址中主机部分全0 是本网络的网络地址
IP地址中主机部分全1 是本网络的广播地址
IOS基础
Cisco设备启动过程:
设备启动完成后,运行的是RAM中的IOS和running-config
模式间的切换:
Router> 用户模式
Router>enable 进入特权模式
Router# 特权模式
Router#configure terminal 进入全局配置模式
Router(config)# 全局配置模式
Router(config)#interface fastEthernet 0/0 进入接口配置模式
Router(config-if)# 接口配置模式
Router(config-if)#exit 退回上一模式
Router(config)#end 退回到特权模式
修改Hostname:
Router(config)#hostname R1
R1(config)#
设置登录设备时的提示语:
R1(config)#banner motd $ (以”$”字符为结束,可以自己定义)
Enter TEXT message. End with the character ‘$‘.
welcome$
R1(config)#
配置路由下接口地址:
R1(config)#interface fastEthernet 0/0 //进入 f0/0 接口
R1(config-if)#ip address 192.168.1.1 255.255.255.0 // 配置ip地址和掩码
R1(config-if)#no shutdown // 开启接口,默认是关闭的 关闭接口用shutdown 命令
R1(config-if)#end
保存配置:
R1#write
Building configuration...
[OK]
或:
R1#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
R1#
保存配置到TFTP服务器:
R1#copy running-config tftp:
Address or name of remote host []? 1.1.1.1 (tftp服务器IP地址)
Destination filename [R1-confg]? (保存到tftp服务器上叫什么名字)
从TFTP服务器拷贝配置到当前设备上:
R1#copy tftp: running-config
Address or name of remote host []? 1.1.1.1 (tftp服务器IP地址)
Source filename []? R1-confg (tftp服务器上文件的名字)
Destination filename [running-config]?
拷贝ios到TFTP服务器上:
R1#copy flash: tftp:
Source filename []? c1841-advipservicesk9-mz.124-15.T1.bin (本地的Ios 名称)
Address or name of remote host []? 1.1.1.1 (tftp服务器IP地址)
Destination filename [c1841-advipservicesk9-mz.124-15.T1.bin]? (保存到tftp服务器上叫什么名字)
从TFTP更新IOS到本地:
R1#copy tftp: flash:
Source filename []? c1841-advipservicesk9-mz.124-15.T1.bin (本地的Ios 名称)
Address or name of remote host []? 1.1.1.1 (tftp服务器IP地址)
如果flash不够放下新的IOS将提示覆盖原有的IOS,如果可以同时放下两个IOS需要:
R1(config)#boot system flash c1841-advipservicesk9-mz.124-15.T1.bin (选择启动的IOS)
R1#write
标签:
原文地址:http://www.cnblogs.com/jjp816/p/4446787.html