欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

OSPF高級配置

OSPF高級配置

-----------------實驗所需要的協(xié)議---------------

默認(rèn)路由協(xié)議、靜態(tài)路由協(xié)議、RIP協(xié)議、OSPF協(xié)議

站在用戶的角度思考問題,與客戶深入溝通,找到南江網(wǎng)站設(shè)計與南江網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站設(shè)計、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名注冊、網(wǎng)頁空間、企業(yè)郵箱。業(yè)務(wù)覆蓋南江地區(qū)。

·

----------------GNS3拓?fù)涞脑敿?xì)配置------------------

1、托出六臺路由器,(右擊選擇Configure,選擇Slots添加一個端口NM-1FE-TX,其中R3需要添加2個NM-1FE-TX,點擊OK即可)
2、托出四臺PC機(jī)(VPCS)
3、將R6的圖標(biāo)改為cloud(運營商)
OSPF高級配置

·

-------------------詳細(xì)操作--------------------

第一、進(jìn)入端口配置地址

R1詳細(xì)配置:

R1#conf t
RI#(config)int f0/0
R1#(config-if)ip add 192.168.10.1 255.255.255.0
R1#(config-if)no shut
R1#(config-if)int f0/1
R1#(config-if)ip add 192.168.20.1 255.255.255.0
R1#(config-if)no shut
R1#(config-if)ex
R1#(config)ip router 0.0.0.0 0.0.0.0 192.168.20.2   //在末梢網(wǎng)絡(luò)配置默認(rèn)路由并指向下一條地址

·
R2詳細(xì)配置:

R2#conf t
  R2(config)#int f0/1
  R2(config-if)#ip add 192.168.20.2 255.255.255.0
  R2(config-if)#no shut
  R2(config-if)#ex
  R2(config)#int f0/0
  R2(config-if)#ip add 192.168.30.1 255.255.255.0
  R2(config-if)#no shut
  R2(config-if)#ex
  R2(config)#router ospf 1     (//啟用OSPF1進(jìn)程)                              
  R2(config-router)#router-id 2.2.2.2          (//標(biāo)注route-id 2.2.2.2)    
  R2(config-router)#network 192.168.30.0 0.0.0.255 area 1        (//在area1種宣告30段落網(wǎng)段)   
  R2(config-router)#ex
  R2(config)#ip route 192.168.10.0 255.255.255.0 192.168.20.1                            
    R2(config)#router ospf 1                                                             (//啟用OSPF1進(jìn)程)
  R2(config-router)#redistribute connected subnets                     (//注入直連網(wǎng)段20段落)
  R2(config-router)#redistribute static subnets                                (//注入靜態(tài)網(wǎng)段10段落)
  R2(config-router)#ex

·
R3詳細(xì)配置:

R3#conf t
R3(config)#int f0/0
R3(config-if)#ip add 192.168.30.2 255.255.255.0
R3(config-if)#no shut
R3(config-if)#int f0/1
R3(config-if)#ip add 192.168.40.1 255.255.255.0
R3(config-if)#no shut
R3(config-if)#int f1/0
R3(config-if)#ip add 12.0.0.1 255.255.255.0
R3(config-if)#no shut
R3(config-if)#int f2/0
R3(config-if)#ip add 192.168.70.1 255.255.255.0
R3(config-if)#no shut
R3(config-if)#do show ip int b
Interface                  IP-Address      OK? Method Status                Protocol
FastEthernet0/0            192.168.30.2    YES manual up                    up      
FastEthernet0/1            192.168.40.1    YES manual up                    up      
FastEthernet1/0            12.0.0.1        YES manual up                    up      
FastEthernet2/0            192.168.70.1    YES manual up                    up      
R3(config-if)#ex
 R3(config)#ip route 0.0.0.0 0.0.0.0 12.0.0.2                         (//配置默認(rèn)路由并指向下一跳地址)
R3(config)#router ospf 1                                                        (//啟用OSPF1進(jìn)程)
R3(config-router)#router-id 3.3.3.3                                         (//標(biāo)注router-id 3.3.3.3)
R3(config-router)#network 192.168.30.0 0.0.0.255 area 1    (//在area1中宣告30段落地址)
R3(config-router)#network 192.168.40.0 0.0.0.255 area 0    (//在area0中宣告40段落地址)
R3(config-router)#network 192.168.70.0 0.0.0.255 area 0    (//在area0中宣告70段落地址)
R3(config-router)#default-information originate                     (//注入外部默認(rèn)路由)
R3(config-router)#ex

·
R4詳細(xì)配置:

R4#conf t
 R4(config)#int f0/0
  R4(config-if)#ip add 192.168.40.2 255.255.255.0
  R4(config-if)#no shut
  R4(config-if)#int f0/1
  R4(config-if)#ip add 192.168.50.1 255.255.255.0
  R4(config-if)#no shut
  R4(config-if)#ex
  R4(config-router)#router rip      (//配置rip協(xié)議)
    R4(config-router)#ver 2
    R4(config-router)#no atuo-summary
    R4(config-router)#network 192.168.50.0
    R4(config-router)#ex
    R4(config-router)#router ip
    R4(config-router)#redistribute ospf 1 metric 5     (//在OSPF協(xié)議中注入進(jìn)程號和度量值)
    R4(config-router)#ex
    R4(config-router)#router ospf 1                           (//啟動OSPF1進(jìn)程)
    R4(config-router)#router-id 4.4.4.4                      (//標(biāo)注router-id 4.4.4.4)
    R4(config-router)#network 192.168.40.0 0.0.0.255 area 0
    R4(config-router)#redistribute rip subnets           (//注入rip協(xié)議)
        R4(config-router)#ex

