设计性实验报告

计算机与信息技术学院设计性实验报告

一、实验目的

通过对网络设备的连通和对拓扑的分析,加深对常见典型局域网拓扑的理解;通过路由建立起网络之间的连接,熟悉交换机、路由器的基本操作命令,了解网络路由的设计与配置。

二、实验仪器或设备

二层交换机五台、三层交换机一台, 路由器两台,学生实验主机五台及一台服务器

三、总体设计(设计原理、设计方案及流程等)

1、三层交换机上划分VLAN2 VLAN3 VLAN4 VLAN5 VLAN6并且配置DHCP。

2、物理学院、化学院最多分计算机有250台,生物政管学院最多有120台计算机和服务器,需要对生物和政管学院划分子网。

3、三层交换机和出口路由器Ri相连。

4、局域网内部三层交换机和路由器Ri间利用RIPv2实现全网互通。

5、pc0 pc1 pc2 pc3 的ip地址动态获得,对pc4配置ip 50.255.55.2

最后的连接图如下,实现了全网互通。

四、实验步骤(包括主要步骤、代码分析等)

1、 在三层交换机上划分出vlan2、vlan3、vlan4、vlan5、vlan6分别对应着物理、化学、生物、政管和校外,并配置相应的接口IP以及DHCP。

Switch>en

Switch#config ter

S0# vlan 2

S0(config-vlan)#exit

S0#vlan 3

S0(config-vlan)#exit

S0#vlan 4

S0(config-vlan)#exit

S0#vlan 5

S0(config-vlan)#exit

S0#vlan 6

S0(config-vlan)#exit

S0(config)#int f0/2

S0(config-if)#sw mod acc

S0(config-if)#sw acc vlan 2

S0(config-if)#exit

S0(config)#int vlan 3

S0(config-if)#ip add 210.42.243.1 255.255.255.0

S0(config-if)#no sh

S0(config-if)#exit

S0(config)#int f0/3

S0(config-if)#sw mod acc

S0(config-if)#sw acc vlan 3

S0(config-if)#exit

S0(config)#int vlan 4

S0(config-if)#ip add 210.42.244.1 255.255.255.128

S0(config-if)#no sh

S0(config-if)#exit

S0(config)#int f0/4

S0(config-if)#sw mod acc

S0(config-if)#sw acc vlan 4

S0(config-if)#exit

S0(config)#int vlan 5

S0(config-if)#ip add 210.42.244.129 255.255.255.128

S0(config-if)#no sh

S0(config-if)#exit

S0(config)#int f0/5

S0(config-if)#sw mod acc

S0(config-if)#sw acc vlan 5

S0(config-if)#exit

S0(config)#int vlan 6

S0(config-if)#ip add 192.168.1.1 255.255.255.0

S0(config-if)#no sh

S0(config-if)#exit

S0(config)#int f0/1

S0(config-if)#sw mod acc

S0(config-if)#sw acc vlan 6

给三层交换机配置DHCP

S0(config)#ip dhcp pool wuli

S0(dhcp-config)#net 210.42.242.0 255.255.255.0 S0(dhcp-config)#default-router 210.42.242.1

S0(dhcp-config)#dns 192.168.3.1

S0(dhcp-config)#exit

S0(config)#ip dhcp pool huaxue

S0(dhcp-config)#net 210.42.243.0 255.255.255.0 S0(dhcp-config)#default-router 210.42.243.1

S0(dhcp-config)#dns 192.168.3.1

S0(dhcp-config)#exit

S0(config)#ip dhcp pool shengwu

S0(dhcp-config)#net 210.42.244.0 255.255.255.128 S0(dhcp-config)#default-router 210.42.244.1

S0(dhcp-config)#dns 192.168.3.1

S0(dhcp-config)#exit

S0(config)#ip dhcp pool zhengguan

S0(dhcp-config)#net 210.42.244.128 255.255.255.128

S0(dhcp-config)#default-router 210.42.244.129

S0(dhcp-config)#dns 192.168.3.1

S0(dhcp-config)#exit

在三层交换机上配置RIP-2

