实例讲解三层交换机配置中关于VLAN划分以及设置问题

网络 路由交换
DGS-3627三层交换机配置的24口接到路由器的LAN口上面,路由器的LAN口地址是192.168.0.99,跟VLAN40是在同一个IP段里面,那么,客户机、三层交换机配置和路由器里面怎么设置才能让电脑上网呢?

实例讲解三层交换机配置中关于VLAN划分以及设置问题,三层交换机配置中不能避免的就是关于vlan的划分和配置问题,一般情况下划分为4种,如何找回就成了我们关注的问题,本文从划分情况原理,配置思路以及测试过程上深入讲解了vlan的设置步骤。

DGS-3627交换机的IP地址是192.168.0.1,它同时也是VLAN40的虚接口地址,Vlan40与路由器连接。DGS-3627交换机的24口接到路由器的LAN口上面,路由器的LAN口地址是192.168.0.99,跟VLAN40是在同一个IP段里面,那么,客户机、三层交换机配置和路由器里面怎么设置才能让电脑上网呢?

三层交换机配置VLAN划分情况如下:
◆VLAN10虚接口:192.168.1.1  交换机接口:1号口  VID:10interface:if10
◆VLAN20虚接口:192.168.2.1  交换机接口:2号口  VID:20interface:if20
◆VLAN30虚接口:192.168.3.1  交换机接口:3号口  VID:30interface:if30
◆VLAN40虚接口:192.168.0.1  交换机接口:4-24号口  VID:40interface:system

创建一条默认路由
在交换机加条命令 create iproute default 192.168.0.99

在路由器上设几条静态路由:
192.168.1.0/255.255.255.0 192.168.0.1
192.168.2.0/255.255.255.0 192.168.0.1
192.168.3.0/255.255.255.0 192.168.0.1

三层交换机配置客户端设置,2网段为例
ip:192.168.2.X
mask:255.255.255.0
gw:192.168.2.1

三层交换机配置了虚接口后,各个Vlan之间是可以互访的,如果需要对用户的访问进行控制可以使用访问控制列表进行管理。访问控制方面,设置一下acl就可以了:允许所有用户上网:
create access_profile ip source_ip_mask 255.255.0.0 destination_ip_mask 255.255.255.255 profile_id 1 permit
config access_profile profile_id 1 add access_id 1 ip source_ip 192.168.0.0 destination_ip 192.168.0.99

三层交换机配置所有网段允许访问服务器所在公共网段vlan10:
create access_profile ip source_ip_mask 255.255.0.0 destination_ip_mask 255.255.255.0 profile_id 5 permit
config access_profile profile_id 5 add access_id 1 ip source_ip 192.168.0.0 destination_ip 192.168.1.0

三层交换机配置禁止Vlan之间互访:
create access_profile ip source_ip_mask 255.255.255.0 destination_ip_mask 255.255.255.0 profile_id 10 deny
config access_profile profile_id 10 add access_id 1 ip source_ip 192.168.2.0 destination_ip 192.168.0.0 deny
config access_profile profile_id 10 add access_id 2 ip source_ip 192.168.2.0 destination_ip 192.168.3.0 deny
config access_profile profile_id 10 add access_id 3 ip source_ip 192.168.0.0 destination_ip 192.168.2.0 deny
config access_profile profile_id 10 add access_id 4 ip source_ip 192.168.0.0 destination_ip 192.168.3.0 deny
config access_profile profile_id 10 add access_id 5 ip source_ip 192.168.3.0 destination_ip 192.168.2.0 deny
config access_profile profile_id 10 add access_id 6 ip source_ip 192.168.3.0 destination_ip 192.168.0.0 deny

责任编辑:佟健 来源: 天极
相关推荐

2010-01-11 13:14:36

配置三层交换机

2010-01-11 10:18:36

三层交换机配置

2013-08-14 10:08:07

TrunkVLAN三层交换

2010-01-11 16:26:42

三层交换机作用

2009-08-05 10:07:20

交换机配置实验

2010-01-11 11:16:43

三层交换机配置

2010-09-29 14:01:05

三层交换机配置DHCP

2010-01-15 20:51:31

三层交换机网关设置

2012-11-13 10:42:26

交换机路由器VLAN

2010-01-11 16:38:20

三层交换机配置实例

2010-02-07 15:24:49

三层交换机

2010-01-11 10:19:42

三层交换机配置

2012-12-17 10:11:19

三层交换机网关设置

2013-01-23 09:40:21

交换机路由连接网络设置

2010-01-12 17:56:48

交换机网关设置

2010-02-22 17:26:03

三层交换机

2013-10-31 09:16:44

Vlan三层交换机路由

2017-03-20 17:00:44

交换机路由器VLAN

2012-12-12 10:53:51

交换机VLAN

2010-02-22 14:05:33

三层交换机
点赞
收藏

51CTO技术栈公众号