mirror of
https://github.com/onceupon/Bash-Oneliner.git
synced 2024-11-22 12:57:01 +00:00
Networking
- To block port 80 (HTTP server) using iptables.
This commit is contained in:
parent
c434421b77
commit
708ed78958
@ -2492,6 +2492,14 @@ $ sudo iperf -s -p 80
|
||||
iperf -c <server IP address> --parallel 2 -i 1 -t 2 -p 80
|
||||
```
|
||||
|
||||
##### To block port 80 (HTTP server) using iptables.
|
||||
```bash
|
||||
sudo iptables -A INPUT -p tcp --dport 80 -j DROP
|
||||
|
||||
# only block connection from an IP address
|
||||
sudo iptables –A INPUT –s <IP> -p tcp –dport 80 –j DROP
|
||||
```
|
||||
|
||||
## Data wrangling
|
||||
[[back to top](#handy-bash-one-liners)]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user