当前位置:文档之家› 路由协议与交换技术终极笔记

路由协议与交换技术终极笔记

路由协议与交换技术终极笔记

一.RIP.OSPF与静态路由配置

(1)RIP

router rip

version 2

redistribute ospf 100 metric 3

network 192.168.1.0

network 192.168.2.0

(2)OSPF

1. router ospf 100

log-adjacency-changes

redistribute rip metric 1000

network 10.10.10.0 0.0.0.255 area 0 3 静态路由

2.构建一个拓扑图

1 同时运行上述3种协议(

需要路由重分布、)

redistribute ospf 100 metric 3 //ospf重分布到rip

redistribute rip metric 1000 //rip重分布到ospf

default-information origate //静态路由重分布到ospf中

2 客户端的ip由DHCP服务器提供(192.168.1.0/24、192.168.2.0/24 192.168.3.0/24、192.168.4.0/24)

ip dhcp excluded-address 192.168.1.1

ip dhcp excluded-address 192.168.2.1

ip dhcp excluded-address 192.168.3.1

ip dhcp excluded-address 192.168.4.1!

ip dhcp pool soft_man

network 192.168.1.0 255.255.255.0

default-router 192.168.1.1

dns-server 202.196.32.1

ip dhcp pool soft_women

network 192.168.2.0 255.255.255.0

default-router 192.168.2.1

dns-server 202.196.32.1

ip dhcp pool xinshang

network 192.168.3.0 255.255.255.0

default-router 192.168.3.1

dns-server 202.196.32.1

ip dhcp pool yatai

network 192.168.4.0 255.255.255.0

default-router 192.168.4.1

dns-server 202.196.32.1

帮助地址 ip helper-address 10.10.10.2

3 访问ISP需要做NAT地址转换

(采用PAT 125.10.10.0/26)

1、允许内网转化出去acl

2、转化成125.10.10.0/26一个地址池

3、acl 和地址池建立影射

4、定义inside

5、定义outside

ip nat pool student 125.10.10.1 125.10.10.62 netmask 255.255.255.192 ip nat inside source list 1 pool student overload!

access-list 1 permit 192.168.1.0 0.0.0.255

access-list 1 permit 192.168.2.0 0.0.0.255

access-list 1 permit 192.168.3.0 0.0.0.255

access-list 1 permit 192.168.4.0 0.0.0.255!

ip nat inside

ip nat outside

(3)CNC 配置静态路由

CNC(config)#ip route 125.10.10.0 255.255.255.192 s3/0 二.帧中继配置

概述:广域网接入技术

典型的应用场景:公司总部和各个分支之间的连接

北京上海郑州(同一个局域网内)

网络号:192.168.1.0/24

基本概念:

1.PVC

2.DLCI 标志一条PVC的编号:本地意义

3.映射:帧中继映射(IP和DLCI映射好)

基本配置:

1.进入串口

2.配置ip地址

3.封装

4.帧中继映射的配置

路由协议的配置

三.交换机

定义:2层设备/3层设备,

基本配置

命名()

Ip地址(vlan 1接口上)

Int vlan 1

Ip add 192.168.1.254 255.255.255.0

Ip default-gateway 192.168.1.1

密码

Enable password 123456

telnet登录(vty 接口配置)

line vty 0 4

password 123456

本地配置(console配置)

Line console 0

Password abcdefg

login

给三层交换机的接口陪ip地址(no swichport)

Int f0/10

No swichport

Ip add 192.168.1.1 255.255.255.0

三层交换机开启路由功能

Ip routing

三层交换机开启路由协议

Router rip

Ver 2

Network 192.168.1.0

交换机

1、定义 2层设备/3层设备

2、基本配置

a)命名(hostname A)

b)IP地址(vlan 1接口上)和默认网关

i.Int vlan 1

1.Ip add 19

2.168.1.254 255.255.255.0

ii.Ip default-gateway 192.168.1.1

c)密码

i.Enable password 123456

d)telnet登陆(vty 接口配置)

i.line vty 0 4

ii.password 123456

iii.login

相关主题