Created
December 29, 2023 19:28
-
-
Save jhowbhz/c9f7afc519028d0d155087722184300c to your computer and use it in GitHub Desktop.
Liberar firewall SaveIncloud Todas as Portas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# instala persiste | |
sudo apt-get install iptables-persistent | |
# lista portas | |
sudo iptables -L | |
# libera tudo | |
iptables -P INPUT ACCEPT | |
iptables -P OUTPUT ACCEPT | |
iptables -P FORWARD ACCEPT | |
iptables -F | |
# persiste as configuracoes | |
sudo netfilter-persistent save |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment