一臺路由器,一臺交換機,四臺PC,想在交換劃分vlan。請問路由器怎麼配置?交換機怎麼配置

2021-05-05 07:54:54 字數 5720 閱讀 3887

1樓:匿名使用者

主機 4,5,6,7 分別對應 vlan 4,5,6,7在交換機上全域性啟用vlan 4,5,6,7接著啟用vlan 虛介面inte***cevlan 4

ip add 192.168.4.1 255.255.255.0inte***cevlan 5

ip add 192.168.5.1 255.255.255.06和7同上,只是改下網段地址

接著啟用vlan 100

inte***ce vlan 100(作為和路由器的互聯介面)ip add 192.168.100.

1 255.255.255.

0然後將與路由器相連的介面加入vlan 100 的,將相應的pc 加入各自的vlan

最後寫一條預設路由指向路由器

ip route 0.0.0.0 0.0.0.0 192.168.100.2

路由器上配置

與交換機對接的介面上 加上ip地址

ip add 192.168.100.2 255.255.255.0路由器上寫一條回程路由

ip route 192.168.0.0 255.255.0.0 192.168.100.1

所有pc 都能ping通路由器了。

2樓:匿名使用者

假如你的路由器的介面 是f0/0

你就在路由器上敲

int f0/0

ip add 192.168.1.

1 255.255.255.

0然後在交換機上配置(假如你的pc4,5,6,7 用的是f0/4 f0/5 f0/6 f0/7 連線路由器的是 f0/3)

vlan 3

int range f0/4-7

switchport acc vlan 3然後在pc上配好ip地址 如 192.168.1.2 就通了 !!!!

3樓:

你說能ping通,是指每臺pc互ping,還是ping同外網。

進入路由器,設定匯聚口為trunk,進入交換機上聯口設定trunk模式,給每個連pc埠配置access和相應vlan。

進入路由器,設定不同vlan的ip地址段。新增nat轉換,將所有ip轉換為公網ip。

華為vlan的配置。有一臺交換機,4臺路由器,4臺pc,怎麼劃分兩個vlan,不同的vlanping不通?

4樓:匿名使用者

我覺得應該在匯聚的交換機上做vlan就行了,路由器上只設ip和轉跳,把路由器當交換機用。

5樓:巔峰寂寞

你不做路由配置,不同網段能ping通?

在思科模擬器上,如何用一臺路由器,一臺交換機,和4臺pc,要求劃分兩個vlan是的pc可訪問不同vlan的pc

6樓:匿名使用者

對交換機的配置:

switch>

switch>

switch>

switch>en

switch>

switch>en

switch#conf t

enter configuration commands, one per line.  end with cntl/z.

switch(config)#exit

%sys-5-config_i: configured from console by console

switch#vlan d

switch#vlan database

% warning: it is recommended 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 commands, one per line.  end with cntl/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 commands, one per line.  end with cntl/z.

router(config)#int f0/0

router(config-if)#no shu

%link-5-changed: inte***ce fastethernet0/0, changed state to up

%lineproto-5-updown: line protocol on inte***ce fastethernet0/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 fastethernet0/0.1, changed state to up

%lineproto-5-updown: line protocol on inte***ce fastethernet0/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 fastethernet0/0.2, changed state to up

%lineproto-5-updown: line protocol on inte***ce fastethernet0/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)#

我是在模擬

器上做的,你可以看看這些命令,要是不明白的話再問吧。

7樓:匿名使用者

3層交換機...

sw1:

#模式下:入vlan database用vlan [vlan id]新建vlan.例如vlan2(本來已經有個vlan1

在conf t模式下:

int vlan 1

ip add 192.168.1.1 255.255.255.0(vlan1閘道器.vlan1電腦網段閘道器按照這個設定)

int vlan 2

ip add 192.168.2.1 255.255.255.0(vlan2閘道器.vlan2電腦網段閘道器按照這個設定)

ip routing(啟用路由功能)

int fa0/1進入埠1

sw mo acc設定模式訪問狀態

sw acc vlan 1吧int fa 0/1放入vlan1.2層一樣這樣設定.不詳細說.

------淫-蕩-的-分-割-線------

2層交換機情況下:

埠放入不用說.以上說了.

假設int fa 1/5連線路由器.則:

int fa 1/5

sw mo tr吧埠配置成trunk模式

sw tr enc d並封裝ieee 802.1q協議

r1:int fa 0/0

ip add 192.168.1.1 255.255.255.0(vlan1閘道器)

int fa 0/0.1(子介面)

ip add 192.168.2.1 255.255.255.0(vlan2閘道器)

enc d(封裝ieee 802.1q協議)

電腦ip編址..不用我說了吧..

有一臺核心交換機連線外網,3臺接入交換機,1臺計費系統計算機,3臺伺服器,普通使用者計算機60臺

首先拓撲圖 ip地址分配 vlan1 192.168.1.224 28vlan2 192.168.1.0 26 vlan3 192.168.1.64 26vlan4 192.168.1.128 26vlan99 192.168.1.192 28core out 192.168.1.192 28out...

一臺二層交換機和一臺三層交換機如何讓兩個vlan通訊

在三層交換機上啟用兩個vlan的虛介面,並配置ip地址,然後開啟路由功能就可以了 怎麼使用三層交換機使兩臺機器實現不同vlan間的通訊 首先把相應的埠劃分到相應的vlan,然後給vlan設定svi地址,該vlan下所有的主機閘道器就是該vlan的svi地址了,例如vlan10 192.168.1.1...

公司由一臺路由器進辦公室,然後由交換機分三條線連計算機,一臺能上網,另外兩個不能

1。你確認路由器及交換機連線正確 網線 或上網線路 wan口 路由器 lan口 交換機口 電腦 每個口接一個電腦 2。你將不能上網的電腦的網線在交換機處與能上網的電腦網線調換交換機埠,判斷網線及交換機埠是否正常。換個埠。可能埠壞了。如果是三層交換機也有可能是埠配置問題 那就把不能上網的電腦的網線分別...