思科實驗1計算機和交換機的ip位址設定

2021-09-22 00:21:11 字數 2678 閱讀 6431

實驗1計算機與交換機ip位址設定

1. 雙擊hosta, 輸入使用者名稱和入口令,鍵入"?"可以求得幫助。

pca login:root

password:linux

設定 ip :

[root#pca root]# ifconfig eth0 10.65.1.1 netmask 255.255.0.0

檢視 ip :

[root#pca root]# ifconfig

關閉網絡卡 :

[root#pca root]# ifconfig eth0 10.65.1.1 netmask 255.255.0.0 down

設定閘道器:

[root#pca root]# route add default gw 10.65.1.9

檢視閘道器:

[root#pca root]# route

刪除閘道器:

[root#pca root]# route del default gw 10.65.1.9

2. 雙擊hostb, 輸入使用者名稱和入口令,鍵入"?"可以求得幫助。

pcb login:root

password:linux

設定 ip :

[root#pcb root]# ifconfig eth0 10.65.1.2 netmask 255.255.0.0

[root#pcb root]# ifconfig

設定閘道器:

[root#pcb root]# route add default gw 10.65.1.9

[root#pcb root]# route

這裡只是說明設定閘道器的方法,關於它的意義在後面實現才能體現。

[root@pca root]# ping 10.65.1.1 (通)

[root@pca root]# ping 10.65.1.2 (通)

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

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

可見交換機不用做任何設定,就可以讓兩個計算機連通。交換機預設狀態是

所有埠全在vlan1,可以替代hub使用,交換機的埠獨享頻寬。

3.雙擊switcha

進入特權模式 : 

switch>en

進入全域性配置模式:

switch#conf t

進入預設vlan狀態:

switch(config)#int vlan 1

設定ip位址和掩碼:

switch(config-if)#ip address 10.65.1.3 255.255.0.0

設定switch的閘道器:

switch(config)#ip default-gateway 10.65.1.9

檢視當前配置:0.0

switch#sh run

測試聯通情況:

switch#ping 10.65.1.1 (通)                ;ping hosta

switch#ping 10.65.1.2 (通)                ;ping hostb

switch#ping 10.65.1.3 (通)                ;這相操作是ping自己

switch#ping 10.65.1.4 (不通)              ;沒有這個ip,所以不通。

設定交換機的ip位址,一般是做遠程式管理用,即用telnet 遠端登入到交換機。

至於交換機的閘道器,則是為了提供從交換機連線到其它裝置的路由。

4.雙擊pca

[root@pca root]# ping 10.65.1.3 (通)       ;從電腦ping 交換機

[root@pca root]# ping 10.65.1.4 (不通)     ;沒有這個ip,所以不通。

[root@pca root]# telnet 10.65.1.3          ;從電腦登入到交換機

enter password:***                         ;輸入虛擬終端密碼

switch>                                    ;登入成功

5.修改pcb的ip位址

修改為不同網段的乙個ip位址,為10.66.1.2,再從pca ping pcb。

[root#pcb root]# ifconfig eth0 10.66.1.2 netmask 255.255.0.0

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

再修改pcb為相同網段的乙個ip位址, 如10.65.1.4:

[root#pcb root]# ifconfig eth0 10.65.1.4 netmask 255.255.0.0

再從pca ping pcb:

[root@pca root]# ping 10.65.1.4 (通)

可見只有網路相同的情況下,才可以ping通。

斷開交換機與pcb計算機連線,進行如下操作:

[root@pca root]# ping 10.65.1.4 (不通)

[root@pca root]# ping 10.65.1.3  (通)

[root@pca root]# ping 10.65.1.1  (通)

[root@pca root]# ping 127.0.0.1  (通)

計算機網路 交換機簡介

1.交換機的工作原理和作用 交換機工作在osi參考模型的第二層即鏈路層,交換機的主要作用是根據mac位址 資料幀。交換機有一條高且寬的背部匯流排,所有的埠都接到背部匯流排上,見下圖。工作時,交換機首先會根據收到的資料幀中的源mac位址 實體地址 與交換機埠建立對映,並寫入mac位址表中。然後,交換機...

實驗1 交換機的基本配置

實驗名稱 交換機的基本配置 實驗目的 掌握交換機命令列的各種操作模式的區別,能夠使用各種幫助資訊,以及用命令列進行基本的配置。switch enable switch configure terminal switch config inte ce fastethernet 0 1 switch c...

計算機網路 實驗3 單交換機vlan配置

根據要求選擇部件並連線 3.此時使用ping命令連線另外兩台主機,則全部連通 原因 如果未對交換機配置時預設所有埠在vlan1中 1.建立vlan,並顯示交換機上的vlan配置 switch config terminal 進入全域性配置模式 switch config vlan 10 建立編號為1...