Blog
Projects
About
Backtrack:
Blog
showing posts tagged with 'iptables'
iptables: block traffic from/to a specific IPv4 address
edited by
on September 13th 2019, at 10:55
To quickly block traffic from/to a specific IPv4 address using iptables, you can use the commands below.
Warning!
Do not use these commands when you are already running an iptables-based firewall as this may result in unexpected results.
Block incoming traffic from a specific IP:
iptables -A INPUT -s 1.2.3.4 -j DROP
Block outgoing traffic (i.e. traffic initiated from the host itself) to a specific IP:
iptables -A OUTPUT -d 1.2.3.4 -j DROP
To block outgoing traffic to a specific port and protocol, you can also do something like this (the example below blocks DNS and HTTP):
/sbin/iptables -A OUTPUT -p tcp --dport 80 -d 1.2.3.4 -j DROP/sbin/iptables -A OUTPUT -p udp --dport 53 -d 1.2.3.4
...
read more
computer
,
linux
,
firewall
,
iptables
comments
e-mail this
showing posts tagged with 'iptables'
Tags
computer
windows
software
vmware
microsoft
linux
exchange
hardware
network
news
mac
powershell
home
office365
msoffice
ad
sqlserver
server
dell
soaring
mssql
internet
esx
rds
sbs
events
powercli
terminalserver
virtualization
antivirus
Archive
«
‹
December 2024
›
»
Sun
Mon
Tue
Wed
Thu
Fri
Sat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Links
-
@harkx
-
Cats & Dogs
-
Jargon-free Security Guide
Quote
«
Most people tend to avoid true conflict. Ironically this breeds more conflict.
»
Contact
© 2009-2024 Black Manticore – all rights reserved
code by
lunarg
, design by
SuriAmanah
, hosted at Cats&Dogs