S0(config)#route rip

S0(config-router)#net 192.168.1.0

S0(config-router)#net 210.42.242.0

S0(config-router)#net 210.42.243.0

S0(config-router)#net 210.42.244.0

S0(config-router)#net 210.42.244.129

S0(config-router)#exit

S0(config)#router rip

S0(config-router)#version 2

S0(config-router)#no auto-summary

S0(config-router)#exit

三层交换机路由表

Switch#sh ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route

Gateway of last resort is not set

50.0.0.0/24 is subnetted, 1 subnets

R 50.255.55.0 [120/2] via 192.168.1.2, 00:00:05, Vlan6

C 192.168.1.0/24 is directly connected, Vlan6

R 210.42.240.0/24 [120/1] via 192.168.1.2, 00:00:05, Vlan6 R 210.42.241.0/24 [120/1] via 192.168.1.2, 00:00:05, Vlan6

C 210.42.242.0/24 is directly connected, Vlan2

C 210.42.243.0/24 is directly connected, Vlan3

210.42.244.0/25 is subnetted, 2 subnets

C 210.42.244.0 is directly connected, Vlan4

C 210.42.244.128 is directly connected, Vlan5

2、 对Ri进行配置

Ri(config)#int f0/0

Ri(config-if)#ip add 210.42.241.1 255.255.255.0

Ri(config-if)#no sh

Ri(config-if)#exit

Ri(config)#int f0/1

Ri(config-if)#ip add 192.168.1.2 255.255.255.0

Ri(config-if)#no sh

Ri(config)#int s1/0

Ri(config-if)#ip add 210.42.240.1 255.255.255.0

Ri(config-if)#no sh

Ri(config-if)#clock rate 64000

Ri(config-if)#exit

在Ri交换机上配置RIP-2

Ri(config)#router rip

Ri(config-router)#net 192.168.1.0

Ri(config-router)#net 210.42.241.0

Rir(config-router)#net 210.42.240.0

Ri(config-router)#router rip

Ri(config-router)#version 2

Ri(config-router)#no auto-summary

Ri(config-router)#exit

Ri的路由表

Router#sh ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route

Gateway of last resort is not set

50.0.0.0/24 is subnetted, 1 subnets

R 50.255.55.0 [120/1] via 210.42.240.2, 00:00:13, Serial1/0

C 192.168.1.0/24 is directly connected, FastEthernet0/1

C 210.42.240.0/24 is directly connected, Serial1/0

C 210.42.241.0/24 is directly connected, FastEthernet0/0

R 210.42.242.0/24 [120/1] via 192.168.1.1, 00:00:03, FastEthernet0/1

R 210.42.243.0/24 [120/1] via 192.168.1.1, 00:00:03, FastEthernet0/1

210.42.244.0/25 is subnetted, 2 subnets

R 210.42.244.0 [120/1] via 192.168.1.1, 00:00:03, FastEthernet0/1

R 210.42.244.128 [120/1] via 192.168.1.1, 00:00:03, FastEthernet0/1

3、 对Rj进行配置

Rj>enable

Rj#config

Rj(config)#int f0/0

Rj(config-if)#ip add 50.255.55.1 255.0.0.0

Rj(config-if)#no sh

Rj(config-if)#exit

Rj(config)#int s1/0

Rj(config-if)#ip add 210.42.240.2 255.255.255.0

Rj(config-if)#no sh

在Rj交换机上配置RIP-2

Rj(config)#router rip

Rj(config-router)#net 50.255.55.0

Rj(config-router)#net 210.42.240.0

Rj(config-router)#router rip

Rj(config-router)#version 2

Rj(config-router)#no auto-summary

Rj(config-router)#exit

Rj的路由表

Router#sh ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route

Gateway of last resort is not set

50.0.0.0/24 is subnetted, 1 subnets

C 50.255.55.0 is directly connected, FastEthernet0/0

R 192.168.1.0/24 [120/1] via 210.42.240.1, 00:00:23, Serial1/0

C 210.42.240.0/24 is directly connected, Serial1/0

