What You'll Need:
- A Dell Force10 S4810P switch
- A console cable or network access to the switch
- Terminal application (like PuTTY for Windows or Terminal for macOS) or SSH client
Steps:
- Connect to your Dell Force10 S4810P switch: Use a console cable or SSH to connect to your switch. (Refer to the previous tutorials for detailed instructions on how to do this.)
- Enter the configuration mode: At the command line prompt, type
configureand press Enter. - Define an Access Control List (ACL) for the IP addresses you want to block: ACLs are used to control network traffic based on various criteria, including IP addresses. Use the
ip access-list extended <ACL-name>command to create a new ACL. Replace<ACL-name>with a name for your ACL. Example:ip access-list extended BLOCK_DDOS - Add entries to your ACL to block the IP addresses: Use the
deny ip host <IP-address> anycommand to add entries to your ACL that block specific IP addresses. Replace<IP-address>with the IP address you want to block. Example:deny ip host 192.0.2.1 anyYou can repeat this step to block multiple IP addresses. - Apply the ACL to an interface: Identify the interface(s) you want to apply the ACL to. For example, to choose Ten Gigabit Ethernet port 0/1, you would use the command
interface TenGigabitEthernet 0/1and press Enter. Then, apply the ACL to the interface using theip access-group <ACL-name> incommand. Example:ip access-group BLOCK_DDOS in - Save your configuration: Once everything is set up to your satisfaction, use the
endcommand to exit configuration mode, thencopy running-config startup-configto save your changes. If you don't do this, your configuration will be lost when the switch is rebooted.
Blocking IP addresses at the switch level is a potent tool during a DDoS attack. It allows you to prevent traffic from the attacking IPs from entering your network, thus mitigating the impact of the attack.
2026 blocking decision refresh
Blocking during a DDoS event should be deliberate and reversible. Confirm the affected service, document the reason for the change, review likely false positives, and coordinate upstream support when the traffic volume exceeds local control.
- Prioritize customer-impact reduction and rollback planning over aggressive blanket action.
- Use short review windows so temporary blocks do not become undocumented permanent policy.
- Keep post-event notes for support, billing, and future incident tuning.
Related Fix I.T. Phill references: DDoS mitigation basics, S4810P filtering workflow, and S4810P ACL planning.
Reference sources for this refresh: Dell PowerSwitch S4810P manuals and documents, Dell Networking S4810 specification sheet, and CISA guidance on understanding and responding to DDoS attacks.


