zoukankan      html  css  js  c++  java
  • Zyxel Switch-How to block a fake DHCP server without enabling DHCP snooping?

    How to block a fake DHCP server without enabling DHCP snooping?

    Scenario

    How to block a fake DHCP server without enabling DHCP snooping and still fulfill the following requirements?

    1. The trusted DHCP server is connected on port 40.

    2. Block the fake DHCP server from other ports.

    Step

    Without enabling the DHCP snooping feature, we can use the ACL feature to fulfill the above requirement.

    Please configure the following classifiers and policy rules for the switch with CLI commands.

    Classifier

    classifier "block DHCP" ethernet-type ip ip-protocol udp source-socket 67 destination-socket 68

    => To block DHCP server from all ports.

    classifier "allow DHCP" ethernet-type ip source-port 40 ip-protocol udp source-socket 67 destination-socket 68

    => To allow Trusted DHCP server from the specific port 40.

    Policy Rule

    policy allow classifier "allow DHCP" egress-port 1 priority 0 dscp 0 tos 0 bandwidth 0 out-of-profile-dscp 0

    => Select classifier-block DHCP, action: drop packets. 

    policy block classifier "block DHCP" egress-port 1 priority 0 dscp 0 tos 0 bandwidth 0 out-of-profile-dscp 0 forward-action drop

    => Select classifier-allow DHCP, action: forward packets.

    Verification

    Connect the trusted DHCP server on port 40 and the PC on port 10.

    The PC can receive the IP address successfully.

    However, if you connect other DHCP servers to other ports and port 40 is disconnected, the PC on port 10 will be unable to get any IP address.

  • 相关阅读:
    CFree 提示main must return int
    策略模式
    CFree 提示no newline at the end of file
    EEPROM的写入操作解析
    一些关于mic的知识
    一些关于电池的资料
    太阳能电池板日发电量简易计算方法
    ubuntu 下载编译android源代码
    SC44B0的内存地址解析
    RequireJS 2.0 学习笔记一
  • 原文地址:https://www.cnblogs.com/fklin/p/5753459.html
Copyright © 2011-2022 走看看