R 210.42.241.0/24 [120/1] via 210.42.240.1, 00:00:23, Serial1/0 R 210.42.242.0/24 [120/2] via 210.42.240.1, 00:00:23, Serial1/0 R 210.42.243.0/24 [120/2] via 210.42.240.1, 00:00:23, Serial1/0 210.42.244.0/25 is subnetted, 2 subnets

R 210.42.244.0 [120/2] via 210.42.240.1, 00:00:23, Serial1/0 R 210.42.244.128 [120/2] via 210.42.240.1, 00:00:23, Serial1/0

4、 配置电脑IP地址

Pc0,pc1,pc2,pc3是通过dhcp来自动获取地址。

Pc4用dhcp获取ip地址失败了,所以我改为了静态的ip地址

Ip:50.255.55.2

Subnet mask:255.0.0.0

Default gateway:50.255.55.1

DNS server:50.255.50.1

五、结果分析与总结

PC0获取的IP地址:

PC1的IP的地址:

PC2的IP地址:

PC3的IP地址:

通过PC0与校内的电脑PC1进行ping:

用PC1与校外网PC4进行

ping:

用校外PC4与校内PC2进行ping:

PC0,PC1,PC2,PC3,PC4两两之间都实现了互通,这里就不再一一展示赘述。 总结:

1.做实验的过程的讲过的实验报告可以作为参考

2.由于每个vlan有接入计算机数目的限制,所以计算机在分配ip地址时,要注意子网掩码的设置,已保证达到相应的目标。

2.实验比较复杂,细节比较多,做实验的时候有耐心;

3.在对pc4进行dhcp设置时,对Rj输入了相应的代码:

Rj(config)#ip dhcp pool xioawai

Rj (dhcp-config)#net 50.255.55.0 255.0.0.0 Rj(dhcp-config)#default-router 50.255.55.1

Rj(dhcp-config)#dns 50.255.50.1

Rj(dhcp-config)#exit

但是获取dhcp失败了,所以进行了静态ip地址配置,在课下还应该对查找资料,争取弄明白。

4.做的过程中应该认真仔细,一个符号的错误就可能导致运行不出来,养成细心的习惯;

教师签名:

2014年 月 日

计算机与信息技术学院设计性实验报告

一、实验目的

通过对网络设备的连通和对拓扑的分析,加深对常见典型局域网拓扑的理解;通过路由建立起网络之间的连接,熟悉交换机、路由器的基本操作命令,了解网络路由的设计与配置。

二、实验仪器或设备

二层交换机五台、三层交换机一台, 路由器两台,学生实验主机五台及一台服务器

三、总体设计(设计原理、设计方案及流程等)

1、三层交换机上划分VLAN2 VLAN3 VLAN4 VLAN5 VLAN6并且配置DHCP。

2、物理学院、化学院最多分计算机有250台,生物政管学院最多有120台计算机和服务器,需要对生物和政管学院划分子网。

3、三层交换机和出口路由器Ri相连。

4、局域网内部三层交换机和路由器Ri间利用RIPv2实现全网互通。

5、pc0 pc1 pc2 pc3 的ip地址动态获得,对pc4配置ip 50.255.55.2

最后的连接图如下,实现了全网互通。

四、实验步骤(包括主要步骤、代码分析等)

1、 在三层交换机上划分出vlan2、vlan3、vlan4、vlan5、vlan6分别对应着物理、化学、生物、政管和校外,并配置相应的接口IP以及DHCP。

Switch>en

Switch#config ter

S0# vlan 2

S0(config-vlan)#exit

S0#vlan 3

S0(config-vlan)#exit

S0#vlan 4

S0(config-vlan)#exit

S0#vlan 5

S0(config-vlan)#exit

S0#vlan 6

S0(config-vlan)#exit

S0(config)#int f0/2

S0(config-if)#sw mod acc

S0(config-if)#sw acc vlan 2

S0(config-if)#exit

S0(config)#int vlan 3

S0(config-if)#ip add 210.42.243.1 255.255.255.0

S0(config-if)#no sh

