• 2 Posts
  • 24 Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle
  • I’ve used wi-fi calling fairly extensively mostly because I’ve lived in areas where there was zero cell service but ready access to internet (via Starlink or other wireless forms of it). One thing I do know is that my phone co. requests that I fill out a form specifying where I am living currently (whilst using it) so that if I ever need to contact emergency services they’ll have a better idea of where to route the call to. For instance my phone number originates from Western BC but I could potentially be using wi-fi calling from anywhere in the province. I mention this to say, it appears my telco doesn’t have a way to triangulate me with this service.

    I can further attest that wi-fi call & text reception still works fine when I have a VPN running on the router that my mobile device is connecting to. Make of that information what you wish.

    Though that I have read that wi-fi calling is atrocious for privacy reasons that I have not followed up on. Given the above I’m not sure how or why that would be the case, but basically if I’m in an area with cell coverage I turn it off. I’ve always meant to look deeper into how or why it might be bad (or worse) in some way.


  • Granted, you’re using a home setup. But you could still consider setting up the VPN on a central AP and repeating your hotspot through it to make everything going in and out of your network encrypted and more secure. None of your actual traffic (besides what your phone is emitting) will be in the clear, which is better than nothing.

    Almost any router with VPN and repeater options will accomplish this if you don’t wanna root your phone. I’ve flashed OpenWRT on the equivalent of router potatoes over the years. It’s pretty straightforward.


  • Yeah sorry I don’t have experience with Graphene but a quick search seems to say root is very difficult with it. Maybe look into flashing a different custom ROM if you really need this.

    One thing I’ve done quite a bit is use my travel router (I have a GL-Inet Slate but there are lots of options) to repeat my hotspot, then connect all my devices via the router. And set the VPN up on the router. This way everything going out over the hotspot is encrypted anyhow.

    For my needs, I can power the Slate by plugging it into my laptop or even my phone via usb-c. It’s very portable and versatile. Ymmv.



  • TerkErJerbs@lemm.eetoSelfhosted@lemmy.worldBest phone sync
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 month ago

    NP! It’s a great app, the dev updates it really frequently and I’ve never had any functional issue with it. I keep meaning to drop onto their git issues board and make a couple of small quality of life suggestions for the UI/UX as I use it dozens of times per day for work (there are some processes that currently take 5 clicks/per that could be reduced to 1 or 2 max) but that is a very small and nice problem to have.


  • TerkErJerbs@lemm.eetoSelfhosted@lemmy.worldBest phone sync
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 month ago

    That was the same issue I had with SyncThing, it just seemed to conk out at weird times and I gave up on it (for that purpose). It’s great for centralizing a directory of files from one machine to another but I didn’t love it for keeping a single file up-to-date with changes coming from more than one point on the network.


  • TerkErJerbs@lemm.eetoSelfhosted@lemmy.worldBest phone sync
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 month ago

    Oh yeah sorry, I misunderstood. I think what you’re looking for is local (network) versioning which I’ve had trouble finding in the past as well. I had hoped SyncThing would do it but it doesn’t. Versioning is something a service like git does perfectly (i.e. notifies of and/or resolves conflicts in text files on the fly, seamlessly). When I was doing a lot of writing from different devices I set up a private repo on Github (and later Gitlab) and got my text editor to auto-sync-on-save to the repo (from any device) and it worked great. There are very likely self-hosted solutions that wouldn’t rely on the cloud for that, but for me it worked fine as private repos because nobody but me would ever see those drafts (in a perfect world… we all know microsoft has almost certainly trained their shitty A.I. on my terrible writing versions over those years on Github because they own that platform).

    I know there are ways to get Git working locally, probably for this purpose, but I don’t know of any simple ones to suggest.



  • You’ll find that with any major VPN. The IP addresses they use to proxy your traffic eventually get flagged and blocked by lots of major players. Which is why VPN companies cycle through them quite often. As others have said, you’ll either need to switch servers (and thus ips) or figure out another path.

    I don’t use mull but most have a way to exclude a given url or site from the tunnel if you need it. i.e. the site will work for you but it’s coming from your own IP and unencrypted.








  • You might like Commento which is FOSS. You can self-host it (or fire it onto a free or low cost cloud host), and fun. It’s more like a Lemmy/reddit format (comment up/down votes can be enabled) than masto but maybe you’ll enjoy it.

    Users can comment anonymously or you can enable basic verification steps. Decent moderation for if spam bots find you. Etc.

    ETA I used to host my instance on Heroku’s free tier and it was more than enough for what little traffic was coming to my site.



  • TerkErJerbs@lemm.eetoPrivacy@lemmy.mlVPN on Router Issue
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    11 months ago

    Those IPs eventually end up on block lists as users do dumb things with them. You could definitely benefit from auto cycling through them but it’s still going to be luck of the draw, ultimately. Normally you’ll get a different IP each time you connect, even to the same location/server so if your VPN client has a CLI component, even a basic one, you could write a simple script to tell it to ‘disconnect’ and then ‘connect’ periodically, for instance.

    Depending on which VPN client you’re using on the router, that would be the simplest approach to explore imo.

    ETA you could also explore getting a residential IP from your VPN provider if they offer that. It’s a little more expensive but they don’t end up on block lists as much. Less hassle.


  • I use syncthing for personal and work, and it’s great. Having said that I’ve found it struggles with versioning i.e. editing a document from multiple devices.

    Look into something like Standard Notes for cross platform markdown editing. It’s e2e encrypted, works great, the dev is very responsive. Ymmv but I really like it, have it on every device I own and use it daily.

    I’ve also just used a private git repo for editing docs from multiple devices. Once you get it set up it’s effortless, and most ide’s are extremely fun to use as text editors.