求這個單臂路由的配置命令,思科配置單臂路由命令

2021-05-25 00:48:10 字數 4687 閱讀 2587

1樓:溪乄秋

如果是配連通的話,不用那麼麻煩,r路由器都直連到交換機. 給路由埠配置兩個ip地址就好了.

我用 cisco packet tracer 這款模擬軟體 思科的. **

router>en

router#conf t

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

router(config)#hos

router(config)#hostname r1

r1(config)#int

r1(config)#inte***ce fa

r1(config)#inte***ce fastether*** 0/0

r1(config-if)#ip add

r1(config-if)#ip address 192.168.1.1 255.255.255.0

r1(config-if)#no shu

r1(config-if)#no shutdown

r1(config-if)#

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

r1(config-if)#exit

r1(config-if)#exit

r1(config)#int

r1(config)#inte***ce fa

r1(config)#inte***ce fastether*** 0/1

r1(config-if)#ip ad

r1(config-if)#ip address 192.168.2.1 255.255.255.0

r1(config-if)#no shu

r1(config-if)#no shutdown

r1(config-if)#

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

r1(config-if)#end

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

r1#wr

building configuration...

[ok]

r1#r1#

思科配置單臂路由命令

2樓:匿名使用者

s2960一臺,r2811一臺,pc2臺

sw#vlan database

sw(vlan)#vlan 2

vlan 2 added:

name: vlan0002

sw(vlan)#vlan 3

vlan 3 added:

name: vlan0003

sw(vlan)#exit

sw(config)#int f0/2

sw(config-if)#switchport mode access

sw(config-if)#switchport access vlan 2

sw(config-if)#no shutdown

sw(config-if)#int f0/3

sw(config-if)#switchport mode access

sw(config-if)#switchport access vlan 3

sw(config-if)#no shutdown

sw(config-if)#int f0/1

sw(config-if)#switchport mode trunk

sw(config-if)#no shutdown

路由器配置如下:

r(config)#int f0/0

r(config-if)#no shutdown

r(config-if)#int f0/0.2

r(config-subif)#encapsulation dot1q 2

r(config-subif)#ip address 192.168.2.254 255.255.255.0

r(config-subif)#no shutdown

r(config-subif)#int f0/0.3

r(config-subif)#encapsulation dot1q 3

r(config-subif)#ip address 192.168.3.254 255.255.255.0

r(config-subif)#no shutdown

r(config-subif)#end

客戶機配置如下:

hosta:

ip:192.168.2.1/24

ip default-gateway:192.168.2.254

hostb:

ip:192.168.3.1/24

ip default-gateway:192.168.3.254

3樓:匿名使用者

單臂路由

路由器配置:

1設定f0/0介面無ip,開啟介面。

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

no ip address

2在fa0/0介面上設定兩個子介面,分別更改封裝為dot1q,並設定各自的ip地址。

inte***ce fastether***0/0.1

encapsulation dot1q 2

ip address 1.1.1.1 255.255.255.0

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

encapsulation dot1q 3

ip address 2.2.2.1 255.255.255.0

要注意的是這裡的vlan號碼要和交換機中的vlan號對應起來。

交換機配置:

首先在交換機上劃分兩個vlan。

vlan 2 name pc1

vlan 3 name pc2

1 將交換機連線路由器的介面設定為trunk。

inte***ce fastether***1/5

switchport mode trunk

!2 將交換機連線兩臺pc的介面繫結到不同的vlan中去。

inte***ce fastether***1/11

switchport access vlan 2

!inte***ce fastether***1/12

switchport access vlan 3

pc配置:

給pc的f0/0介面設定與路由器對應子介面同一網段的ip地址。

pc1inte***ce fastether***0/0

ip address 1.1.1.2 255.255.255.0

!pc2

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

ip address 2.2.2.2 255.255.255.0

!給兩個pc分別設定一條預設路由,將出口指向f0/0,即劃分入vlan的介面。

ip route 0.0.0.0 0.0.0.0 fastether***0/0

至此,單臂路由的實驗配置完成。測試的時候在pc1上ping一下pc2,應該可以看到結果。

要點:1,注意子介面的ip要和pc的ip在同一網段。2,要確保所有介面的配置正確,並都開啟了介面。3,作為pc使用的路由器上必須配置有正確的路由條目。

關於單臂路由配置

4樓:輕評點滴

路由器配置:

inte***ce fastether***0/0 //與交換機連線的埠fastether***0/0

no ip address

duplex auto

speed auto

!inte***ce fastether***0/0.1 建立子介面

0.1encapsulation dot1q 2

ip address 192.168.1.1 255.255.255.0

!inte***ce fastether***0/0.2 建立子介面0.2

encapsulation dot1q 3

ip address 192.168.2.1 255.255.255.0

!交換機配置:

建立兩個vlan2,vlan3

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

switchport access vlan 2

switchport mode access

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

switchport access vlan 3

switchport mode access!!

inte***ce fastether***0/24 //與路由器連線的埠

switchport mode trunk //預設為access口,配置為trunk口

!pc機配置:

pc1:

閘道器:192.168.1.1 ip:192.168.1.100

pc2:

閘道器:192.168.2.1 ip:192.168.2.100

注意:路由器埠預設是關閉狀態,需要noshutdown啟動,交換機預設是access模式,需要配置為trunk模式。

不知道你明白麼?

求2019左右的主機配置單,本人電腦配置盲,能在說明或多幾款對比下就更好了!我主要玩遊戲LOL以及

cpu amd 速龍ii四核 750k 盒裝 429.00主機板 華擎 asrock fm2a55m vg3 299.00顯示卡 迪蘭恆進 dataland hd7750 恆金二代 1g 599.00記憶體 威剛 萬紫千紅 ddr3 1600 4gb 229.00硬碟 西部資料500gb wd500...

求2019 2500不帶液晶的電腦配置單

這款是遊戲配置 cpu amd 速龍ii x2 245 1 380 主機板 斯巴達克 黑潮ba 140 1 499 記憶體 威剛 2gb ddr3 1333 萬紫千紅 1234 335 硬碟 wd 魚子醬 320gb 7200轉 8mb 串列埠 1234 280 顯示卡 昂達 hd5750 1024...

求8000元左右的攢機配置單

主機板 技嘉 ga ex58 ud3r 1 1599 記憶體 金士頓 khx12800d3llk3 6gx 6gb 三通道 1234 1305 硬碟 日立 7k1000.c 1tb 7200轉 32mb hds72 1234 470 顯示卡 藍寶石 hd5850 1gb gddr5 1234 229...