如何把思科路由和交換機用好,現在我把思科C3560交換機設定好了,如何去設定路由器。路由器是思科2811的

2021-03-24 18:30:04 字數 5754 閱讀 6004

1樓:匿名使用者

直接做單臂路由 在交換機上劃分10個vlan 之後用交換機的子介面

如果交換機有多餘的介面就用多餘的介面 一個物理介面下 子介面太多會影響效能 之後再路由器上寫一些訪問控制列表 禁掉不讓他們上網的那些 就ok了 要不也可以謝route-map 看你選擇 route-map功能比較強悍

cisco 3560交換機 如何啟動路由口 把3560當成路由器使用?

2樓:笑掉假牙

你好,首先要在全域性配置模式下輸入 ip routing

然後在相應介面下配置no switchport即可

這時候就變成了一臺路由器,可以給介面配置ip

這是我在3560上的操作:

switch>

switch>en

switch#conf t

enter configuration ***mands, one per line. end with **tl/z.

switch(config)#ip routing

switch(config)#do sh ip int b

inte***ce ip-address ok? method status protocol

fastether***0/1 unassigned yes manual down down

。。。switch(config)#inter f0/1

switch(config-if)#no switchport

switch(config-if)#ip add 1.1.1.1 255.255.255.0

switch(config-if)#no shut

switch(config-if)#do sh ip int b

inte***ce ip-address ok? method status protocol

fastether***0/1 1.1.1.1 yes manual down down

希望能幫到你!

3樓:匿名使用者

ip routing 後在介面下 no switchport 然後設定ip地址

4樓:匿名使用者

ip routing

cisco路由器與cisco交換機怎麼設定才可以實現之間的通訊?

5樓:匿名使用者

1. 設定交換機的vlan 2和trunk

switch#vlan database

switch(vlan)#vlan 2

switch(vlan)#exit

switch#conf t

switch(config)#hostname swa

swa(config)#int f0/6

swa(config-if)#switchport access vlan 2

swa(config-if)#int f0/7

swa(config-if)#switchport access vlan 2

swa(config-if)#int f0/1

swa(config-if)#switchport mode trunk

swa(config-if)#switchport trunk allowed vlan 1,2,3

swa(config-if)#switchport trunk encap dot1q

swa(config-if)#end

swa#sh vlan

swa#sh run

檢查設定情況,應該能正確的看到vlan和trunk等資訊。

dot1q是vlan中繼協議802.1q,有的裝置上使用的是cisco的isl協議,它們的作用

是一樣的。

計算機的ip地址分別為10.65.1.1、10.66.1.1,閘道器分別指向路由器的子介面

10.65.1.2、10.66.1.2。

現在從pca向pcb發關ping 的icmp資料包肯定是不通的。即:

