97
submitted 9 months ago by mokazemi@discuss.tchncs.de to c/linux@lemmy.ml

Hi. I wanted to know if it's needed to install a firewall on a linux desktop/laptop. Why yes or why no?

top 50 comments
sorted by: hot top controversial new old
[-] pathief@lemmy.world 64 points 9 months ago

If your computer is connected to a network, I don't see any downside of enabling a firewall. It's a good security layer to have and costs basically no resources to keep running.

[-] RaivoKulli@sopuli.xyz 7 points 9 months ago

I guess a downside is having to fiddle with it, allowing stuff you want to get through. Sometimes it blocks stuff you don't want blocked

[-] Mindlight@lemmy.world 4 points 8 months ago

I'd rather have to open up stuff my self then have an uninvited visitor doing it without me knowing about it.

load more comments (1 replies)
[-] randompepsi@lemmy.ml 25 points 9 months ago

There is no reason not having a firewall

[-] Pantherina@feddit.de 23 points 9 months ago

Yes, and hopefully you will have one preinstalled, blocking all incoming connections.

An outbound firewall like Opensnitch or Portmaster is also nice. But here I would say often you dont need one. Balena Etcher was the only App loading Ads, at all. Firefox and Thunderbird can be hardened. The rest is okay and doesnt phone home, Flatpak permissions ard also great.

[-] possiblylinux127@lemmy.zip 6 points 8 months ago

Balena Etcher shouldn't be loading ads. Where did you install it from?

load more comments (1 replies)
[-] corey389@lemmy.world 19 points 9 months ago* (last edited 9 months ago)

Linux comes with a default firewall it's called IPtables/NFtables, Just make sure that it's on. Example I Ubuntu Sudo ufw enable.

[-] FrostyPolicy@suppo.fi 8 points 8 months ago

Actually it's Netfilter. IPTables is just a frontend.

load more comments (2 replies)
[-] GustavoM@lemmy.world 17 points 9 months ago

Why not? It's comically easy to set up one.

load more comments (7 replies)
[-] utopiah@lemmy.ml 16 points 8 months ago

Ironically enough if you do not know what a firewall actually does (and saying it "protects" against "stuff is NOT enough) IMHO you do need one. That being said unless you know what you are doing, better leave it to the default one with default settings.

[-] flashgnash@lemm.ee 15 points 8 months ago

On a laptop absolutely. My firewall on my laptop doesn't let me discriminate between networks so I'm always worried someone will try to attack me on public WiFi for the few ports I want open

On a desktop on a network you trust less important but still no firewall means if another device on your network gets compromised you're screwed

load more comments (11 replies)
[-] bushvin@lemmy.world 14 points 8 months ago

Do you need a lock on the door of your place?

No, but it’s a damn good idea to protect whatever is in it.

[-] FuzzChef@feddit.de 7 points 8 months ago* (last edited 8 months ago)

That's a bad comparison. Without a lock you can just open the door from the outside.

load more comments (5 replies)
[-] Notamoosen@kbin.social 13 points 9 months ago

I'd say if you plan on using it any public places, or if you don't have full control over all the computers/technology in your home network, it's a good idea to run one. It's a nice last resort should someone on the same lan have a piece of malicious software.

[-] slazer2au@lemmy.world 13 points 9 months ago

Yes, because while I trust my device, I do not trust the Chromecast or the WAP to not be an asshole and fuck with things.

load more comments (3 replies)
[-] tal 11 points 9 months ago* (last edited 9 months ago)

No, you don't. But it's also not necessarily a bad idea if it's not going to create issues for you.

Normally, a software package that wants to talk over IP and only wants to let local software communicate with it can listen only on loopback addresses (like 127.0.0.1). But I have definitely seen software packages that have defaulted to listening to the world (gpsd used to do this by default, for example, which would let anyone in the world who could talk to your machine see precisely where you were). Having a firewall makes the default to be secure -- you know that the default is not to be reachable, regardless of what some software author thinks is a good idea.

Most home systems these days are generally behind a NATting router, which effectively firewalls them against the outside world (though maybe IPv6 will change this), so they can't be directly reached from the outside anyway, unless a user has set up port forwarding on the router, the systems are effectively firewalled anyway, unless an attacker can get inside the network somehow.

It's one more thing that you're going to have to remember to deal with if you're installing software and troubleshooting network problems. You install software package X and it isn't reachable, you're going to have to figure out how to diagnose problems. As long as this isn't a problem for you...shrugs

I don't personally run firewalls on my desktops. But I have also, over the years, occasionally checked netstat -ntap and discovered that a service that I thought only listened locally was listening to the world, gpsd probably being the most-flagrant example.

If I were not behind a router, or if I were forwarding all ports to my system, I would be firewalling my desktop systems.

On a dedicated server, I'd be less worried, because I'm not normally installing tons of random software on the thing. If you aren't going to firewall it, though, be sure that you've checked to see what is listening on the server.

[-] Jagger2097@lemmy.world 5 points 9 months ago

There is no reason to not leverage a firewall. Plenty of browser based malware can breach your home router and call back out to allow an attacker to explore your network. Windows has included a firewall for over a decade and it's fine. You can with a single command enable Linux's built in firewall and be glad you did the bare minimum of cyber security.

load more comments (1 replies)
load more comments (1 replies)
[-] possiblylinux127@lemmy.zip 10 points 8 months ago

Its always a good idea. I have a firewall on my laptop since I travel and connect to many different networks.

I don't run any services that would be broadcasting open ports but its always better to be safe

[-] jcarax@beehaw.org 7 points 8 months ago

Hell, even if you don't travel. You never know when something nasty is going to get loose on your network. Especially since most folks have some IoT things, and don't bother to properly isolate them.

[-] IsoKiero@sopuli.xyz 8 points 9 months ago

You most likely already have one installed, but not enabled. It doesn't harm anything (maybe you need to allow traffic to ssh or other configuration, but after that you're all set) and it's a layer of protection, specially if you need to move between networks (public wifi etc).