S0(config-if)#exit

S0(config)#int f0/3

S0(config-if)#sw mod acc

S0(config-if)#sw acc vlan 3

S0(config-if)#exit

S0(config)#int vlan 4

S0(config-if)#ip add 210.42.244.1 255.255.255.128

S0(config-if)#no sh

S0(config-if)#exit

S0(config)#int f0/4

S0(config-if)#sw mod acc

S0(config-if)#sw acc vlan 4

S0(config-if)#exit

S0(config)#int vlan 5

S0(config-if)#ip add 210.42.244.129 255.255.255.128

S0(config-if)#no sh

S0(config-if)#exit

S0(config)#int f0/5

S0(config-if)#sw mod acc

S0(config-if)#sw acc vlan 5

S0(config-if)#exit

S0(config)#int vlan 6

S0(config-if)#ip add 192.168.1.1 255.255.255.0

S0(config-if)#no sh

S0(config-if)#exit

S0(config)#int f0/1

S0(config-if)#sw mod acc

S0(config-if)#sw acc vlan 6

给三层交换机配置DHCP

S0(config)#ip dhcp pool wuli

S0(dhcp-config)#net 210.42.242.0 255.255.255.0 S0(dhcp-config)#default-router 210.42.242.1

S0(dhcp-config)#dns 192.168.3.1

S0(dhcp-config)#exit

S0(config)#ip dhcp pool huaxue

S0(dhcp-config)#net 210.42.243.0 255.255.255.0 S0(dhcp-config)#default-router 210.42.243.1

S0(dhcp-config)#dns 192.168.3.1

S0(dhcp-config)#exit

S0(config)#ip dhcp pool shengwu

S0(dhcp-config)#net 210.42.244.0 255.255.255.128 S0(dhcp-config)#default-router 210.42.244.1

S0(dhcp-config)#dns 192.168.3.1

S0(dhcp-config)#exit

S0(config)#ip dhcp pool zhengguan

S0(dhcp-config)#net 210.42.244.128 255.255.255.128

S0(dhcp-config)#default-router 210.42.244.129

S0(dhcp-config)#dns 192.168.3.1

S0(dhcp-config)#exit

在三层交换机上配置RIP-2

S0(config)#route rip

S0(config-router)#net 192.168.1.0

S0(config-router)#net 210.42.242.0

S0(config-router)#net 210.42.243.0

S0(config-router)#net 210.42.244.0

S0(config-router)#net 210.42.244.129

S0(config-router)#exit

S0(config)#router rip

S0(config-router)#version 2

S0(config-router)#no auto-summary

S0(config-router)#exit

三层交换机路由表

Switch#sh ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route

Gateway of last resort is not set

50.0.0.0/24 is subnetted, 1 subnets

R 50.255.55.0 [120/2] via 192.168.1.2, 00:00:05, Vlan6

C 192.168.1.0/24 is directly connected, Vlan6

R 210.42.240.0/24 [120/1] via 192.168.1.2, 00:00:05, Vlan6 R 210.42.241.0/24 [120/1] via 192.168.1.2, 00:00:05, Vlan6

C 210.42.242.0/24 is directly connected, Vlan2

C 210.42.243.0/24 is directly connected, Vlan3

210.42.244.0/25 is subnetted, 2 subnets

C 210.42.244.0 is directly connected, Vlan4

C 210.42.244.128 is directly connected, Vlan5

2、 对Ri进行配置

Ri(config)#int f0/0

Ri(config-if)#ip add 210.42.241.1 255.255.255.0

Ri(config-if)#no sh

Ri(config-if)#exit

Ri(config)#int f0/1

Ri(config-if)#ip add 192.168.1.2 255.255.255.0

Ri(config-if)#no sh

Ri(config)#int s1/0

Ri(config-if)#ip add 210.42.240.1 255.255.255.0

Ri(config-if)#no sh

Ri(config-if)#clock rate 64000

Ri(config-if)#exit

在Ri交换机上配置RIP-2

Ri(config)#router rip

Ri(config-router)#net 192.168.1.0

