關於cisco路由器和交換機的配置

2021-03-05 09:19:13 字數 6586 閱讀 2126

1樓:匿名使用者

編一個典型配置的案例, 你看看吧, 只列出關鍵的命令

*****====

一,交換機配置

switch#vlan database

switch(vlan)#vlan 2 name vlan2

switch(vlan)#vlan 3 name vlan3 //定義vlan

switch(vlan)#exit

switch(config)#inte***ce f0/1

switch(config-if)#switch mode access

switch(config-if)#switch access vlan2

switch(config-if)#exit

switch(config)#inte***ce f0/2

switch(config-if)#switch mode access

switch(config-if)#switch access vlan3 //將埠加入vlan

switch(config-if)#exit

switch(config)#inte***ce f0/24

switch(config-if)#switch mode trunk

switch(config-if)#encapsulation dot1q //開啟幹道並封裝為dot1q

switch(config-if)#exit

二,路由器配置

router(config)#inte***ce f0/0

router(config-if)#no ip address //主介面下不配ip地址

router(config-if)#no shutdown

router(config)#inte***ce f0/0.1

router(config-if)#encapsulation dot1q 2

router(config-if)#ip address 192.168.1.1 255.255.255.0 //子介面封裝為dot1q並與vlan關聯

router(config-if)#no shutdown

router(config)#inte***ce f0/0.2

router(config-if)#encapsulation dot1q 3

router(config-if)#ip address 192.168.2.1 255.255.255.0

router(config-if)#no shutdown

此時單臂路由配置完畢!

router(config)#service dhcp //開啟dhcp server 功能

router(dhcp-config)#ip dhcp pool test1 //定義作用域

router(dhcp-config)#***work 192.168.1.0 255.255.255.0 //要分配的網路

router(dhcp-config)#default-router 192.168.1.1 //vlan的閘道器

router(dhcp-config)#dns-server 202.102.192.68 //dns server ip 地址

router(config)#ip dhcp pool test2

router(dhcp-config)#***work 192.168.2.0 255.255.255.0

router(dhcp-config)#default-router 192.168.2.1

router(dhcp-config)#dns-server 202.102.192.68

此時dhcp server 配置完畢!

router(config)#access 1 deny 192.168.1.3 0 //假設pc的地址為1.3.

router(config)#access 1 permit 192.168.1.0 0.0.0.255

router(config)#access 1 permit 192.168.2.0 0.0.0.255 //允許內網訪問inter***

router(config)#ip nat pool xyz 202.202.202.

202 202.202.202.

202 ***mask 255.255.255.

0 //定義nat地址池

router(config)#ip nat inside source list 1 pool xyz overload //定義內網與外網的關聯

router(config)#inte***ce f0/0.1

router(config-if)#ip nat inside

router(config)#inte***ce f0/0.2

router(config-if)#ip nat inside //定義此介面為進站

router(config)#inte***ce f0/1

router(config-ip)#ip address 202.202.202.202 255.255.255.0

router(config-if)#no shutdown

router(config-if)#ip nat outside //定義些介面為出站

到此時實驗配置好了.

方法很簡單. 在路由器與交換機互聯的埠上. 封裝子介面, 配置相關命令. 再在交換機與之相連的埠上,配置trunk. 不能上網的, 禁止 nat就可以了.

2樓:匿名使用者

單臂路由的典型啊,設定個truck口連線交換機和路由器,就可以互訪了.至於pc3不能上外網,在路由裡設訪問控制就是了,禁止pc3的任何資料通過廣域口

思科路由器和交換機的配置命令全集 5

3樓:匿名使用者

1. switch配置命令

(1)模式轉換命令

4樓:匿名使用者

我也是學這個的。可以一起研究!

5樓:匿名使用者

nnd,這個才5分啊?

如何給cisco的交換機和路由器配置ip地址,並實現裝置互通?

6樓:匿名使用者

cisco交換機

有2層交換機、3層交換機以及4~7層交換機的區別

二層交換機配置的ip地址只是一個管理交換機的地址,他不是參與路由的選路地址,也就是說他只對交換機本身有效!

3層以上的交換機如果配置路由ip地址,他們才會參與到整個選路過程中間去!

所以,根據以上我的解釋,你必須要說明一下交換機在你的網路中,工作在osi的哪一層,才好給你相應的配置例項!

7樓:水墨彌香

交換機和路由器用網線連線,然後兩個路由器跟交換機相連的埠,no shut,配置同一網段的地址,兩個路由器就可以通訊了

思科路由器連線交換機的配置

8樓:匿名使用者

如上圖:

ip地址設定

如圖再次不再寫命令

waiwang路由器設定如下:

router#sh run

building configuration...

current configuration : 550 bytes

!version 12.4

no service timestamps log datetime msec

no service timestamps debug datetime msec

no service password-encryption

!hostname router

!spanning-tree mode pvst!!

!!inte***ce fastether***0/0

no ip address

duplex auto

speed auto

shutdown

!inte***ce fastether***0/1

ip address 58.251.138.45 255.255.255.0

duplex auto

speed auto

!inte***ce vlan1

no ip address

shutdown

!ip classless

ip route 2.2.2.0 255.255.255.0 58.251.138.46

neiwang路由設定

building configuration...

current configuration : 656 bytes

!version 12.4

no service timestamps log datetime msec

no service timestamps debug datetime msec

no service password-encryption

!hostname router

!ip dhcp pool 123

***work 2.2.2.0 255.255.255.0

default-router 2.2.2.1

dns-server 2.2.2.1

!spanning-tree mode pvst

!inte***ce fastether***0/0

ip address 2.2.2.1 255.255.255.0

duplex auto

speed auto

!inte***ce fastether***0/1

ip address 58.251.138.46 255.255.255.0

duplex auto

speed auto

!inte***ce vlan1

no ip address

shutdown

!ip classless

ip route 58.251.138.0 255.255.255.0 58.251.138.45

測試結果

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

9樓:匿名使用者

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 (通)

cisco交換機型號和路由器型號

頭大了,這問題。思科官網,看產品。cisco asr 1000 系列匯聚服務路由器思科 xr 12000系列路由器 思科 12400 系列路由器 思科 12000 系列路由器 思科 10000 系列路由器 思科 7600 系列路由器 思科 7500 系列路由器 思科 7300 系列路由器 思科 72...

關於交換機和路由器的安裝,關於路由器和交換機的ip問題

你房東那個貌似不是路由器.應該是貓來的.你要去買個路由才行.房東那個是貓。不是路由器。把房東電腦上用的那根網線拔下來。插到你買的交換機上。然後再插兩根連線你們的電腦就可以撥號連線了。你直接拿一條網線將你說的那個路由器與交換機連線好,然後再從交換機接一條網線到你的電腦,最後在電腦上進入交換機進行設定就...

路由器和交換機的區別,交換機和路由器的網速區別

功能 上有比較大的區別,路由器主要用於共享上網,它有交換機的功能。但是口較少,一般都是四口的。比如說你們的兩臺電腦都想上網,但一個宿舍只有一個ip,那就用路由器,它可以讓兩臺機器同時上網並且也可以實現所有區域網的功能。交換機是用於比較大型的區域網 幾十到上百臺主機 就是實現區域網的功能。沒有其它附加...