三层交换机由于转发速度快,在局域网中应用广泛。下面将三层交换机与路由器组合在一起,做静态路由和OSPF路由重发布配置。两侧采用单臂路由形式(右侧三层交换机也形如单臂)
拓扑如下图:注意要使用Vlan1来连接路由器的接口。
具体配置如下:
二层交换机(两侧一样)
en
conf t
vl 10 //创建Vlan
vl 20
in range f0/1-10 //将f0/1-10共10个端口划入Vlan10
sw ac v 10
in range f0/11-20
sw ac v 20
in g 0/1 //设置g0/1为trunk
sw mode trunk
左侧路由:
en
conf t
in f 1/0
no sh
in f 1/0.1 //子接口f1/0.1 连接Vlan10
en d 10 //封装为Dot1q协议(Vlan)(必须先封装才能配置 IP)
ip ad 192.168.10.1 255.255.255.0
in f 1/0.2
en d 20
ip ad 192.168.11.1 255.255.255.0
in f 0/0
no sh
ip ad 1.1.1.1 255.255.255.252
ro ospf 1 //进入OSPF协议配置模式
net 192.168.10.0 0.0.0.255 area 0 //发布192.168.10.0网段,骨干区域0
net 192.168.11.0 0.0.0.255 a 0 //0.0.0.255是通配符(主机掩码)
net 1.1.1.0 0.0.0.3 a 0
右侧三层交换机,:
en
conf t
vl 10
vl 20
in vl 10
ip ad 192.168.12.1 255.255.255.0
in vl 20
ip ad 192.168.13.1 255.255.255.0
in vl 1 //注意:当创建了其它Vlan后,默认打开的Vlan1会down
no sh
ip ad 1.1.2.2 255.255.255.252
ip routi //启动路由功能
ip route 0.0.0.0 0.0.0.0 1.1.2.1 //默认路由
中间路由:
en
conf t
in f 1/0
no sh
ip ad 192.168.14.1 255.255.255.0
in f 0/0
no sh
ip ad 1.1.1.2 255.255.255.252
in f6/0
no sh
ip ad 1.1.2.1 255.255.255.252
ro ospf 1 //进入OSPF协议配置模式
net 192.168.14.0 0.0.0.255 area 0 //发布192.168.10.0网段,骨干区域0
net 1.1.1.0 0.0.0.3 a 0
re st metric 3 sub //重发布静态路由到OSPF区域,并支持无类路由
ip route 192.168.12.0 255.255.255.0 1.1.2.2 //设置静态路由(因为ospf路由无法重发布到静态区域,故有此配置)
ip route 192.168.13.0 255.255.255.0 1.1.2.2
配置完成。左侧192.168.10.0 、192.168.11.0 的网络 ping右侧192.168.12.0、192.168.13.0的网络,ttl=125。
完毕。