0


局域网安全-DHCP欺骗实验

实验大纲

1.构建网络拓扑结构图

2.路由器配置

R0 路由器两端是两个网段 192.1.1.0和192.1.2.0

  1. Router>en
  2. Router#conf t
  3. Enter configuration commands, one per line. End with CNTL/Z.
  4. Router(config)#interface fastEthernet 0/0
  5. Router(config-if)#ip add 192.1.1.254 255.255.255.0
  6. Router(config-if)#no shutdown
  7. Router(config-if)#
  8. %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
  9. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
  10. Router(config-if)#exit
  11. Router(config)#interface fastEthernet 0/1
  12. Router(config-if)#ip add 192.1.2.254 255.255.255.0
  13. Router(config-if)#no shutdown
  14. Router(config-if)#
  15. %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up
  16. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
  17. Router(config-if)#

R1 路由器两端是两个网段 192.1.2.0和192.1.3.0

  1. Router>en
  2. Router#conf t
  3. Enter configuration commands, one per line. End with CNTL/Z.
  4. Router(config)#interface fastEthernet 0/0
  5. Router(config-if)#ip add 192.1.2.253 255.255.255.0
  6. Router(config-if)#no shutdown
  7. Router(config-if)#
  8. %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
  9. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
  10. Router(config-if)#exit
  11. Router(config)#interface fastEthernet 0/1
  12. Router(config-if)#ip add 192.1.3.254 255.255.255.0
  13. Router(config-if)#no shutdown
  14. Router(config-if)#
  15. %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up
  16. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
  17. Router(config-if)#

3.DHCP服务器配置

给DHCP-Server配置ip地址和默认网关(上面一排第二个)

创建ip地址池

4.域名服务器配置

给DNS-Server配置dns服务器ip地址(下面一排第二个)

配置域名和ip地址绑定起来

5.web服务器配置

配置web服务器的ip地址(Switch2旁边那个)

6.配置路由器R0

配置RIP

配置中继服务

  1. Router(config)#interface fastEthernet 0/0
  2. Router(config-if)#ip helper 192.1.2.1

7.配置路由器R1

配置RIP

8.PC自动获取ip信息

9.修改web服务器主页

(Switch 2 旁边那个)

10.PC访问web服务器

11.构建伪造web服务器

给fake web server (伪造服务器)配置ip地址、子网掩码和默认网关地址(上面一排第三个)

修改伪造web服务器的主页

12.构建伪造DHCP服务器

修改伪造dhcp服务器ip配置(上面一排第一个)

修改伪造dhcp服务器ip池

13.构建伪造DNS服务器

配置伪造dns服务器ip地址(下面一排第一个)

配置伪造dns服务器dns服务绑定伪造ip

14.PC重新获得网络信息

15.PC访问web服务器


本文转载自: https://blog.csdn.net/2302_78039953/article/details/135726926
版权归原作者 旺旺仙贝 所有, 如有侵权,请联系我们删除。

“局域网安全-DHCP欺骗实验”的评论:

还没有评论