Ri(config-router)#net 210.42.241.0

Rir(config-router)#net 210.42.240.0

Ri(config-router)#router rip

Ri(config-router)#version 2

Ri(config-router)#no auto-summary

Ri(config-router)#exit

Ri的路由表

Router#sh ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route

Gateway of last resort is not set

50.0.0.0/24 is subnetted, 1 subnets

R 50.255.55.0 [120/1] via 210.42.240.2, 00:00:13, Serial1/0

C 192.168.1.0/24 is directly connected, FastEthernet0/1

C 210.42.240.0/24 is directly connected, Serial1/0

C 210.42.241.0/24 is directly connected, FastEthernet0/0

R 210.42.242.0/24 [120/1] via 192.168.1.1, 00:00:03, FastEthernet0/1

R 210.42.243.0/24 [120/1] via 192.168.1.1, 00:00:03, FastEthernet0/1

210.42.244.0/25 is subnetted, 2 subnets

R 210.42.244.0 [120/1] via 192.168.1.1, 00:00:03, FastEthernet0/1

R 210.42.244.128 [120/1] via 192.168.1.1, 00:00:03, FastEthernet0/1

3、 对Rj进行配置

Rj>enable

Rj#config

Rj(config)#int f0/0

Rj(config-if)#ip add 50.255.55.1 255.0.0.0

Rj(config-if)#no sh

Rj(config-if)#exit

Rj(config)#int s1/0

Rj(config-if)#ip add 210.42.240.2 255.255.255.0

Rj(config-if)#no sh

在Rj交换机上配置RIP-2

Rj(config)#router rip

Rj(config-router)#net 50.255.55.0

Rj(config-router)#net 210.42.240.0

Rj(config-router)#router rip

Rj(config-router)#version 2

Rj(config-router)#no auto-summary

Rj(config-router)#exit

Rj的路由表

Router#sh ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route

Gateway of last resort is not set

50.0.0.0/24 is subnetted, 1 subnets

C 50.255.55.0 is directly connected, FastEthernet0/0

R 192.168.1.0/24 [120/1] via 210.42.240.1, 00:00:23, Serial1/0

C 210.42.240.0/24 is directly connected, Serial1/0

R 210.42.241.0/24 [120/1] via 210.42.240.1, 00:00:23, Serial1/0 R 210.42.242.0/24 [120/2] via 210.42.240.1, 00:00:23, Serial1/0 R 210.42.243.0/24 [120/2] via 210.42.240.1, 00:00:23, Serial1/0 210.42.244.0/25 is subnetted, 2 subnets

R 210.42.244.0 [120/2] via 210.42.240.1, 00:00:23, Serial1/0 R 210.42.244.128 [120/2] via 210.42.240.1, 00:00:23, Serial1/0

4、 配置电脑IP地址

Pc0,pc1,pc2,pc3是通过dhcp来自动获取地址。

Pc4用dhcp获取ip地址失败了,所以我改为了静态的ip地址

Ip:50.255.55.2

Subnet mask:255.0.0.0

Default gateway:50.255.55.1

DNS server:50.255.50.1

五、结果分析与总结

PC0获取的IP地址:

PC1的IP的地址:

PC2的IP地址:

PC3的IP地址:

通过PC0与校内的电脑PC1进行ping:

用PC1与校外网PC4进行

ping:

用校外PC4与校内PC2进行ping:

PC0,PC1,PC2,PC3,PC4两两之间都实现了互通,这里就不再一一展示赘述。 总结:

1.做实验的过程的讲过的实验报告可以作为参考

2.由于每个vlan有接入计算机数目的限制,所以计算机在分配ip地址时,要注意子网掩码的设置,已保证达到相应的目标。

2.实验比较复杂,细节比较多,做实验的时候有耐心;

3.在对pc4进行dhcp设置时,对Rj输入了相应的代码:

Rj(config)#ip dhcp pool xioawai

Rj (dhcp-config)#net 50.255.55.0 255.0.0.0 Rj(dhcp-config)#default-router 50.255.55.1

Rj(dhcp-config)#dns 50.255.50.1

