Packet Tracer路由器簡單配置


路由器Router2:
Router>enable 進入特權模式
Router#configure terminal 進入全局配置模式
Router(config)#hostname RA 將路由器名字改為RA
RA(config)#enable password todd 設置進入特權模式的密碼
RA(config)#interface fastEthernet 0/0 進入以太網接口0/0
RA(config-if)#ip address 192.168.10.1 255.255.255.0 添加IP地址也就是網關
RA(config-if)#no shutdown 開啟

RA(config)#interface serial 2/0 進入廣域網接口
RA(config-if)#ip address 192.168.20.1 255.255.255.0 添加IP地址
RA(config-if)#no shutdown 開啟
RA(config)#ip route 192.168.30.0 255.255.255.0 192.168.20.2 添加靜態路由

用10.2 ping 20.2,會出現超時,是因為只對RA添加路由是不行的,因為雖然它可以發送成功,但是回來的路徑不通,所以要對路由器3也要加路由表

 


路由器Router3:
Router>enable 進入特權模式
Router#configure terminal 進入全局配置模式
Router(config)#hostname RA 將路由器名字改為RA
RA(config)#enable password todd 設置進入特權模式的密碼
RA(config)#interface fastEthernet 0/0 進入以太網接口0/0
RA(config-if)#ip address 192.168.30.1 255.255.255.0 添加IP地址也就是網關
RA(config-if)#no shutdown 開啟

RA(config)#interface serial 2/0 進入廣域網接口
RA(config-if)#ip address 192.168.20.1 255.255.255.0 添加IP地址
RA(config-if)#no shutdown 開啟
RA(config-if)#clock rate 64000 時鍾頻率
RB(config)#ip route 192.168.10.0 255.255.255.0 192.168.20.1

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM