Horje
remove iptables rule Code Example
remove iptables rule
#find line number of rule
$ sudo iptables -L INPUT --line-numbers
## delete rule by number
$ sudo iptables -D INPUT 1
. . .
Source: linoxide.com
remove all iptables rules
sudo iptables -F
remove port iptables
# flag -D for delete
sudo iptables -D INPUT -i eth0 -p tcp --dport 22 -j ACCEPT




Shell

Related
npm ERR! cb() never called! Code Example npm ERR! cb() never called! Code Example
Install terminator Ubuntu 20.04 Code Example Install terminator Ubuntu 20.04 Code Example
'node-sass' is not recognized as an internal or external command, Code Example 'node-sass' is not recognized as an internal or external command, Code Example
linux install figlet Code Example linux install figlet Code Example
how to stop an application on a port Code Example how to stop an application on a port Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
18