思科网络设备配置实训报告
- 格式:pdf
- 大小:489.14 KB
- 文档页数:10
四川机电职业技术学院
实 习 报 告
题目:网络设备配置与管理
指导教师:***
学生姓名:***
专业年级:12网络6班
一、《网络设备配置与管理》实习成绩评定表一、实习任务及要求
1、实习任务
(1)熟悉packet tracer模拟软件的使用;
(2)熟练掌握静态路由和动态路由的配置方法;
(3)掌握基本子网划分和VLSM的方法;
2、实习要求
(1)实习时间:一周
(2)实习报告字体:宋体,正文字号:小四,行间距:单倍。
(3)必须有封面,目录(可选),总结,页码,实习报告第二页为成绩评定表。
二、指导教师评语:
指导教师签名
年 月 日
三、成绩评定:
实习报告成绩(40%):
实习出勤成绩(30%):
平时实验成绩(30%):
总 成 绩:
一.IP地址规划
1.Ospf
192.168.0.0/24
192.168.0.0 0000000
192.168.0.0/25 ....... 1 192.168.0.1-192.168.0.126
192.168.0.128/25
192.168.0.01 000000
192.168.0.128/26........2 192.168.0.129-192.168.0.190
192.168.0.192/26........3 192.168.0.193-192.168.0.254
2.Eigrp
192.168.1.0/24
192.168.1.0/25..........1 192.168.0.1-192.168.0.126
192.168.1.128/26........2 192.168.0.129-192.168.0.190
192.168.1.192/26........3 192.168.0.193-192.168.0.254 (方法:从里面最大的主机数开始划分如100、50、40,先从给100划分
就是2的n次方减去2要大于等于100,要要最接近主机数从而使浪费
的ip最少,这里的n取7最合适)
二.OSPF区域配置
1.在OSPF1、OSPF2和OSPF Border(不包括S0/0/0接口)三台路由器上
运行OSPF协议。
2.OSPF路由进程号使用1(注:路由进程号可以不同,这里规定为1是为
Packet tracer判题方便)。
3.要求所有网络配置为单区域0
4.在配置network命令时要求后面所跟的网络范围和接口的子网一致,如
接口地址为202.112.10.1/27,则写成network 202.112.10.0
255.255.255.224 area 0。
5.指定OSPF1、OSPF2、OSPF Border三台路由器的Router ID分别为
172.16.1.1、172.16.1.2、172.16.1.3。
6.尽量减少不必要的路由流量(passive-interface)
(1)Ospf1的配置
hostname OSPF1
interface FastEthernet0/0
ip address 10.0.0.1 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.0.193 255.255.255.192
duplex auto
speed auto
!
interface Vlan1
no ip address
shutdown
!
router ospf 1
router-id 172.16.1.1
log-adjacency-changes
passive-interface FastEthernet0/1
network 10.0.0.0 0.0.0.3 area 0
network 192.168.0.192 0.0.0.63 area 0
!
ip classless
!(2)Ospf2的配置
hostname OSPF2
interface FastEthernet0/0
ip address 10.0.0.5 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.0.1 255.255.255.128
duplex auto
speed auto
!
interface Ethernet0/0/0
ip address 192.168.0.129 255.255.255.192
duplex auto
speed auto
!
interface Vlan1
no ip address
shutdown
!
router ospf 1
router-id 172.16.1.2
log-adjacency-changes
passive-interface FastEthernet0/1
passive-interface Ethernet0/0/0
network 192.168.0.0 0.0.0.127 area 0
network 192.168.0.128 0.0.0.63 area 0
network 10.0.0.4 0.0.0.3 area 0
!
ip classless
(3)Ospf B的配置
hostname "OSPF Border"
interface FastEthernet0/0
ip address 10.0.0.2 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1 ip address 10.0.0.6 255.255.255.252
duplex auto
speed auto
!
interface Serial0/0/0
ip address 10.0.0.17 255.255.255.252
clock rate 64000
!
interface Serial0/0/1
no ip address
shutdown
!
interface Vlan1
no ip address
shutdown
!
router ospf 1
log-adjacency-changes
network 10.0.0.0 0.0.0.3 area 0
network 10.0.0.4 0.0.0.3 area 0
network 10.0.0.16 0.0.0.3 area 0
default-information originate
!
ip classless
三.EIGRP区域配置
(1)Eigrp1的配置
hostname EIGRP1
interface FastEthernet0/0
ip address 10.0.0.9 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.1.193 255.255.255.192
duplex auto
speed auto
!
interface Ethernet0/0/0
ip address 192.168.1.129 255.255.255.192
duplex auto
speed auto
!interface Vlan1
no ip address
shutdown
!
router eigrp 1
passive-interface FastEthernet0/1
passive-interface Ethernet0/0/0
network 192.168.1.0
network 10.0.0.0
no auto-summary
!
ip classless
(2)Eigrp2 的配置
hostname EIGRP2
interface FastEthernet0/0
ip address 10.0.0.13 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.1.1 255.255.255.128
duplex auto
speed auto
!
interface Vlan1
no ip address
shutdown
!
router eigrp 1
passive-interface FastEthernet0/1
network 192.168.1.0
network 10.0.0.0
no auto-summary
!
ip classless
(3)Eigrp B的配置
hostname "EIGRP Border"
interface FastEthernet0/0
ip address 10.0.0.10 255.255.255.252
duplex auto
speed auto