randombullet
@randombullet@lemmy.world
This is a remote user, information on this page may be incomplete. View at Source ↗
- Comment on 2.5g capable SFP+ switch or media converters 1 year ago:
I use a mikrotik RB5009 for my 2.5gb routing. It technically can hit 10gbps via routing.
Switching you can try mikrotik.com/product/crs305_1g_4s_in
- Comment on Best secure router for home use? 1 year ago:
Mikrotik RB5009 is my router.
Moving to OPNsense
- Comment on Looking for games with strong female leads for my daughter (even just to watch as I play). Came across this link, but they're a bit old. Any suggestions from the community? 1 year ago:
Play Stardew Valley with her
- Comment on Compact-ish NAS cases? 1 year ago:
USB inherently has latency issues and protocol overhead. Seems like you’re restricted to hardware unfortunately.
- Comment on Compact-ish NAS cases? 1 year ago:
See if seachest is compatible with your drives. I think it’s only compatible with Exos.
Also are you running through USB?
- Comment on Compact-ish NAS cases? 1 year ago:
What’s your HDD model?
- Comment on Compact-ish NAS cases? 1 year ago:
Try this in your SMB settings in OMV.
socket options = TCP_NODELAY SO_RCVBUF=65536 SO_SNDBUF=65536 read raw = yes write raw = yes max xmit = 65535 dead time = 15 min receivefile size = 16384 write cache size = 524288 getwd cache = yes max connections = 65535 max open files = 65535 min protocol = smb3 max protocol = smb3
- Comment on Compact-ish NAS cases? 1 year ago:
What software are you using
- Comment on DNS providers for privacy & adblocking 1 year ago:
Running a lot of DoH and DoT within my devices and my network
- Comment on Setting up your own VPN 1 year ago:
This is the exact script I use to install tailscale on my VPN server
Installing Tailscale
curl -fsSL https://tailscale.com/install.sh | sh
Enable IP forwarding
echo 'net.ipv4.ip_forward = 1' | sudo tee -a /etc/sysctl.conf echo 'net.ipv6.conf.all.forwarding = 1' | sudo tee -a /etc/sysctl.conf sudo sysctl -p /etc/sysctl.conf
Advertise subenets and exit node
tailscale up --advertise-exit-node --advertise-routes=192.168.0.0/24,192.168.2.0/28,192.168.5.0/24,192.168.10.0/24