| Author |
Message |
daniel_ro
|
|
Post subject: is there a native firewall? what about security?
Posted: 10.01.2011, 12:16
|
|

Joined: 2011-01-07
Posts: 51
Location: Bacau - Romania
Status: Offline
|
|
I was wondering if there is a native firewall that comes with the distro, or should I install one. If the case, what you recomend?
Also, is there something else that I might need to configure for increasing the security?
Thanks! |
|
|
| |
|
|
|
 |
towo
|
|
Post subject: RE: is there a native firewall? what about security?
Posted: 10.01.2011, 12:40
|
|

Joined: 2010-09-13
Posts: 488
Location: Pößneck / Thüringen
Status: Offline
|
|
| A firewall runs never on the system, that should be secured. |
|
|
| |
|
|
|
 |
slam
|
|
Post subject: RE: is there a native firewall? what about security?
Posted: 10.01.2011, 15:32
|
|
Team Member

Joined: 1970-01-01
Posts: 606
Location: w3
Status: Offline
|
|
Iptables is the integrated firewall in the Linux kernel. It comes with sane defaults you usually do not need to touch on a desktop system. Additionally recommended: A cheap hardware firwall, as it is included in most routers already.
Greetings,
Chris |
_________________ an operating system must operate
development is life
my Debian repo
|
| |
|
|
|
 |
daniel_ro
|
|
Post subject: RE: is there a native firewall? what about security?
Posted: 11.01.2011, 08:30
|
|

Joined: 2011-01-07
Posts: 51
Location: Bacau - Romania
Status: Offline
|
|
|
|
|
 |
saxxonian
|
|
Post subject: RE: is there a native firewall? what about security?
Posted: 11.01.2011, 11:23
|
|

Joined: 2010-09-11
Posts: 27
Location: Brasov, Romania
Status: Offline
|
|
| are you on RCS-RDS ? if so read your router's manual, there you should be able to adjust to your likings |
|
|
| |
|
|
|
 |
spoovy
|
|
Post subject: RE: is there a native firewall? what about security?
Posted: 08.01.2012, 14:59
|
|

Joined: 2012-01-04
Posts: 8
Location: Bristol, UK
Status: Offline
|
|
| Sorry to dig up an old thread, but i'm not clear on this. I don't have an iptables init script in init.d, which i'm used to seeing in other distros i have used. So how do I know if it's running or not? |
|
|
| |
|
|
|
 |
kenyee
|
|
Post subject: RE: is there a native firewall? what about security?
Posted: 09.01.2012, 02:31
|
|

Joined: 2010-09-29
Posts: 76
Status: Offline
|
|
| If you're setting up a firewall, the simplest thing to do is use one of the friendly wrappers around iptables...e.g., firehol, firestarter, or shorewall. I've used firehol and shorewall successfully to lock down ports. |
|
|
| |
|
|
|
 |
domicius
|
|
Post subject: Re: RE: is there a native firewall? what about security?
Posted: 10.01.2012, 20:38
|
|

Joined: 2010-09-13
Posts: 34
Location: Zagreb, Croatia
Status: Offline
|
|
|
spoovy wrote:
So how do I know if it's running or not?
I'm not an expert here but given that I don't have it in /etc/init.d/ either, I'd say it works a bit different. But simply entering "iptables -L" as root will tell you which policies you have applied. If you haven't used any GUI tools (actually wrappers around iptables), then the output should be sparse. After you apply the rules from a GUI wrapper, you'll see the difference and know "it's running". |
_________________ domicius
|
| |
|
|
|
 |
spoovy
|
|
Post subject: RE: Re: RE: is there a native firewall? what about security?
Posted: 12.01.2012, 19:34
|
|

Joined: 2012-01-04
Posts: 8
Location: Bristol, UK
Status: Offline
|
|
Thanks for the replies. Yeah the output to iptables -L is -
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Sparse indeed. I guess this is a default "Accept all" configuration; and that as slam said above iptables is built into the kernel somehow. A bit weird not to even have a process running (ps aux | grep iptables shows nothing). I'll read a bit more on it when I get five minutes.
Cheers |
|
|
| |
|
|
|
 |
kenyee
|
|
Post subject: RE: Re: RE: is there a native firewall? what about security?
Posted: 17.01.2012, 03:29
|
|

Joined: 2010-09-29
Posts: 76
Status: Offline
|
|
iptables isn't a process. It's a bunch of tables/rules built into the kernel. iptables is a command line program to access those rules.
Your firewall is disabled...that's what that output means... |
|
|
| |
|
|
|
 |
|
|