Default firewall

Asked by Milardo

does ubuntu latest version come with a firewall?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Steven Danna
Solved:
Last query:
Last reply:
Revision history for this message
Best Steven Danna (ssd7) said :
#1

Yes, Ubuntu is shipped with a program called Uncomplicated Firewall (ufw). There is no graphical interface to this firewall by default however.

To enable the firewall:

1) Open a terminal (Applications->Accessories->Terminal)
2) Type the following command:

sudo ufw enable

3) Read more about ufw and how to create firewall rules run the command

man ufw

If you want a graphical user interface to ufw, install gufw. This can be done by running the following command in a terminal:

sudo apt-get install gufw

For more information on configuring ufw see:

https://help.ubuntu.com/9.04/serverguide/C/firewall.html

Revision history for this message
Milardo (zerosportslegacy) said :
#2

Thanks Steven Danna, that solved my question.