·
R5詳細(xì)配置:

R5#conf t
R5(config)#int f0/0
R5(config)# ip add 192.168.50.2 255.255.255.0 
R5(config)#no shut
R5(config)#int f0/1
R5(config)#ip add 192.168.60.1 255.255.255.0
R5(config-if)#no shut
R5(config-if)#ex                                                      (//配置rip協(xié)議)
R5(config-if)#router rip
R5(config-router)#ver 2
R5(config-router)#no antuo-summary
R5(config-router)#network 192.168.50.0
R5(config-router)#network 192.168.60.0
R5(config-router)#ex

·
R6詳細(xì)配置:

R6#conf t
R6(config)#int f0/0
R6(config-if)#ip add 12.0.0.2 255.255.255.0
R6(config-if)#no shut
R6(config-if)#ex
R6(config)#int f0/1
R6(config-if)#ip add 13.0.0.1 255.255.255.0
R6(config-if)#no shut
R6(config-if)#ex
R6(config)#ip route 192.168.0.0 255.255.255.0 12.0.0.1    (//配置靜態(tài)路由)

·

第二、進(jìn)入PC端配置IP地址和網(wǎng)關(guān)

1、PC1:192.168.10.2 192.168.10.1
2、PC2:192.168.70.2 192.168.70.1
3、PC3:13.0.0.13 13.0.0.1
4、P4:192.168.60.2 192.169.60.1

第三、進(jìn)入網(wǎng)絡(luò)互通性測試
PC1> ip 192.168.10.2 192.168.10.1
Checking for duplicate address...
PC1 : 192.168.10.2 255.255.255.0 gateway 192.168.10.1

PC1> ping 192.168.70.2
192.168.70.2 icmp_seq=1 timeout
192.168.70.2 icmp_seq=2 timeout
84 bytes from 192.168.70.2 icmp_seq=3 ttl=61 time=93.680 ms
84 bytes from 192.168.70.2 icmp_seq=4 ttl=61 time=93.717 ms
84 bytes from 192.168.70.2 icmp_seq=5 ttl=61 time=93.722 ms

PC1> ping 13.0.0.13
13.0.0.13 icmp_seq=1 timeout
13.0.0.13 icmp_seq=2 timeout
84 bytes from 13.0.0.13 icmp_seq=3 ttl=60 time=124.965 ms
84 bytes from 13.0.0.13 icmp_seq=4 ttl=60 time=124.858 ms
84 bytes from 13.0.0.13 icmp_seq=5 ttl=60 time=125.056 ms

PC1> ping 192.168.60.2
192.168.60.2 icmp_seq=1 timeout
84 bytes from 192.168.60.2 icmp_seq=2 ttl=59 time=156.210 ms
84 bytes from 192.168.60.2 icmp_seq=3 ttl=59 time=157.946 ms
84 bytes from 192.168.60.2 icmp_seq=4 ttl=59 time=166.144 ms
84 bytes from 192.168.60.2 icmp_seq=5 ttl=59 time=156.238 ms

PC1> 

文章名稱:OSPF高級配置
網(wǎng)站路徑:http://aaarwkj.com/article30/goodso.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站排名、營銷型網(wǎng)站建設(shè)面包屑導(dǎo)航、標(biāo)簽優(yōu)化、做網(wǎng)站網(wǎng)頁設(shè)計公司

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站制作
国产亚洲一区二区三区在线| 国产三级精品av在线| 91在线人妻一区二区三区| 内地精品露脸自拍视频| 国产午夜福利av在线麻豆| 成人国产av一区二区三区| 成人午夜在线免费观看| 夜夜草视频在线免费观看| 日韩欧美一二区久久麻豆| 亚洲国产精品性色av| 91午夜福利国产在线观看 | 亚洲中文字幕第11页| 亚洲国产欧美日韩久久| 免费的一区二区中文字幕| 久热在线这里只有精品| 激情亚洲综合一区二区| 偷拍一区二区三区四区| 日韩精品高清视频在线观看| 国产免费久久黄av片| 九九热超在线视频精品| 国产精品中文第一字幕| 成人午夜激情四射av| 亚洲一区制服无码中文| av天堂在线观看网站| 国产精品青青草原在线| 在线观看国产小视频不卡| 亚洲色图综合在线观看| 日本中文一区在线观看| 国产一区二区精品小视频| 十八禁网站免费在线播放| 婷婷色爱区综合五月激情| 欧美日韩欧美国产精品| 亚洲欧美经典精品专区| 国产精品综合久久蜜臀av| 国产三级尤物在线观看| 九九视频精品免费高清视频| 顶级少妇做爰片高潮丸| av蜜臀一区二区三区| 欧美成人精品资源在线观看| 日韩精品视频在线不卡| 91欧美精品午夜性色福利|