[-] Diplomjodler@feddit.de 3 points 9 months ago* (last edited 9 months ago)

On Mint the firewall is enabled by default. Setting up firewall rules is pretty easy though, so it's worth taking five minutes to read up on it.

[-] Toddster@feddit.de 8 points 9 months ago

No - If you are aware which programs open incoming ports. E.g. check with netstat -tulpe

Yes - If you want to make sure e.g. TCP port 22 or a webserver on 443 etc is only available from IP/Adapter xy. Or if you want to mess with filtering outgoing connections.

load more comments (1 replies)
[-] smileyhead@discuss.tchncs.de 7 points 9 months ago

Yes, because you can forget what services are running and maybe they can be explited.

An example can be Syncthing which setting are done via web browser at port 8384. If you do not have a firewall, everyone on the same network would be able to change Syncthing settings and then sync your directories to their devices.

[-] Bitrot@lemmy.sdf.org 8 points 9 months ago

Is syncthing listening on all addresses, or only loopback? A firewall would block it, sure, but that would also be bad design.

[-] cameron@lemmy.plaseo.org 3 points 9 months ago

Syncthing only listens on loopback by default unless you modify the config.

[-] ReversalHatchery@beehaw.org 3 points 8 months ago

Good point, but syncthing only listens on localhost as others have said too.
However it still is a network service that can have vulnerabilities, besides many others like KDE Connect (which may be a target as one of its purposes is remote control and monitoring) or a bittorrent client

[-] SGG@lemmy.world 5 points 9 months ago

A sane firewall configuration should have no/minimal impact on a desktop focused OS.

On the other hand, sometimes programs are really badly made and expect stupid things like there being no firewall.

You should have one yes, but to each their own.

I manage a bunch of windows computers and regularly make adding firewall rules part of install scripts, good example: Dreamweaver.

[-] frankfurt_schoolgirl@hexbear.net 4 points 9 months ago

Very few people do, you probably don't need to worry about it

[-] danielfgom@lemmy.world 3 points 9 months ago

If you are only at home you don't need it because the router already has a firewall. But if you're is using public WiFi definitely use it.

[-] Quazatron@lemmy.world 12 points 9 months ago

It depends on how much do you trust your router.

Some home routers have poor security: unfrequent updates, http (not https) web consoles, single factor authentication (password only, without username for instance).

Enabling your firewall is the bare minimum, costs nothing and it's a good security practice.

[-] pathief@lemmy.world 5 points 9 months ago

It depends on how much do you trust your router

Your router and every single device connected to your local network.

load more comments (7 replies)
[-] Holzkohlen@feddit.de 3 points 9 months ago

Eh, the router acts like one. I have no open ports. On a laptop you use on the go I would use a firewall tho.

load more comments
view more: next ›
this post was submitted on 06 Oct 2023
97 points (95.3% liked)

Linux

45457 readers
1393 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS