Cisco設備;靜態路由;DHCP的基礎配置

靜態路由配置:服務器

blob.png


配置思路以及步驟:ide

    一、配置主機 PC-1 的 IP地址與網關IP地址;測試

blob.png

 二、配置路由器 R1 的 互聯端口 IP 地址;spa

blob.png


 三、配置主機 PC-2 的 IP地址與網關IP地址;命令行

blob.png


  四、配置路由器 R2 的 互聯端口 IP 地址;router

blob.png

五、在 R1 配置去往 192.168.20.0 /24的路由;server

R1(config)# ip route 192.168.20.0 255.255.255.0 192.168.12.2dns

    六、在 R2 配置去往 192.168.10.0 /24的路由;接口

R2(config)# ip route 192.168.10.0 255.255.255.0 192.168.12.1ip

    七、驗證與 測試 :

        路由條目驗證,

           R1#show ip route //查看 R1 的路由表;

blob.png

 R2#show ip route //查看 R2 的路由表;

blob.png

PC-1與PC-2之間進行互相 ping 通測試;

          PC-1> ping 192.168.20.1

          PC-2> ping 192.168.10.1     

blob.png

實驗結果 :終端主機互相Ping通;



-----------------------------------------------------------------------------------------------

DHCP配置實驗:

Router 做爲 DHCP 服務器:

blob.png

一、配置 Router 地址:

    Router(config)#hostname GateWay

    GateWay(config)#interface gi0/0

    GateWay(config-if)# no shutdown

    GateWay(config-if)# ip address 192.168.1.1 255.255.255.0

blob.png

blob.png

blob.png

四、配置 DHCP 客戶端 :

     點擊 - 」DHCP「 ;

blob.png

五、驗證命令:

       在服務器端的驗證命令:

                   GateWay# show ip dhcp binding

blob.png


 GateWay# show running-config

       在客戶端的驗證:

                    運行--> cmd ---> ipconfig /all       


blob.png



---------------------------------------------------------

Switch 做爲 DHCP 服務器:

一、配置交換機的IP地址;

  Switch(config)# interface vlan 1

  Switch(config-if)# no shutdown

  Switch(config-if)# ip address 192.168.1.250 255.255.255.0    

blob.png

二、啓動 DHCP 服務 :

  Switch(config)# service dhcp

三、配置 DHCP 的排除地址:

  Switch(config)# ip dhcp excluded-address 192.168.1.1  192.168.1.99  

                                          

四、配置 DHCP 地址池 :

   Switch(config)# ip dhcp pool CCNP

    Switch(dhcp-config)# network 192.168.1.0 255.255.255.0

    Switch(dhcp-config)# default-router 192.168.1.1

    Switch(dhcp-config)# dns-server  8.8.6.6

blob.png

五、配置 DHCP 客戶端 ;

六、驗證:

Switch#show ip interface brief  // 查看交換機接口IP地址配置;

Switch#show running-config     //查看 DHCP 的相關配置命令;

Switch#show ip dhcp binding //查看DHCP服務器分配成功的IP地址

  

    在 PC 上 :

     ipconfig /all   // 在 PC 的命令行中查看自動獲取的IP地址

blob.png





blob.png

相關文章
相關標籤/搜索