精品国产一级在线观看,国产成人综合久久精品亚洲,免费一级欧美大片在线观看

當前位置:數據網絡產品專區/路由器/交換機 → 正文

靜態路由也能勝任多網段之間進行通信

責任編輯:editor007 |來源:企業網D1Net  2015-03-13 21:43:39 本文摘自:51CTO

本博文出自51CTO博客通信,我的最愛,有任何問題請進入博主頁面互動討論!

博文地址:http://dgd2010.blog.51cto.com/1539422/881922

昨天,和朋友在機房討論組網問題,當討論到路由器間通信時,朋友問起為什么非要配置路由選擇協議。以前一般是根據配置手冊或者經驗配置也沒有仔細考慮過這個問題。想了想,應該是這樣理解的(如下)。

如果多個網段之間要實現通信,必須使用路由器,這個毫無疑問。如果多個網段之間存在多個可選擇的路徑,最方便的是采取配置路由選擇協議的方法,簡單點的網絡可以采用RIP協議,如果是復雜的網絡則可以采用OSPF。當然在選擇的路徑不多時也可以采用靜態路由的方法。

但是,當多個網段之間只有一條路徑時,那么僅僅是配置靜態路由就足夠了。如果是在企業中工作,那么往往配置簡單的靜態路由就足夠了。

為了更有說服力和便于理解我用CPT(Cisco Packet Tracer)演示了一下。

拓撲圖如下圖所示:

分別有四個網段,10.0.0.0/8、112.237.228.0/24、192.168.10.0/24、211.86.104.0/24。

靜態路由設置如下:

ip route 192.168.10.0 255.255.255.0 112.237.228.1

ip route 211.86.104.0 255.255.255.0 112.237.228.1

ip route 10.0.0.0 255.0.0.0 112.237.228.244

ip route 211.86.104.0 255.255.255.0 192.168.10.1

ip route 112.237.228.0 255.255.255.0 192.168.10.2

ip route 10.0.0.0 255.0.0.0 192.168.10.2

配置如下:

1.PC0的IP配置:

Packet Tracer PC Command Line 1.0

PC>ipconfig

IP Address......................: 10.0.0.3

Subnet Mask.....................: 255.0.0.0

Default Gateway.................: 10.0.0.1

PC>

2.PC1的IP配置:

Packet Tracer PC Command Line 1.0

PC>ipconfig

IP Address......................: 211.86.104.52

Subnet Mask.....................: 255.255.255.0

Default Gateway.................: 211.86.104.254

PC>

3.R1的配置:

Router>enable

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname R1

R1(config)#interface FastEthernet0/1

R1(config-if)#ip address 10.0.0.1 255.0.0.0

