Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding a Firewall #18

Open
ghost opened this issue Feb 20, 2016 · 0 comments
Open

Adding a Firewall #18

ghost opened this issue Feb 20, 2016 · 0 comments

Comments

@ghost
Copy link

ghost commented Feb 20, 2016

I suggest adding a firewall and using UFW .. its ever so simple to install and configure

Install UFW firewall

sudo apt-get install ufw

Configure the firewall to deny incoming connections by default then allow SSH and limit to prevent dictionary attacks, and then to also open the ports used by Bitcoin

sudo ufw default deny incoming
sudo ufw allow ssh/tcp
sudo ufw limit ssh/tcp
sudo ufw allow 8333/tcp
sudo ufw allow 8332/tcp
sudo ufw enable
sudo reboot

You can check your firewall's status by entering the following command:

sudo ufw status

It should say active.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants