当前位置:首页 > wifi设置知识 > 正文内容

思科路由器配置手册(阐述)

秋天2023年04月04日 15:02:29wifi设置知识155
路由器设置和无线WIFI设置不仅仅是网络连接的基本操作,还可以涉及到更多的高级设置和功能,本文思科路由器配置手册 将为您详细讲解。

一. 策略路由配置

1. 匹配数据包IP地址、前缀列表

Router(config)#route-map rp-name

Router(config-route-map)#match ip address {access-list-number|name} […access-list-number|name]|prefix-list prefix-list-name […prefix-list-name]

Router(config)#route-map TEST

Router(config-route-map)#match ip address 1

2. 匹配数据包大小

Router(config-route-map)#match length min max

3. 设定分组的下一跳IP(必须为直连IP)

Router(config-route-map)#set ip next-hop ip-address […ip-address]

Router(config-route-map)#set ip next-hop 10.1.12.2 10.1.13.3

4. 设定分组的出接口

Router(config-route-map)#set interface type number [?type number]

Router(config-route-map)#set interface fast 0/0

5. 应用PBR(对进入接口的数据流量生效,本地始发的流量无效)

Router(config-if)#ip policy route-map TEST

6. 应用PBR(针对本地始发的流量生效)

Router(config)# ip local policy route-map TEST

7. 查看PBR命令

Router#show ip policy

Router#show route-map [map-name]

二. 策略路由场景

1. 备份路径

无线路由器-网关-dtu

GW(config)#access-list 1 permit any

GW(config)#route-map PBR permit 10

GW(config-route-map)#match ip address 1

GW(config-route-map)#set ip next-hop 10.1.1.2 10.2.2.2

2. 感知上游设备状态特性(两端都是思科设备,并均开启CDP)

无线路由器-网关-dtu

GW(config)#access-list 1 permit any

GW(config)#route-map PBR permit 10

GW(config-route-map)#match ip address 1

GW(config-route-map)#set ip next-hop 10.1.1.2 10.2.2.2

GW(config-route-map)#set ip next-hop verify-availability

3. 感知上游设备状态特性(利用sla,无需思科和CDP)草稿,需完善

无线路由器-网关-dtu

无线路由器-网关-dtu

ip sla monitor responder

ip sla monitor 1

type echo protocol ipIcmpEcho 10.1.1.2 source-ipaddr 10.1.1.1

frequency 10

ip sla monitor schedule 1 life forever start-time now

track 1 rtr 1 reachability

GW(config)#access-list 1 permit any

GW(config-route-map)#route-map PBR permit 10

GW(config-route-map)#match ip address 1

GW(config-route-map)#set ip next-hop verify-availability 10.1.1.2 10 track 1

GW(config-route-map)#set ip next-hop verify-availability 10.2.2.2 20 track 2

4. Recursive 可达路径关键词

无线路由器-网关-dtu

Recursive提供了一种非直连路径下一条(next-hop)的可能性,所指ip必须可达

GW(config)#access-list 1 permit any

GW(config)#route-map PBR permit 10

GW(config-route-map)#match ip address 1

GW(config-route-map)#set ip next-hop 10.2.2.2

GW(config-route-map)#set ip next-hop recursive 10.1.12.2

GW(config)#ip route 10.1.12.0 255.255.255.0 10.1.1.2

GW(config)#ip route 0.0.0.0 0.0.0.0 serial s0/2

三. 策略路由案例

1. 按流量选择路径(注意,之前一课的路由策略都是按路由分路径)

无线路由器-网关-dtu

Router(config)#access-list 1 permit 192.168.1.0 0.0.0.255

Router(config)#access-list 2 permit 192.168.2.0 0.0.0.255

Router(config)#route-map test permit 10

Router(config)#match ip address 1

Router(config-route-map)#set ip next-hop 10.1.1.2

Router(config)#route-map test permit 40

Router(config-route-map)#match ip address 2

Router(config-route-map)#set ip next-hop 10.2.2.2

Router(config)#int f0/0

Router(config-if)#ip policy route-map test

Router(config)#ip route 0.0.0.0 0.0.0.0 10.1.1.2

Router(config)#ip route 0.0.0.0 0.0.0.0 10.2.2.2 10

2. Next-hop关键字,不带default,优先级高于明细路由

无线路由器-网关-dtu

R1(config)#access-list 1 permit 10.1.1.0 0.0.0.255

R1(config)#route-map PBR permit 10

R1(config-route-map)#match ip address 1

R1(config-route-map)#set ip next-hop 10.1.13.3

R1(config)#int f0/0

R1(config-if)#ip policy route-map PBR

R1(config)#ip route 0.0.0.0 0.0.0.0 10.1.13.2

3. Next-hop,带default关键字,优先级低于明细路由

无线路由器-网关-dtu

R1(config)#access-list 1 permit 10.1.1.0 0.0.0.255

R1(config)#route-map PBR permit 10

R1(config-route-map)#match ip address 1

R1(config-route-map)#set ip default next-hop 10.1.13.3

R1(config)#int f0/0

R1(config-if)#ip policy route-map PBR

R1(config)#ip route 10.1.23.0 255.255.255.0 10.1.12.2

4. NAT应用策略路由

无线路由器-网关-dtu

无线路由器-网关-dtu

无线路由器-网关-dtu

GW(config)#access-list 1 permit 192.168.1.0 0.0.0.255

GW(config)#access-list 2 permit 192.168.2.0 0.0.0.255

GW(config)#route-map PBR permit 10

GW(config-route-map)#match ip address 1

GW(config-route-map)#set ip next-hop 11.1.1.2

GW(config)#route-map PBR permit 20

GW(config-route-map)#match ip address 2

GW(config-route-map)#set ip next-hop 22.2.2.2

GW(config)#route-map nat1 permit 10

GW(config-route-map)#match ip address 1

GW(config-route-map)#match interface serial0/0 !!匹配数据包的出口

GW(config)#route-map nat2 permit 10

GW(config-route-map)#match ip address 1

GW(config)#route-map nat3 permit 10

GW(config-route-map)#match ip address 2

GW(config-route-map)#match interface serial0/1

GW(config)#route-map nat4 permit 10

GW(config-route-map)#match ip address 2

GW(config)#ip nat inside source route-map nat1 interface serial0/0 overload

GW(config)#ip nat inside source route-map nat2 interface serial0/1 overload

GW(config)#ip nat inside source route-map nat3 interface serial0/1 overload

GW(config)#ip nat inside source route-map nat4 interface serial0/0 overload

~通过这些技巧,您可以轻松设置和管理无线网络,获得更快速、可靠、安全的上网体验。

扫描二维码推送至手机访问。

版权声明:本文由路由设置网发布,如需转载请注明出处。

本文链接:https://www.shoulian.org/luyou/post/21298.html

分享给朋友:

“思科路由器配置手册(阐述)” 的相关文章

华为路由器怎么查看mac

华为路由器怎么查看mac

本篇文章给大家谈谈华为路由器怎么查看mac,以及华为路由器怎么查看宽带账号密码对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。 本文内容目录一览: 1、华为路由器怎么恢复出厂MAC地址? 2、华为手机wifi的mac地址是什么意思啊? 3、如何查看华三3层交换机或者路由器的MAC地址,...

斐讯路由器怎么重启

斐讯路由器怎么重启

今天给各位分享斐讯路由器怎么重启的知识,其中也会对斐讯路由器重启后一直红灯进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站 本文内容目录一览: 1、斐讯k2路由器怎么恢复出厂设置怎样再重启 2、斐讯(PHICOMM)路由器怎么恢复出厂设置? 3、斐讯(PHICOMM)路由器怎么恢复出...

怎么更改路由器工作通道

怎么更改路由器工作通道

本篇文章给大家谈谈怎么更改路由器工作通道,以及有线通路由器设置方法大全对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。 本文内容目录一览: 1、路由器怎么改通道 2、怎样更改路由器信道 3、联通路由器怎么更改信道? 4、无线路由器的通道怎么设定 路由器怎么改通道 路由器是区域...

宿舍路由器怎么分流量

宿舍路由器怎么分流量

今天和朋友们分享宿舍路由器怎么分流量相关的知识,相信大家通过本文介绍也能对宿舍分流器怎么连接路由器有自已的收获和理解。自己轻松搞问题。本文内容目录一览: 1、路由器怎么分配流量? 2、路由器怎么设置平分网速流量 3、如何用路由器分流量 路由器怎么分配流量? 一般路由器没有流量分配的功能,要...

路由器无法上网怎么加密

路由器无法上网怎么加密

有很多朋友不知道路由器无法上网怎么加密要如何操作,今天为大家整理了很多路由器没加密怎么加密相关的答案,组成一篇内容丰富的文章,希望能到您 本文内容目录一览: 1、wifi怎么加密 2、宽带如何加密? 3、路由器怎么加密设置 4、路由器怎么加密? 5、如何为自己家的无线路由器加密...

千兆猫怎么当路由器

千兆猫怎么当路由器

本篇文章给大家谈谈千兆猫怎么当路由器,以及千兆猫配个百兆路由器对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。 本文内容目录一览: 1、光猫能当路由器用吗 2、光纤猫如何设置成路由器? 3、怎么用电信的光猫当作无线路由器用? 4、光猫转路由器怎么设置 5、光猫可以当路由器使用吗...