ciscopackettracer靜態路由設定

2021-03-04 08:55:57 字數 4895 閱讀 8742

1樓:愚己不愚人

你的路由都是錯的,應該是你的命令搞反了。

靜態路由的命令應該是 ip route 目的網路 目的網路掩碼 下一跳位址

所以 你這樣的拓撲應該是這樣寫靜態

r0 ip rou 192.1.1.0 255.255.255.0 10.1.1.2

r1 ip rou 172.1.1.0 255.255.255.0 10.1.1.1

如果沒猜錯 lz應該是把本地網路新增進去了

只有動態路由配置的時候才是需要新增本地網路,以供路由協議把本地網路宣告出去,靜態路由是指向你想要到達的網路,然後配置乙個本身可達的下一跳位址...

靜態路由就是告訴本地網路 "你想要去某某網路,就從我指定的下一跳走」

動態路由則是告訴遠端網路「我附屬下有某某網路,你要找他就從我這裡走」

怎樣用cisco packet tracer靜態路由使三颱路由器連線兩台電腦,怎樣配置

2樓:匿名使用者

步驟1.在路由器router1上配置介面的ip位址和串列埠上的時鐘頻率。

r1762-1>en

r1762-1#conf

r1762-1(config)#inte***ce fastether*** 1/0

r1762-1(config-if)#ip address 172.16.1.1 255.255.255.0

r1762-1(config-if)#no shutdown

r1762-1(config-if)#exit

r1762-1(config)#inte***ce serial 1/2

r1762-1(config-if)#ip address 172.16.2.1 255.255.255.0

r1762-1(config-if)#clock rate 64000

r1762-1(config-if)#no shutdown

r1762-1(config-if)#

r1762-1#show ip inte***ce brief

inte***ce                        ip-address(pri)      ok?       status

serial 1/2                       172.16.2.1/24        yes       up

serial 1/3                       no address           yes       down

fastether*** 1/0                 172.16.1.1/24        yes       up

fastether*** 1/1                 no address           yes       down

null 0                           no address           yes       up

步驟2.在路由器router1上配置靜態路由。

r1762-1(config)#ip route 172.16.3.0 255.255.255.0 172.16.2.2

r1762-1#show ip route

codes:  c - connected, s - static,  r - rip

o - ospf, ia - ospf inter area

n1 - ospf nssa external type 1, n2 - ospf nssa external type 2

e1 - ospf external type 1, e2 - ospf external type 2

* - candidate default

gateway of last resort is no set

c    172.16.1.0/24 is directly connected, fastether*** 1/0

c    172.16.1.1/32 is local host.

c    172.16.2.0/24 is directly connected, serial 1/2

c    172.16.2.1/32 is local host.

s    172.16.3.0/24 [1/0] via 172.16.2.2

步驟3.在路由器router2上配置介面的ip位址和串列埠上的時鐘頻率。

r1762-2>en

r1762-2#conf

r1762-2(config)#inte***ce fastether*** 1/0

r1762-2(config-if)#ip address 172.16.3.2 255.255.255.0

r1762-2(config-if)#no shutdown

r1762-2(config-if)#exit

r1762-2(config)#inte***ce serial 1/2

r1762-2(config-if)#ip address 172.16.2.2 255.255.255.0

r1762-2(config-if)#no shutdown

r1762-2(config-if)#

r1762-1#show ip inte***ce brief

inte***ce                        ip-address(pri)      ok?       status

serial 1/2                       172.16.2.2/24        yes       up

serial 1/3                       no address           yes       down

fastether*** 1/0                 172.16.3.2/24        yes       up

fastether*** 1/1                 no address           yes       down

null 0                           no address           yes       up

步驟4.在路由器router2上配置靜態路由。

r1762-1(config)#ip route 172.16.1.0 255.255.255.0 172.16.2.1

r1762-1#show ip route

codes:  c - connected, s - static,  r - rip

o - ospf, ia - ospf inter area

n1 - ospf nssa external type 1, n2 - ospf nssa external type 2

e1 - ospf external type 1, e2 - ospf external type 2

* - candidate default

gateway of last resort is no set

c    172.16.3.0/24 is directly connected, fastether*** 1/0

c    172.16.3.2/32 is local host.

c    172.16.2.0/24 is directly connected, serial 1/2

c    172.16.2.2/32 is local host.

s    172.16.1.0/24 [1/0] via 172.16.2.1

步驟5.測試網路的聯通性。

c:\>ping 172.16.3.22     !從pc1  ping  pc2

pinging 172.16.3.22  with 32 bytes of data:

reply from 172.16.3.22: bytes=32 time<10ms ttl=64

reply from 172.16.3.22: bytes=32 time<10ms ttl=64

reply from 172.16.3.22: bytes=32 time<10ms ttl=64

reply from 172.16.3.22: bytes=32 time<10ms ttl=64

ping statistics for 172.16.3.22:

packets: sent = 4, received = 4, lost = 0 (0% loss),

minimum = 0ms, maximum =  0ms, average =  0ms

c:\>ping 172.16.1.11    !從pc2  ping  pc1

pinging 172.16.1.11  with 32 bytes of data:

reply from 172.16.1.11: bytes=32 time<10ms ttl=64

reply from 172.16.1.11: bytes=32 time<10ms ttl=64

reply from 172.16.1.11: bytes=32 time<10ms ttl=64

reply from 172.16.1.11: bytes=32 time<10ms ttl=64

ping statistics for 172.16.1.11:

packets: sent = 4, received = 4, lost = 0 (0% loss),

minimum = 0ms, maximum =  0ms, average =  0ms

cisco packet tracer 路由器靜態路由問題

3樓:匿名使用者

你的10.128.1.254, 200,128.1.1 的網段 是否和本路由器直連。 如果不直連, 雖然配置成功, 但是不顯示。

請問靜態路由怎麼設定? 20,靜態路由器怎麼設定

例一中r1上設定的靜態路由條目就應該為 目的ip位址代表這個網段 子網掩碼因為是c類網段 下一跳。如圖2,此圖為tp link r410中的靜態路由表配置項,儲存後即可生效。如果是cisco的路由器,則在全域性配置模式下鍵入命令 router config ip route 注意 其中的閘道器ip必...

什麼是靜態路由?靜態路由有什麼作用

靜態路由 英語 static routing 一種路由的方式,路由項 routing entry 由手動配置,而非動態決定。與動態路由不同,靜態路由是固定的,不會改變,即使網路狀況已經改變或是重新被組態。一般來說,靜態路由是由網路管理員逐項加入路由表。靜態路由作用是使網路安全保密性高。動態路由因為需...

靜態路由的配置,請問靜態路由怎麼設定?

看你問的問題好像你是在自學吧?要不就是自己提前預習了。呵呵。不過要說的是,你這個 都沒錯,不過呢,你中間卻丟了一步,因為你沒有在路由上配置子介面,交換機跟路由器相連的介面設為trunk是沒錯,不過因為你叫喚機上建立了兩個vlan,而且,兩個pc分別屬於兩個vlan,所以呢,與交換機相連的那個路由器上...