I’m using Proton mail, I like their focus on privacy and e2e (only with other Proton users, though).
I’m using Proton mail, I like their focus on privacy and e2e (only with other Proton users, though).
We use .lh, short for localhost. For local network services I use service discovery and .local. And for internal stuff we just use a subdomain of our domain.
I personally only turn it off when someone’s visiting over night and the noise disturbs them, otherwise I just leave it on nonstop. Mainly because it would annoy me to try to open whatever and find out I have to turn on the server first. I don’t have a UPS and never even thought about getting one (for the server, I’m thinking of getting one for my 3D printer).
6 hours to get it running. Not a native speaker.
The classical Windows viruses that run fairly well under Wine? Sure, the impact is not as high as on Windows but pretending there’s no risk is extremely dumb. I do security for a living. Your “argument” is just plain wrong and I hope I never get your PC on any network I am part of.
Perhaps, not a fan of viruses though.
Oh, I own it on EA, not on Steam.
I use Proton Mail for my primary domain and then addy.io for redirects to it. It costs $10 a year or something like that and it’s all I actually need.
Replying to emails is as easy as just hitting reply, the only thing that’s slightly harder is sending entirely new email (as in not replying) but even that can either be remembered, or the special email address copied from the addy.io app.
Avahi basically broadcasts to the whole network “hello there, my name is some-cool-domain.local”. When you request that address, your router checks if someone broadcasts that name and uses their IP if so.
Yes, indeed, it’s your local timezone.
store all of the documents, desktop, downloads, etc. on a couple computers
Why use SSHFS for that? I recommend using Syncthing, it’s great for synchronizing stuff across multiple PCs (local and remote).
You need to host your domain somewhere, meaning some DNS provider needs to be the authority on what gets routed where when someone accesses your domain.
The provider will give you a list of nameservers when you make the domain part of their DNS.
I don’t know if there are any that are free (if you don’t also buy a domain from them), so you’ll have to check on your own. You can also self-host a bind9 server and do your DNS there.
Steam Link is not around much longer, I can’t find the exact release date of Gamestream, so I don’t know which is older, but even if Steam Link is, it’s gonna be months rather than years.
It’s a very good game, also available on GOG. It also has a VR version which helps with immersion. Earphones are a must to properly enjoy the game.
Yeah, the main menu is a really great mini game. On some Alan Turing anniversary it mentioned that it was that day. There are probably a bunch more dates it reacts to.
I love reading articles like these!
I doubt it, it’s much easier to mod the console. Or just use a boot disc (or whatever those were called, I had the chip mod, so I don’t remember, but my friend used to have the disc which he had to insert before playing a pirated game).
Ah, I’ve only ever seen it in combination with a tunnel, so I assumed it’s part of that.
It makes a tunnel through to you and links to that.
For all the mentioned cases, if your firewall blocks incoming packets by default, no one can access it, no matter what is the source of the port being open.
You don’t configure it on the docker level, at least if you care about outside connections. If you mean from your local computer to a docker container, by default you cannot connect, unless you expose the port to the system. If you mean from other docker containers, just create your own separate network to run the container in and even docker containers cannot access the ports.
I usually use
netstat -tulpn
, it lists all ports, not only docker, but docker is included.docker ps
should also show all exposed ports and their mappings.In general, all docker containers run on some internal docker network. Either the default or a custom one. The network’s ports don’t interfere with your own, that’s why you can have 20 nginx servers running in a docker container on the same port. When you bind a port in docker, you basically create a bridge from the docker network to your PC’s local network. So now anything that can connect to your PC can also connect to the service. And if you allow connection to the port from outside the network, it will work as well. Note that port forwarding on your router must be set up.
So in conclusion, to actually make a service running in docker visible to the public internet, you need to do quite a few steps!
On Linux, local firewall is usually disabled by default, but the other two steps require you to actively change the default config. And you mention that all incoming traffic is dropped using UFW, so all three parts should be covered.