1樓:匿名使用者
給你乙個例子:
拓撲大概為:兩台pc,分別連一台交換機的fa0/9和fa0/5,並分別劃分到vlan10和vlan20裡面,交換機的fa0/1接到路由器上fa0/0上。
在交換機 a 的 fast ether*** 0/1 配置如下命令:
switch_a(config)#inte***ce fastether***0/1
switch_a(config-if)#switchport mode trunk
switch_a(config-if)#end
在路由器上作如下操作:
switch_a(config)#inte***ce fastether***0/1
switch_a(config-if)#switchport mode trunk
switch_a(config-if)#switchport trunk encapsulation dot1q
switch_a(config-if)#end
step6:配置路由
*注意:為了能夠支援 trunk 和 vlan 間路由,路由器必須有乙個fast ether*** 介面。
a. 配置路由器的資訊如下:
hostname is router_a
console, vty, and enable passwords are cisco.
enable secret password is class.
b. 然後,使用下列命令配置 fast ether*** 介面:
注意:如果與1900 交換機配合使用,請將下列有關 「dot1.q」 封裝替換成 「isl」 。
router_a(config)#inte***ce fastether*** 0/0
router_a(config-if)#no shutdown
router_a(config-if)#inte***ce fastether*** 0/0.1
router_a(config-subif)#encapsulation dot1q 1
router_a(config-subif)#ip address 192.168.1.1 255.255.255.0
router_a(config-if)#inte***ce fastether*** 0/1.2
router_a(config-subif)#encapsulation dot1q 10
router_a(config-subif)#ip address 192.168.5.1 255.255.255.0
router_a(config-if)#inte***ce fastether*** 0/0.3
router_a(config-subif)#encapsulation dot1q 20
router_a(config-subif)#ip address 192.168.7.1 255.255.255.0
router_a(config-subif)#end
2樓:匿名使用者
與交換機相連的路由器埠,做個獨臂路由, 把路由的物理介面上建立虛擬子介面,並配置vlan的中繼模式就可以了.
3樓:網路初體驗
vlan2
交換機(1口)<--->(2口)路由器
<--->另乙個網路
vlan3
1口做trunk
2口下做子介面, 這樣實現單臂路由. vlan2與3就可以通訊了
路由器如何下接二層交換機劃分vlan?
4樓:轉轉運動鞋
你可以用乙個路由器乙太網口與2960接,路由器口使用子介面對應vlan號,2960的口要用trunk;你也可以用兩個路由器口與2960的兩個口接,每個路由器口對應乙個vlan號。
一般的情況,路由器下建議接一台三層交換機,三層下面掛2層,組成星型組網!
vlan就根據業務來調整了,vlan的三層介面都放在三層交換機上面!
思科路由器埠如何加入vlan?是路由器不是交換機哈。
5樓:匿名使用者
連線路由器的埠或交換機埠改為trunk模式,支援自動協商。
實際上預設情況下埠就是自動協商模式的,如果不是隧道埠,可以檢查交換機與路由器連線的埠是否已經更改為trunk埠
檢查埠是否是trunk模式,然後可以將此埠加入交換機所劃分的vlan 上。
(config-if)# switchport access vlan 123
思科交換機,劃分vlan後怎麼實現vlan之間通訊
6樓:匿名使用者
交換機還需要連線到路
由器目前有3種方法:
1.交換機有多少vlan,就連多少線到路由器;
2.交換機只需要1條到路由器就可以實現vlan間通訊,稱為單臂路由器;
3.用多層交換機,不用路由器了!
然後:a ,在交換機上用
switchport mode access
switchport access vlan 號
b,還要先把交換機上的乙太網介面配置成trunk 介面
switch(config)#int f0/1
switch(config-if)#switch trunk encap dot1q
switch(config-if)#switch mode trunk
c,在路由器的物理乙太網介面下建立子介面,並定義封裝型別
以下只是舉例:
router(config)#int g0/0
router(config-if)#no shutdown
router(config)#int g0/0.1
router(config-subif)#encapture dot1q 1 native
router (config-subif)#ip address x.x.x.x 子網掩碼
//在子介面上配置ip 位址,這個位址就是vlan 1 的閘道器了
router(config)#int g0/0.2
router(config-subif)#encapture dot1q 2
router(config-subif)#ip address x.x.x.x 子網掩碼
注意:如果是3層交換機的
除了設定
s1(config-if)#switchport mode access
s1(config-if)#switchport access vlan 號
然後開啟3層交換機的路由功能ip routing
接著需要進int vlan 號
no shutdown
和設定它們的ip位址就可以了!
7樓:time小嚴嚴
沒有三層交換的話,網段的閘道器放在路由器上面就好
8樓:匿名使用者
不同vlan之間可以通過access-list來實現對訪問的控制。
9樓:匿名使用者
路由器與交換機連線的鏈路做trunk.
在思科模擬器上,如何用一台路由器,一台交換機,和4臺pc,要求劃分兩個vlan是的pc可訪問不同vlan的pc
10樓:匿名使用者
對交換機的配置:
switch>
switch>
switch>
switch>en
switch>
switch>en
switch#conf t
enter configuration ***mands, one per line. end with **tl/z.
switch(config)#exit
%sys-5-config_i: configured from console by console
switch#vlan d
switch#vlan database
% warning: it is re***mended to configure vlan from config mode,
as vlan database mode is being deprecated. please consult user
documentation for configuring vtp/vlan in config mode.
switch(vlan)#vlan 2 name a
vlan 2 added:
name: a
switch(vlan)#vlan 3 name b
vlan 3 added:
name: b
switch(vlan)#exit
exiting....
switch#conf t
enter configuration ***mands, one per line. end with **tl/z.
switch(config)#int vlan 2
%link-5-changed: inte***ce vlan2, changed state to upswitch(config-if)#
switch(config-if)#no shu
switch(config-if)#int vlan 3
%link-5-changed: inte***ce vlan3, changed state to upswitch(config-if)#
switch(config-if)#no shu
switch(config-if)#int f0/1
switch(config-if)#sw m ac
switch(config-if)#sw ac vlan 2
%lineproto-5-updown: line protocol on inte***ce vlan2, changed state to upswitch(config-if)#
switch(config-if)#int f0/2
switch(config-if)#sw m ac
switch(config-if)#sw ac vlan 3
%lineproto-5-updown: line protocol on inte***ce vlan3, changed state to upswitch(config-if)#
switch(config-if)#int f0/3
switch(config-if)#sw m ac
switch(config-if)#sw ac vlan 2
switch(config-if)#int f0/4
switch(config-if)#sw m ac
switch(config-if)#sw ac vlan 3
switch(config-if)#int f0/5
switch(config-if)#no shu
switch(config-if)#sw m ac
switch(config-if)#sw m tr
switch(config-if)#exit
switch(config)#exit
%sys-5-config_i: configured from console by console
switch#
對路由器的配置:
press return to get started!
router>
router>
router>en
router#conf t
enter configuration ***mands, one per line. end with **tl/z.
router(config)#int f0/0
router(config-if)#no shu
%link-5-changed: inte***ce fastether***0/0, changed state to up
%lineproto-5-updown: line protocol on inte***ce fastether***0/0, changed state to up
router(config-if)#no ip ad
router(config-if)#no ip address
router(config-if)#int f0/0.1
%link-5-changed: inte***ce fastether***0/0.1, changed state to up
%lineproto-5-updown: line protocol on inte***ce fastether***0/0.1, changed state to uprouter(config-subif)#
router(config-subif)#en
router(config-subif)#encapsulation d
router(config-subif)#encapsulation dot1q 2
router(config-subif)#ip ad
router(config-subif)#ip address 192.168.1.1 255.255.255.0
router(config-subif)#int f0/0.2
%link-5-changed: inte***ce fastether***0/0.2, changed state to up
%lineproto-5-updown: line protocol on inte***ce fastether***0/0.2, changed state to uprouter(config-subif)#
router(config-subif)#en
router(config-subif)#encapsulation d
router(config-subif)#encapsulation dot1q 3
router(config-subif)#ip ad
router(config-subif)#ip address 192.168.2.1 255.255.255.0
router(config-subif)#exit
router(config)#
我是在模擬
器上做的,你可以看看這些命令,要是不明白的話再問吧。
銳捷的交換機劃分vlan,同vlan不同的網段怎麼實現通
乙個vlan一般都是只能配乙個介面位址,而這個介面位址就是這個vlan的閘道器,所有的ip都通過這個閘道器出去,你說的同乙個vlan下有不同的網段不知道你是什麼意思。一般銳捷交換機大學生用的,基本上不用配置的。在介面模來式下switch mode acess switch acess vlan vl...
在交換機上劃分vlan的配置,在交換機上劃分VLAN的配置
華為 1.建立vlan vlan batch 1 2 3 同時建立多個vlan 2.進入介面 int g0 0 0 3.設定介面 port link type access trunk 交換機與交換機 hybrid 相容 4.vlan 與介面繫結 access為例 port default vlan...
思科交換機配置VLAN後,如何為每個VLAN中的PC自動分配
不使用單臂路由就要用物理線路連線,有多少個 vlan 就要從 教學 交換機連多少條線到路由器,當然,它們也要各自劃分進對應的 vlan 所以這些線路不能用 trunk 要麼就把 教學 交換機換成三層交換機,讓它完成 vlan 間的路由 用 svi 做 vlan 閘道器,要給vlan 介面配 ip 自...