From 2574dca828e81ab5951dee2db04e720bc6c5a014 Mon Sep 17 00:00:00 2001 From: trimstray Date: Wed, 14 Nov 2018 23:06:10 +0100 Subject: [PATCH] removed duplicates - signed-off-by: trimstray --- README.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/README.md b/README.md index aa75b73..a843039 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,6 @@ Found on the Internet - All in One List. * [Drop Invalid Packets](#drop-invalid-packets) * [Block an IP Address](#block-an-ip-address) * [Block and IP Address and Reject](#block-and-ip-address-and-reject) - * [Block Connections to a Network Interface](#block-connections-to-a-network-interface) * [Block Connections to a Network Interface](#block-connections-to-a-network-interface-1) * [Allow All Incoming SSH](#allow-all-incoming-ssh) * [Allow Incoming SSH from Specific IP address or subnet](#allow-incoming-ssh-from-specific-ip-address-or-subnet) @@ -290,12 +289,6 @@ iptables -A INPUT -s 192.168.252.10 -j REJECT iptables -A INPUT -i eth0 -s 192.168.252.10 -j DROP ``` -#### Block Connections to a Network Interface - -```bash -iptables -A INPUT -i eth0 -s 192.168.252.10 -j DROP -``` - #### Allow All Incoming SSH ```bash