重庆交通大学网络系统集成实验报告实验课程:系统集成与规划实验地点:实验中心班级:08级通信工程学号:*********名:**实验日期:2011年 6 月26 日1实验一路由器广域网PPP封装PAP验证配置一、实验目的1、掌握理解封装匹配2、掌握PAP验证配置3、理解验证过程二、应用环境1、企业环境中异地的互连通常要经过第三方的网络,比如网通、电信等等,所以与局域网的配置不同。
2、广域网通常需要付费、带宽比较有限、可靠性相比局域网要低。
3、基于安全的考虑,需要路由器以方经过验证后才能建立连接。
三、实验设备1、DCR-2626 两台2、CR-V35MT 一条3、CR-V35FC 一条四、实验拓扑五、实验要求DCR1 DCR2接口IP地址接口IP地址S0/1 DCE 192.168.1.1 S0/2 DTE 192.168.1.2帐号密码帐号密码DCR1 DCN1 DCR2 DCN2六、实验步骤第一步DCR-1的配置Router>enable 进入特权模式Router#config 进入全局配置模式Router_config#hostname DCR1 修改机器名DCR1_config#aaa authentication ppp test local 定义验证DCR1_config#username DCR2 password DCN2 设置账号密码DCR1_config#interface serial 0/1 进入接口模式DCR1_config_s0/1#ip address 192.168.1.1 255.255.255.0 设置IP地址DCR1_config_s0/1#encapsulation ppp 封装PPP协议DCR1_config_s0/1#ppp authentication pap test 设置验证方式DCR1_config_s0/1#ppp pap sent-username DCR1 password DCN1 设置发送给对方的账号密码DCR1_config_s0/1#physical-layer speed 64000 设置DCE时钟频率DCR1_config_s0/1#no shutdown第二步查看配置DCR1#show interface s0/1 查看接口状态第三步DCR2的配置Router>enable 进入特权模Router#config 进入全局配置模式Router_config#hostname DCR2 修改机器名DCR2_config#aaa authentication ppp test local 定义验证DCR2_config#username DCR2 password DCN2 设置账号密码DCR2_config#interface serial 0/2 进入接口模式DCR2_config_s0/2#ip address 192.168.1.2 255.255.255.0 设置IP地址DCR2_config_s0/2#encapsulation ppp 封装PPP协议DCR2_config_s0/2#ppp authentication pap test 设置验证方式DCR2_config_s0/2#ppp pap sent-username DCR1 password DCN1设置发送给对方的账号密码DCR2_config_s0/2#physical-layer speed 64000 设置DTE时钟频率DCR2_config_s0/2#no shutdown第四步查看配置DCR2#show interface serial 0/2 查看接口状态第五步测试连通性DCR1#ping 192.168.1.2七、实验结果路由器双方通过验证方式建立了建接八、实验总结通过这次实验,我基本掌握了封装匹配原理以及过程,并且动手对PAP进行了验证配置,对整个实验过程还算比较成功,对路由器,交换机的配置也回忆了一遍,加深了印象。
实验二跨交换机VLAN之间的通信一、实验目的1、了解IEEE802.1Q的实现方法,掌握跨二层交换机相同VLAN间通信的调试方法2、了解交换机接口的trunk模式和access模式二、实验设备1.DCS-3600交换机2台2.PC机2台3.直通网络3根三、实验拓扑四、实验要求在交换机1、VLAN200.VLAN 端口成员100 1-8200 9-16Trunk口24使得交换机之间VLAN100和VLAN200成员之间不能互相访问。
设备IP地址Mask交换机1 192.168.1.11 255.255.255.0交换机2 192.168.1.12 255.255.255.0PC1 192.168.1.101 255.255.255.0PC2 192.168.1.102 255.255.255.0通。
PC1、PC2分别接在不同的交换机VLAN的成员端口9-16上,两台PC可以互相ping 通。
PC1和PC2接在不同VLAN的成员端口上则互相ping不通。
若实验结果和理论相符,则本实验完成五、实验步骤第一步:给交换机设置标示符和管理IP交换机1:DCS-3600-26>enableDCS-3600-26#configDCS-3600-26(config)#hostname switch1switch1 (config)#interface vlan1switch1(config-If-Vlan1)#ip address 192.168.1.11 255.255.255.0 switch1(config-If-Vlan1)#no shutdownswitch1 (config-If-Vlan1)#exit交换机2:DCS-3600-26>enableDCS-3600-26#configDCS-3600-26(config)#hostname switch2Switch2(config)#interface vlan1Switch2(config-If-Vlan1)#ip address 192.168.1.12 255.255.255.0 Switch2(config-If-Vlan1)#no shutdownSwitch2(config-If-Vlan1)#exit第二步:在交换机中创建vlan100和vlan200,并添加端口交换机1:switch1 (config)#vlan 100switch1 (Config-Vlan100)#switchport interface ethernet 0/0/1-8switch1 (Config-Vlan100)#exitswitch1 (config)#vlan 200switch1 (Config-Vlan200)# switchport interface ethernet 0/0/9-16 switch1 (Config-Vlan200)#exit交换机2:Switch2 (config)#vlan 100Switch2 (Config-Vlan100)#switchport interface ethernet 0/0/1-8 Switch2 (Config-Vlan100)#exitSwitch2 (config)#vlan 200Switch2 (Config-Vlan200)# switchport interface ethernet 0/0/9-16 Switch2 (Config-Vlan200)#exit第三步:验证配置switch1 (config)#show vlanswitch2 (config)#show vlan第四步:设置交换机Trunk端口交换机1Switch1(config)#interface ethernet0/0/24Switch1(config-ethernet0/0/24)#switchport mode trunkSwitch1(config-ethernet0/0/24)#exitSwitch1(config)#交换机2配置同交换机1一样第五步:验证配置将交换机1和交换机2用直通网线连接上。
交换机1 ping 交换机2:Switch1#ping 192.168.1.12能ping 通表明交换机之前trunk链路已经成功建立六、实验结果七、实验总结通过这次实验,我学到并巩固了以前学的知识,比如如何配置交换机,还掌握跨二层交换机相同VLAN间通信的调试方法,并且对交换机接口的trunk模式和access模式有所了解了,在这次实验中,成功的跨了交换机VLAN之间进行通信。
实验三交换机DHCP服务器的配置一、实验目的1、了解DHCP原理2、熟悉掌握交换机作为DHCP服务器的配置方法3、了解该功能的广泛应用二、应用环境大型网络一般都采用DHCP协议作为地址分配的方法,需要为网络配置多台DHCP服务器旋转在网络的不同位置。
为减轻网络管理员和用户的配置负担,我们可以将支持DHCP 的交换机配置成DHCP服务器三、实验设备1、D CRS-5600-262、P C机1-3台3、直通线若干四、实验要求为处于不同VLAN的PC机设置DHCP服务器在交换机上划分一个基于端口的VLAN:VLAN100五、实验步骤第一步:创建VLAN100switch (config)#vlan 100switch (Config-Vlan100)#switchport interface ethernet 0/0/1-8switch (Config-Vlan100)#exit第二步:给交换机设置IP地址switch (config)#interface vlan1switch (config-If-Vlan1)#ip address 192.168.1.1 255.255.255.0switch (config-If-Vlan1)#no shutdownswitch (config-If-Vlan1)#exitswitch (config)#interface vlan100switch (config-If-Vlan1)#ip address 192.168.100.1 255.255.255.0switch (config-If-Vlan1)#no shutdown第三步:配置DHCPswitch (config)#service dhcpswitch (config)#ip dhcp pool testAswitch (dhcp-testA-config)#network-address 192.168.100.0 0.0.0.255switch (dhcp-testA-config)#lease 3switch (dhcp-testA-config)#defaulot-router 192.168.100.1switch (dhcp-testA-config)#dns-server 192.168.1.1switch (dhcp-testA-config)#exit六、实验结果PC接入到交换机1-8号端口,使用“ipconfig/renew”命令在DOS命令中检查得到了更新的IP地址,接入到9-24号端口,则无法更新IP地址七、实验总结通过这次实验,我已基本了解了DHCP原理,并且熟悉掌握交换机作为DHCP服务器的配置方法,虽然在做实验的过程中遇到过一些困难,但经过和老师,同学的探讨,最后还是掌握了DHCP服务器的配置方法。