R1(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up

R1(config-if)#end

R1#

%SYS-5-CONFIG_I: Configured from console by console

R1#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R1(config)#int f0/0

R1(config-if)#ip addr 112.237.228.244 255.255.255.0

R1(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

R1(config-if)#end

R1#

%SYS-5-CONFIG_I: Configured from console by console

R1#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R1(config)#ip route 192.168.10.0 255.255.255.0 112.237.228.1

R1(config)#ip route 211.86.104.0 255.255.255.0 112.237.228.1

R1(config)#end

R1#

%SYS-5-CONFIG_I: Configured from console by console

R1#

4.R2的配置:

Router>enable

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname R2

R2(config)#

R2(config)#interface FastEthernet0/1

R2(config-if)#ip address 112.237.228.1 255.255.255.0

R2(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up

R2(config-if)#

R2(config-if)#exit

R2(config)#interface FastEthernet0/0

R2(config-if)#ip address 192.168.10.2 255.255.255.0

R2(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

R2(config-if)#end

R2#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R2(config)#ip route 10.0.0.0 255.0.0.0 112.237.228.244

R2(config)#ip route 211.86.104.0 255.255.255.0 192.168.10.1

R2(config)#end

R2#

%SYS-5-CONFIG_I: Configured from console by console

R2#

5.R3的配置:

Router>enable

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname R3

R3(config)#

R3(config)#interface FastEthernet0/1

R3(config-if)#ip address 192.168.10.1 255.255.255.0

R3(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up

R3(config-if)#

R3(config-if)#exit

R3(config)#interface FastEthernet0/0

R3(config-if)#ip address 211.86.104.254 255.255.255.0

R3(config-if)#no shutdown

R3(config-if)#

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

R3>enable

R3#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R3(config)#ip route 112.237.228.0 255.255.255.0 192.168.10.2

R3(config)#ip route 10.0.0.0 255.0.0.0 192.168.10.2

R3(config)#end

R3#

%SYS-5-CONFIG_I: Configured from console by console

R3#

6.使用tracert進行測試:

測試從PC0能否路由到PC1。

結果表明測試成功。

測試從PC1能否路由到PC0。

結果表明測試成功。

關鍵字:config-ifConfigured靜態路由

本文摘自:51CTO

x 靜態路由也能勝任多網段之間進行通信 掃一掃
分享本文到朋友圈
當前位置:數據網絡產品專區/路由器/交換機 → 正文

靜態路由也能勝任多網段之間進行通信

責任編輯:editor007 |來源:企業網D1Net  2015-03-13 21:43:39 本文摘自:51CTO

本博文出自51CTO博客通信,我的最愛,有任何問題請進入博主頁面互動討論!

博文地址:http://dgd2010.blog.51cto.com/1539422/881922

昨天,和朋友在機房討論組網問題,當討論到路由器間通信時,朋友問起為什么非要配置路由選擇協議。以前一般是根據配置手冊或者經驗配置也沒有仔細考慮過這個問題。想了想,應該是這樣理解的(如下)。

如果多個網段之間要實現通信,必須使用路由器,這個毫無疑問。如果多個網段之間存在多個可選擇的路徑,最方便的是采取配置路由選擇協議的方法,簡單點的網絡可以采用RIP協議,如果是復雜的網絡則可以采用OSPF。當然在選擇的路徑不多時也可以采用靜態路由的方法。

但是,當多個網段之間只有一條路徑時,那么僅僅是配置靜態路由就足夠了。如果是在企業中工作,那么往往配置簡單的靜態路由就足夠了。

為了更有說服力和便于理解我用CPT(Cisco Packet Tracer)演示了一下。

拓撲圖如下圖所示:

分別有四個網段,10.0.0.0/8、112.237.228.0/24、192.168.10.0/24、211.86.104.0/24。

靜態路由設置如下:

ip route 192.168.10.0 255.255.255.0 112.237.228.1

ip route 211.86.104.0 255.255.255.0 112.237.228.1

ip route 10.0.0.0 255.0.0.0 112.237.228.244

ip route 211.86.104.0 255.255.255.0 192.168.10.1

ip route 112.237.228.0 255.255.255.0 192.168.10.2

ip route 10.0.0.0 255.0.0.0 192.168.10.2

配置如下:

1.PC0的IP配置:

Packet Tracer PC Command Line 1.0

PC>ipconfig

IP Address......................: 10.0.0.3

Subnet Mask.....................: 255.0.0.0

Default Gateway.................: 10.0.0.1

PC>

2.PC1的IP配置:

Packet Tracer PC Command Line 1.0

PC>ipconfig

IP Address......................: 211.86.104.52

Subnet Mask.....................: 255.255.255.0

Default Gateway.................: 211.86.104.254

PC>

3.R1的配置:

Router>enable

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname R1

R1(config)#interface FastEthernet0/1

R1(config-if)#ip address 10.0.0.1 255.0.0.0

R1(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up

R1(config-if)#end

R1#

%SYS-5-CONFIG_I: Configured from console by console

R1#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R1(config)#int f0/0

R1(config-if)#ip addr 112.237.228.244 255.255.255.0

R1(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

R1(config-if)#end

R1#

%SYS-5-CONFIG_I: Configured from console by console

R1#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R1(config)#ip route 192.168.10.0 255.255.255.0 112.237.228.1

R1(config)#ip route 211.86.104.0 255.255.255.0 112.237.228.1

R1(config)#end

R1#

%SYS-5-CONFIG_I: Configured from console by console

R1#

4.R2的配置:

Router>enable

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname R2

R2(config)#

R2(config)#interface FastEthernet0/1

R2(config-if)#ip address 112.237.228.1 255.255.255.0

R2(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up

R2(config-if)#

R2(config-if)#exit

R2(config)#interface FastEthernet0/0

R2(config-if)#ip address 192.168.10.2 255.255.255.0

R2(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

R2(config-if)#end

R2#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R2(config)#ip route 10.0.0.0 255.0.0.0 112.237.228.244

R2(config)#ip route 211.86.104.0 255.255.255.0 192.168.10.1

R2(config)#end

R2#

%SYS-5-CONFIG_I: Configured from console by console

R2#

5.R3的配置:

Router>enable

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname R3

R3(config)#

R3(config)#interface FastEthernet0/1

R3(config-if)#ip address 192.168.10.1 255.255.255.0

R3(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up

R3(config-if)#

R3(config-if)#exit

R3(config)#interface FastEthernet0/0

R3(config-if)#ip address 211.86.104.254 255.255.255.0

R3(config-if)#no shutdown

R3(config-if)#

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

R3>enable

R3#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R3(config)#ip route 112.237.228.0 255.255.255.0 192.168.10.2

R3(config)#ip route 10.0.0.0 255.0.0.0 192.168.10.2

R3(config)#end

R3#

%SYS-5-CONFIG_I: Configured from console by console

R3#

6.使用tracert進行測試:

測試從PC0能否路由到PC1。

結果表明測試成功。

測試從PC1能否路由到PC0。

結果表明測試成功。

關鍵字:config-ifConfigured靜態路由

本文摘自:51CTO

電子周刊
回到頂部

關于我們聯系我們版權聲明隱私條款廣告服務友情鏈接投稿中心招賢納士

企業網版權所有 ©2010-2024 京ICP備09108050號-6 京公網安備 11010502049343號

^
  • <menuitem id="jw4sk"></menuitem>

    1. <form id="jw4sk"><tbody id="jw4sk"><dfn id="jw4sk"></dfn></tbody></form>
      主站蜘蛛池模板: 柞水县| 西贡区| 杭州市| 敦化市| 大安市| 枣庄市| 四川省| 封丘县| 泉州市| 河东区| 丹巴县| 云霄县| 鄯善县| 陈巴尔虎旗| 孝昌县| 克拉玛依市| 治多县| 丰城市| 定日县| 大名县| 江源县| 乐亭县| 大宁县| 三江| 华坪县| 西青区| 连州市| 湖北省| 北宁市| 余庆县| 新余市| 旬邑县| 南城县| 奎屯市| 榆树市| 浠水县| 株洲市| 海丰县| 无棣县| 阜新市| 碌曲县|