[root#pca root]# ping 10.66.1.1 (不通)

2. 設定路由器f0/0 為兩個子介面

roa(config)#int f0/0

roa(config-if)#no shut

roa(config-if)#int f0/0.1

roa(config-subif.1)#encapsulation dot1q 1

roa(config-subif.1)#ip address 10.65.1.2 255.255.0.0

roa(config-subif.1)#int f0/0.2

roa(config-subif.2)#encapsulation dot1q 2

roa(config-subif.2)#ip address 10.66.1.2 255.255.0.0

roa(config-subif.2)#exit

roa(config)#ip routing

roa#sh run

3. 測試可通性

[root#pca root]# ping 10.66.1.1 (通)

[root#pca root]# ping 10.66.1.2 (通)

[root#pcb root]# ping 10.65.1.1 (通)

[root#pcb root]# ping 10.65.1.2 (通)

6樓:匿名使用者

你說的交換機是二層交換機還是三層交換機,如果是二層交換機就配置vlan1的管理ip地址,這樣在其他裝置上就可以訪問它了。命令如下:

int vlan1

ip add 192.168.1.1 255.255.255.0no sh

如果是三層交換機就把該介面設定為三層模式,然後配置改介面的ip地址,這樣其他裝置就可以與它通訊了。命令如下:

int f0/0

no sw

ip add 192.168.1.1 255.255.255.0no sh

路由器只要在該介面上配置ip地址就可以通訊了。其前提條件是有相應的路由及介面能夠正常工作。命令如下:

int f1/0

ip add 192.168.1.2 255.255.255.0no sh

7樓:匿名使用者

說個思路吧,具體的命令我就不寫了 樓上已經有人寫了!你可以用單臂路由來實現

你在交換機上需要設定一個介面為trunk口,預設情況下配置的trunk口可以通過全部vlan訊號,

路由其的配置

啟用一個埠配置ip

進入子介面1,用802.1q協議封包vlan1的資料進入子介面2,用802.1q協議封包vlan2的資料交換機下面的電腦的閘道器就就是路由器埠配置的ip

8樓:網路夜行者

要把路由器設定成單臂路由器,就可以了。

設定單臂路由器的方法是,先把路由器與交換機連線的介面的ip資訊都刪除(no ip add),並且開啟此介面(no shut),然後進入此介面的子介面模式設定對應你兩個vlan的相關配置。設定好後,只要把交換機與路由器相連的那個介面設定成trunk就可以了。

9樓:匿名使用者

詳細說明一下你的裝置型號,聯網需求,不然沒法幫你

cisco3560交換機如何恢復出廠設定?

10樓:匿名使用者

switch#erase startup-configswitch#delete flash:vlan.datswitch#reload

最後當系統提示是否儲存配置時,選擇no

11樓:匿名使用者

使用console線,用copy超級終端連入交換機的baiconsole口

endelete vlan.dat (刪除vlan資訊)erase startconfig (刪除已儲存的信du息)reload 重啟 選

zhi n ,要是你再選y就會

dao把你現在執行的儲存

over 這樣開機就是空的配置

12樓:匿名使用者

write erase

13樓:匿名使用者

dcrs5650:

set default-什麼預設還原啥的(重要!)write-儲存

reload-重啟

思科3560三層交換機同一交換機上怎麼設定vlan訪問策略

14樓:匿名使用者

以下是vlan10和vlan20之間不能互訪

,其它的可以互訪,例子你看一下

inte***ce vlan10

ip address 192.168.1.254 255.255.255.0

ip access-group 100 in

inte***ce vlan20

ip address 192.168.2.254 255.255.255.0

ip access-group 100 in

inte***ce vlan30

ip address 192.168.3.254 255.255.255.0

ip access-group 100 in

access-list 100 deny ip 192.168.2.

0 0.0.0.

255 192.168.1.

0 0.0.0.

255access-list 100 deny ip 192.168.1.

0 0.0.0.

255 192.168.2.

0 0.0.0.

255access-list 100 permit ip any any

15樓:

首先開路由,使三個vlan能互

訪,(config)# ip routing然後配置acl

switch(config)#access-list 100 deny ip 192.168.10.

0 0.0.0.

255 192.168.20.

0 0.0.0.

255switch(config)#access-list 100 permit ip any any

switch(config)#int vlan 10switch(config-if)#ip access-group 100 in

這樣,vlan10和vlan20就不能互訪。

如果設定cisco路由器和交換機,讓其讓配置操作記錄到syslog日誌中?

16樓:匿名使用者

syslog無法記錄配置變更,你只能架一臺tacacs伺服器。

17樓:匿名使用者

如果你只是本地log的話。

預設不需要特別配置:

加個:logging facility local0 就可以了。如果不行,你看看你的logging buffer是不是設定小了。

如果是遠端log:

遠端伺服器啟動syslog服務,然後配置/etc/syslog.conf ,裡面的配置local0要和交換機配置是一樣的,交換機是local1,你伺服器那配置檔案也需要配置成local1.然後設定log檔案路徑就行。

思科2960交換機如何把某埠從vlan中刪除或退出某v

進入埠後 可以使用 no switchport access vlan 恢復成預設vlan1 或者 switchport access vlan 20 設定新的vlan進行覆蓋 例如f0 1口 埠配成trunk模式的話 int f0 1 no switch trun vlan xx埠配成access...

思科路由交換機都有哪些型號的產品

交換機 cat500 cat2950 cat2960 cat3550 cat3560 cat3750 cat4500 4503,4506,4507,4510等 cat6500 路由器 800系列 cisco815 cisco861 cisco881 cisco888 cisco878 cisco87...

如何檢視交換機路由表交換機如何設定路由表

arp表 交換機 表 路由表 要弄明白二三 原理和流程,必須弄清楚arp表 交換機 表和路由表,這是資料 的依據。由於arp表和交換機 表對於管理員來說是透明的,一般很忽視其工作原理,這是我需要注意的學習地方。所以今天主要是弄明白arp表 交換機 表 路由表。資料最終 依靠的都是arp表,他是資料 ...