2020年7月28日 星期二

IP及路由設定

網路架構圖 :

 

網路設備明細及設置 :

設備名稱

設備型號

IP設置

備註

PC0

Desktop

Fa0 : 192.168.1.1/24 , GW : 192.168.1.254

 

PC1

Desktop

Fa0 : 192.168.2.2/24 , GW : 192.168.2.254

 

PC2

Desktop

Fa0 : 192.168.3.3/24 , GW : 192.168.3.254

 

Switch0

2950-24

GW : 192.168.1.254

Vlan1 : 192.168.1.10/24

 

Fa0/1 : --

 

Fa0/24 : --

 

Switch1

2950-24

GW : 192.168.2.254

Vlan1 : 192.168.2.20/24

 

Fa0/1 : --

 

Fa0/24 : --

 

Switch2

2950-24

GW : 192.168.3.254

Vlan1 : 192.168.3.30/24

 

Fa0/1 : --

 

Fa0/24 : --

 

Router0

2620XM

Fa0/0 : 192.168.1.254

 

S0/0 : 10.1.1.1/24

DCE 0

S0/1 : 10.1.3.1/24

DCE 2

Router1

2620XM

Fa0/0 : 192.168.2.254

 

S0/0 : 10.1.2.2/24

DCE 1

S0/1 : 10.1.1.2/24

DTE 0

Router2

2620XM

Fa0/0 : 192.168.3.254

 

S0/0 : 10.1.3.3/24

DCE 2

S0/1 : 10.1.2.3/24

DTE 1

 ★DCE為拉線的源頭,DTE為終止點 (DCE設備需提供Clock給DTE設備)

步驟一、設定PC0PC1PC2 IP位址設定值,如上表

步驟二、設定Swith0Switch1Switch2 IP設定值

  Swith0

Switch>en

Switch#conf t

Switch(config)#hostname S0

S0(config)#ip default-gateway 192.168.1.254

S0(config)#int vlan1

S0(config-if)#ip address 192.168.1.10 255.255.255.0

S0(config-if)#no shutdown

 

  Swith1

Switch>en

Switch#conf t

Switch(config)#hostname S1

S1(config)#ip default-gateway 192.168.2.254

S1(config)#int vlan1

S1(config-if)#ip address 192.168.2.20 255.255.255.0

S1(config-if)#no shutdown

 

  Swith2

Switch>en

Switch#conf t

Switch(config)#hostname S2

S2(config)#ip default-gateway 192.168.3.254

S2(config)#int vlan1

S2(config-if)#ip address 192.168.3.30 255.255.255.0

S2(config-if)#no shutdown

 

步驟三、安裝Router0Router0Router0 (2620XM Router)背面WIC (WAN Interface Card)介面卡及背蓋。

 

步驟四、Router乙太網路介面設定。

  Router0 FastEthernet0介面設定:

Router>enable

Router#conf t

Router(config)# hostname R0

R0(config)#int Fa0/0

R0(config-if)#ip address 192.168.2.254 255.255.255.0

R0(config-if)#no shutdown

 

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

 

  Router0 FastEthernet1介面設定:

Router>enable

Router#conf t

Router(config)# hostname R1

R1(config)#int Fa0/0

R1(config-if)#ip address 192.168.2.254 255.255.255.0

R1(config-if)#no shutdown

 

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

 

  Router0 FastEthernet2介面設定:

Router>enable

Router#conf t

Router(config)# hostname R1

R2(config)#int Fa0/0

R2(config-if)#ip address 192.168.3.254 255.255.255.0

R2(config-if)#no shutdown

 

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

   

 

設定完Router0、Router1、Router2 其FastEthernet 0/0介面IP Address及介面啟動no shutdown指令後,Router與Switch間的連接介面立即Link起來(由)

 步驟五、DCE介面Clock Rate設定,及各Router靜態路由設定 (設定不認識網段的IP路由)

IP路由指令設定:

  Router(config)#ip route 目的網段 遮罩 下一跳(Next Hop)入口IP 本身出口介面

  R0設定:

R0(config)#int s0/0

R0(config-if)#clock rate 9600

R0(config-if)#ip address 10.1.1.1 255.255.255.0

R0(config-if)#no shutdown

R0(config-if)#int s0/1

R0(config-if)#ip address 10.1.3.1 255.255.255.0

R0(config-if)#no shutdown

R0(config-if)#exit

R0(config)#ip route 192.168.2.0 255.255.255.0 10.1.1.2

R0(config)#ip route 192.168.3.0 255.255.255.0 10.1.3.3

 

  R1設定:

R1(config)#int s0/0

R1(config-if)#clock rate 9600

R1(config-if)#ip address 10.1.2.2 255.255.255.0

R1(config-if)#no shutdown

R1(config-if)#int s0/1

R1(config-if)#ip address 10.1.1.2 255.255.255.0

R1(config-if)#no shutdown

R1(config-if)#exit

R1(config)#ip route 192.168.1.0 255.255.255.0 10.1.2.3

R1(config)#ip route 192.168.3.0 255.255.255.0 10.1.1.1

 

  R2設定:

R2(config)#int s0/0

R2(config-if)#clock rate 9600

R2(config-if)#ip address 10.1.3.3 255.255.255.0

R2(config-if)#no shutdown

R2(config-if)#int s0/1

R2(config-if)#ip address 10.1.2.3 255.255.255.0

R2(config-if)#no shutdown

R2(config-if)#exit

R2(config)#ip route 192.168.1.0 255.255.255.0 10.1.3.1

R2(config)#ip route 192.168.2.0 255.255.255.0 10.1.2.2

  

 


設定完以上IP、IP路由、DCE設備供給DTE設備Clock並設定介面的重開,則路由器之間的序列埠則互相連通。

此時測試,各PC間互PING都是通的。