Rj(dhcp-config)#exit

但是获取dhcp失败了,所以进行了静态ip地址配置,在课下还应该对查找资料,争取弄明白。

4.做的过程中应该认真仔细,一个符号的错误就可能导致运行不出来,养成细心的习惯;

教师签名:

2014年 月 日


相关文章

  • 天然药物化学设计性镐药剂09实验方案
  • 天然药物化学设计性实验方案 生命科学与工程学院药物制剂专业 任课教师:李楠 孔阳 天然药物化学是药学专业的一门专业基础课,它涉及到有机化学.中药药剂学.生药学.波谱学等多个学科的内容,是运用化学.生药学的原理和方法来研究天然植物药的有效化学 ...查看


  • 实验三时序逻辑电路设计
  • 实验三 时序逻辑电路设计 一.实验目的 1.了解和逐步掌握一般时序逻辑电路的设计方法: 2.熟练掌握计数器模块的设计方法: 3.熟练掌握分频器模块的设计方法: 4.熟练掌握QuartusⅡ中锁相环模块的调用和使用方法: 5.熟练掌握数码管静 ...查看


  • 14年综合技能训练安排及要求
  • 综合技能训练实验(实习)计划书 一.实验(实习)目的.主要任务及要求 本实验环节主要目的在于培养电子科学与技术专业的学生掌握集成电路设计的综合技能.通过对集成电路设计工具的使用和完成相关集成电路的设计流程,从而达到培养学生专业综合技能训练的 ...查看


  • 计算机操作系统上机实验报告
  • 课程设计(上机实验) 报告 课程名称: 学生姓名: 学 号: 所在学院: 专 业: 指导教师: 年 月 日 课程设计(上机实验)报告填写说明 1.本报告作为指导教师对学生课程设计(上机实验)评分的依据材料之一.此报告应在指导教师指导下,由学 ...查看


  • [程序设计基础实验]实验教学大纲
  • <程序设计基础实验>实验教学大纲 课程编号:12411107 课程名称:程序设计基础实验 英文名称:Experiments on Fundamentals of Programming 课程性质:独立设课 教材与实验指导书名称: ...查看


  • [实验心理学]期末考卷
  • 期末考试试卷(A卷) 1.下列关于研究说法正确的有 a实验本质上是一种有控制的观察 b自然观察可以得到变量间明确的因果关系 c科学研究只有操纵和控制有关变量才能得到比较明确的因果关系 d 实验研究中额外变量的控制程度决定了内部效度和外部效度 ...查看


  • 五年级下册综合实践活动[学会实验研究方法]
  • 学会实验研究方法 授课年级 五年级 教材版本 山东科技出版社 一.教学分析 (一)教材分析 安排本活动主题的主要目的是引导学生了解实验研究的方法,知道实验研究的一般步骤,明确实验研究应注意的问题,知道实验报告的基本内容,初步体验实验研究的过 ...查看


  • 原型评价法实验报告
  • 学期 实 验 报 告 实验课程名称 电子产品设计基础实验报告 专 业 班 级 电信1101 电信1102 撰 写 者 龚博涵 组 员 李成翰 韩磊 林智翔 陈鹏 杨日孟 实验指导教师 杨锆 一.实验目的 在电子产品研发过程中,对于界面设计以 ...查看


  • 沪教版 八年级物理实验报告单
  • 八年级上册物理实验报告册 目录 二.用停表测量时间 3 4 四.探究光反射时的规律五.探究平面镜成像的特点六.探究光折射时的规律七.探究凸透镜成像的规律八.用天平测固体和液体的质量九.测量盐水和形状不规则固体的密度 一.用刻度尺测量长度 实 ...查看


  • 环艺实验室工作总结报告
  • 实验室工作总结报告 实验室名称: 环艺实践技能工作室 所在学校:浙江xx大学 实验室主任姓名:xxx 通讯地址:浙江xx大学艺术学院xxx 电话: xxxxxx E-Mail:xxxxxx 报告编制日期:2013年12月28日 一.实验室简 ...查看


热门内容