#networking

1 messages · Page 74 of 1

warm dove
#

or will it only increase slightly

polar obsidian
#

Hello, i'm trying to port forward on my router to host a server but no matter what i do the port isn't visible. I've checked tracert in cmd and it only does 1 hop so i assume that means i'm not under cgnat, and the ip adress isn't in the range thats typicaly under cgnat either. I've even tried enabling dmz which from what i know would make all the ports visible but that doesn't work either. I'm not using two routers or anything similar, just the isp router connected directly to my pc.

silent flax
polar obsidian
silent flax
polar obsidian
#

Alright, thank you!

#

Though, wouldn't the protocol type in my router say ipv6 then?

silent flax
#

if you go to your ISP router, see if you can see stuff like

polar obsidian
silent flax
#

or maybe tell us what is your countr, ISP and maybe internet type

polar obsidian
#

Serbia, ISP is MTS

#

Optic fiber if thats what you're asking?

silent flax
polar obsidian
#

checked that thread, some are cgnated but some aren't for the same provider

#

i've tried every way i've found online to see if im cgnat but all of them indicate that i am not

silent flax
#

you can still just call the ISP and ask, that is the simplest solution. Worst case they will say it is not possible or they wont enable it, and you are in same spot you are now. It won't get worse 😄

#

best case scenario they will help or enable it

polar obsidian
#

Maybe im just forwarding it incorrectly? My previous isp's router had a different looking forwarding window

silent flax
#

we can't see what you see 🤷‍♂️

polar obsidian
#

Under forward rules all i have is DMZ, IPv4 Port mapping and Port triggering

#

Though i assume activating DMZ and trying a port would then work

#

Which i've tried

silent flax
#

DMZ is putting whole PC on internet, but not sure how they handle it.
Port mapping is forwarding

polar obsidian
#

The port mapping window however has nowhere to input the ports, not sure if i did this correctly

#

port trigger window looks like this

silent flax
#

port trigger is "Lan device connects to trigger port(s)", which opens the reqeusted open ports

silent flax
#

similar UI

polar obsidian
#

I might've missed that, i'll try adding the ports and then check on canyouseeme.org

silent flax
#

unfortunately Huawei website is down ("upgrades"), so ican't check the topic

#

external source port number is probably not needed

polar obsidian
#

just tried both with and without the external port, still not showing

wind current
#

lmfao

peak cloak
#

another LLM wrapper?

opal pagoda
#

who?

tropic saffron
#

My dudes, I got a folder full of hundreds of tiny system utils/programs on my nas. Is there any kind of software that basically creates a readonly static version of them and then keeps any changes as a snapshot just for them? That way when they connect over lets say... smb they get their own version they can make changes to.

plain siren
#

Am I correct?

tropic saffron
#

Yeah basically, right now my solution is to just.... make like 8 copies of everything which seems like a huge waste of space when you could just keep modifications.

plain siren
#

The term you are looking for is "Deltas"

#

A delta of a file is just the changes to a file

tropic saffron
#

Yeah I was trying to figure it out what that was even called but without knowing google wasn't really sure about what the heck I was even asking about 0.o

plain siren
#

There is no current native or even custom way I know of to achieve this and the only way I know to do what you want is kinda how you are doing it now. When a user is made, a copy of the static files is generated in the "Users home folder" or their share, and then they just modify those. Now the question becomes, are these text files like source code or are these binary executable files?

#

If they are binary files, then delta's wont work

#

if they are like source code, well then you could actually use a git server

#

basically what patch files are are deltas

#
--- sources-orig/officespace/interest.go    2018-08-10 16:39:11.000000000 -0400
+++ sources-fixed/officespace/interest.go    2018-08-10 16:39:40.000000000 -0400
@@ -11,15 +11,13 @@
   InterestRate float64
 }

+// compute the rounded interest for a transaction
 func computeInterest(acct *Account, t Transaction) float64 {

   interest := t.Amount * t.InterestRate
   roundedInterest := math.Floor(interest*100) / 100.0
   remainingInterest := interest - roundedInterest

-  // a little extra..
-  remainingInterest *= 1000
-
   // Save the remaining interest into an account we control:
   acct.Balance = acct.Balance + remainingInterest

This would be a patch file that adds lines and removes some lines

#

you can apply this to a file and itll patch it with the changes

tropic saffron
#

Its mostly just tons of utilities they can run, sort of like the ultimate usb utility drive but on a nas. The problem is having to reconfig the program everytime someone changes something, or a image program caching someone elses files which would be.... not good.

plain siren
#

ah so configuration files

#

not the binaries themselves

#

in that case, what I would do would actually be linking the static files to the users share so they get access to the source binary but the "run in" context (the directory its executing in) will be the users share which doesnt have a shared config file

#

instead it only has their own

#

share the binaries, copy the configs

#

dont let the binaries be changed

#

like a symlink

tropic saffron
#

Yeah thats what I was originally thinking, just seemed like a pita to manually go though every single program.

plain siren
#

/tmp/binaries/something.exe
/tmp/binaries/somethingConfig.cfg
/tmp/user1/something.exe -> /tmp/binaries/something.exe
/tmp/user1/somethingConfig.cfg -COPIED FROM-> /tmp/binaries/somethingConfig.cfg (NOT LINKED)

plain siren
#

how you manage that depends on your setup and your intent

tropic saffron
#

Yeah I'll start with a few and see how bad getting just those set up first. Just need to figure out whats getting changed for each one.

pseudo blade
#

Train of thought around an SMB reverse proxy and multiple backend SMB servers attached to overlay filesystems

#

Using it or other union filesystems lets you have a readonly filesystem then another filesystem "on top of it" that contains only stuff that's modified, with the user seeing what appears to be a single read-write filesystem with all files from both

wise kernel
#

I'm working on the last few units for my networking 1 class and look who randomly shows up lol. jamesLaser jamesYep

coarse rapids
#

I'll be moving into an apartment with ethernet pre-wired from the room where internet comes in to all other rooms (with ethernet ports in the wall), they don't know if cat5e or cat6. Any way to test without having a 1Gbit+ internet connection? (I would use this for 2.5Gbit NAS and 2.5Gbit LAN on PC)

To be clear I don't have any 2.5Gbit hardware other than my desktop, don't want to spend money on that unless I know the cables can do 2.5Gbit

strange jolt
#

You can do a speed test between two LAN devices but if they dont have NICs faster than 1Gbit then you wont see any benefit. Either that or buy, rent, or borrow an ethernet testing tool

coarse rapids
#

My PC already has 2.5Gbit LAN

strange jolt
# coarse rapids My PC already has 2.5Gbit LAN

You can test it up to 2.5Gbit if you have a switch or similar that can handle that, and another device to receive it. you can use iperf to do the test or just transfer a big file between the two devices and watch the transfer speed, provided both ends have storage to keep up with it

coarse rapids
#

there's only a wall socket on the receiving end, not the distributing end, so I'm hoping the cables are labeled

silent flax
coarse rapids
#

I was told that it using a wall socket could have a negative effect

strange jolt
silent flax
wheat jewel
#

why is my wifi so slow on my computer but its fast on my phone

ornate jungle
wheat jewel
#

my pc is sometimes fast and then other times its very slow. idk if its like the wifi antennas or something

ornate jungle
wheat jewel
#

uh huh. sooo how do i keep it at the 5GHz

#

i want to use ethernet but then i would have to run the cable all the way from my room to my attic

#

oh ok i just watched some video on how to make it be 5GHz

#

that worked its much faster now thanks for the help

fiery halo
#

what am i meant to do here?

#

trying to portforward my server (port 25565)

#

first time doing anything like this, my router is a DGA0122 from technicolour, and im using deco x20 wifi boosters (192.168.68.x)

fiery halo
#

ive tried that

fiery halo
peak cloak
#

you don't want double nat

#

you have two options

#

either get rid of nat on the deco so everything is on one subnet

#

or port forward to the deco and then on the deco port forward to the server

#

first option would be better

fiery halo
#

im trying the second one atm but im not sure if its right

peak cloak
#

assuming 192.168.1.216 is deco router IP then yes

fiery halo
peak cloak
#

until server is running

#

how would you get a response if there is no server

fiery halo
#

i guess 😭

#

ill start the server up and see if it works

#

what would the port be to join the server?

#

address*

peak cloak
#

your public IP address

fiery halo
#

public:25565?

#

or just public ip address

#

i forgot how long modded servers take to start

peak cloak
fiery halo
#

alright

#

can i password protect the minecraft server so i dont just have randoms joining it?

peak cloak
#

also on your main router, not deco, what are the first two digits of what it says for public IP

fiery halo
peak cloak
fiery halo
#

how would i add people to the whitelist? throught the CLI?

peak cloak
fiery halo
#

so just /whitelist (my user)?

peak cloak
#

technically you can edit the txt file manually, but it requires the uuid

fiery halo
#

alright, thanks

peak cloak
#

@fiery halo also generally if you are running a server publicly make sure to stay on top of updates

fiery halo
#

alright

#

@peak cloak ?

peak cloak
#

btw you just leaked ip

fiery halo
#

thanks

peak cloak
fiery halo
#

firewall is off

peak cloak
#

oh hmm

fiery halo
topaz patrol
fiery halo
#

too lazy

#

i just want to get this running

#

ill bother with security later

peak cloak
#

that's what they always say

fiery halo
#

besides ive had the firewall off for like a year and its been fine

peak cloak
#

anyway in theory this should work, but it's really hard to troubleshoot with consumer hardware, just have to try different things basically

fiery halo
#

🫠

#

what else can i try
cant really change the network all too much since my dad is big on "oo consumer hardware knows whats its doing dont change it"

peak cloak
#

could try the first method of getting rid of nat on deco

#

or move the server to connect to the first router and then just port forward to it

fiery halo
#

no NIC, no ethernet cable long enough

#

how would i do the first method

peak cloak
#

see if there is an option in the UI for access point mode

#

idk since I never used decos

fiery halo
#

on the deco or my router?

#

also yeah, there is on the deco, extension or router mode

dusty stream
#

sup with minecraft server?

peak cloak
#

yeah deco

naive nest
#

Can I mix the Ubiquiti nano access points with the standard ones? Will any performance issues arise as a result?

dusty stream
#

important is port forwading dont forget

peak cloak
#

deco right now is acting as a router, and you don't want that

fiery halo
#

if i switch it to extension mode, will it boot everyone off the network

dusty stream
# fiery halo

i wouldn’t recommend default port tbh, bunch of attack or whatever

dusty stream
#

sometimes you cant join with 25565 i forgot reason, try different port

fiery halo
peak cloak
#

should be temporary but idk

naive nest
dusty stream
topaz patrol
dusty stream
#

just try different port

naive nest
#

I haven't yet

topaz patrol
#

Do a simulation in UBNTs design thingo

peak cloak
topaz patrol
#

Chances are, you don't need 3 APs

dusty stream
naive nest
#

2 would probably do it, but I think if I get more APs and lower the transmission power on each then I can potentially attain better speeds

peak cloak
#

go ahead try it, but I'm certain nothing will change.

#

unless ISP blocks it for some reason. I only heard of isps blocking inbound SMTP and sometimes HTTP

dusty stream
#

i don’t have pc here

fiery halo
#

i mean i can use a VPN connection fine

topaz patrol
peak cloak
#

ah yeah, I have a large ISP and they don't even block SMTP

#

was suprised to find a proxmox notification in my gmail

topaz patrol
#

But also

You are solely responsible for any loss or damage to your equipment, device or to any information or other data that may result from your use of the service```
#

People getting haxx0red isn't too fun

topaz patrol
dusty stream
#

i wonder how does ISP domain works linuth i can make domain with it or wot

#

oh gosh i still haven’t learned about domain

peak cloak
#

?

dusty stream
#

agh i hate myself, anyway forget it

fiery halo
#

i figured why it wasnt working!!

#

(im a fooken idiot)

peak cloak
#

just realized it said off in the screenshot as well

fiery halo
fiery halo
dusty stream
#

are you leaking again?

fiery halo
#

i am infact leaking again

dusty stream
fiery halo
#

im going insane

dusty stream
#

don’t

fiery halo
#

its 3am

#

i have physics homework and i have 6 lessons tommorow

dusty stream
#

bruh

fiery halo
#

tommorow is in 3 hours

dusty stream
#

to be honest tomorrow is today

fiery halo
#

its not tomorrow until i say so

dusty stream
#

well good luck with that

fiery halo
#

okay I give up its tomorrow

warm dove
#

guys i just switched to a new mesh router from my old router but for some reason only 1 device can connect at a time, on other devices it will say failed to connect. Any idea why?

pseudo blade
warm dove
#

but the thing is the support is notoriously bad, like wait 5 hours to get told no type shi

topaz patrol
#

Also check it's in router mode, and not AP mode

warm dove
warm dove
topaz patrol
#

Is it a Deco?

topaz patrol
warm dove
#

its a mesh wifi from singtel, model is ap5690w

#

its an askey mesh router but singtel slapped their branding onto it or smt

topaz patrol
#

Yeah good luck with that one bud

warm dove
#

😭

#

whats ap mode and router mode

topaz patrol
#

It's not a router

warm dove
#

erm ill use my old router then, can you help me w another issue?

topaz patrol
#

It's a mesh satellite for the RT5703W

warm dove
#

my router is dual band and the 5ghz one is much faster than the 2.4ghz for my PC (2.4 gets me 40/40 mbps and 5ghz gets me 300/300), but then one day my PC cant find my 5ghz wifi anymore

#

it can find my neighbours 5ghz wifi but not mine and my phone can find it

warm dove
random siren
random siren
#

most consumer routers also have an accesspoint built in

topaz patrol
random siren
topaz patrol
#

The term router isn't properly defined... But I would argue home gateways are not routers

#

There is no packet routing happening in there

random siren
#

but they are still capable of doing so afaik

topaz patrol
clear igloo
warm dove
#

use 1 as a router and 1 as a 2nd point

random siren
#

yes, that is how you have to use an accesspoint. it always needs a connection to a router, either via wifi (worse performance but easier setup) or cable (better performance but setup is more work)

warm dove
#

for better performance

#

if you dont mind helping

topaz patrol
# warm dove how do i set it up then?

Connect your Mesh Extender to a power point close to your router and turn on. Depress the
power button on the back of the device if it does not turn on.
Press and hold the WPS button at the back of your router for 2 seconds, then press and hold the WPS button on the Mesh Extender and wait up to 5 minutes for the Mesh LED to turn solid white on both Mesh Extenders.
Re-position the new Mesh Extender to a location in-between your original Router / Mesh Extender and the area in your home with weak WiFi signal and switch on.

topaz patrol
#

Probably

#

Give it a try, only one way to find out

warm dove
#

alright tysm!!

#

ill try it out

warm dove
topaz patrol
#

Yes

warm dove
#

they didnt pair but ill try again

#

just flashes white for a couple minutes and then nothin

random siren
#

the router or extender?

cinder plank
#

I have now got the option to go with FTTP so I'm looking at plans to upgrade to. The one I have found has the option for £5/mo (£60) for a cheap TP-Link router I think it is a Archer VR1210v . (only wifi 5). They give the option to not get a router and use your own would something like this https://www.mercusys.com/en/product/details/mr60x for only £28 be better?

warm dove
peak cloak
#

Idk about that one, no experience with that brand

celest salmon
#

if not why

#

(desirable)

opal pagoda
#

maybe you could use tor

fiery halo
copper ginkgo
#

replacement HDDs for my NAS arrived but i don't have any more SATA ports; should i plug the old HDD into a USB enclosure temporarily for resilvering?

copper ginkgo
#

okay i don't understand what i'm doing here

copper ginkgo
#

trueNAS scale, built from old spare parts

opal pagoda
#

if it is a replacement then take out old drive and swap it for a new one

copper ginkgo
#

did that

opal pagoda
#

then what is the issue?
you want to upgrade it?

copper ginkgo
#

nah, i'm just a bit confused on how to do it

opal pagoda
#

tipicaly if hdd fails you take the defective one out, install new one of same capacity
run resilvering and it is done.

copper ginkgo
#

ya not sure where to find the resilvering option

opal pagoda
copper ginkgo
#

okay found it

#

it took a second to poll for the disk that was my problem

#

got it

#

i also have a degraded drive in the pool; should i replace it now or wait until it's faulted?

opal pagoda
#

i belive degraded means pool is degraded (you had a hdd failoure) and that should go away after new drive is added and pool is resilvered

copper ginkgo
#

nah this is specific to another drive

#

sde and sdf were degraded and faulted respectively; i'm replacing sdf right now

untold elbow
#

i'd replace sde as soon as possible also

copper ginkgo
#

good thing i ordered two drives then; i'll replace them one at a time

untold elbow
#

usually if zfs is seeing errors, the drive is running on fumes

#

that works

copper ginkgo
#

well all the drives were seeing errors but after a restart they aren't saying that anymore DeadPaimon

untold elbow
#

if they're all seeing errors, it could be a faulty HBA

#

are they all connected to a single HBA?

copper ginkgo
#

HBA?

#

ah

untold elbow
#

do you have the drives plugged into SATA ports on the motherboard? or into a pcie card with SATA/SAS ports?

copper ginkgo
#

into the motherboard directly

untold elbow
#

ok. if you start to see events where all the drives suddenly rack up errors at the same time, i'd start to suspect the motherboard

copper ginkgo
#

it is an 8-year-old mobo...

#

this NAS was built out of my PC's old hand-me-downs

#

that said all these drives were purchased and installed at the same time

#

i'll watch over the next week to see if the new drives get errors too

#

...come to think of it i did get some alerts for bad sectors on sdc and sdd

untold elbow
#

SMART errors? or ZFS errors?

copper ginkgo
#

i guess SMART

untold elbow
#

welp i'd plan on replacing sdc in the near future as well

copper ginkgo
#

ya

#

good thing ironwolves are on sale

forest stream
#

Any specific brands good for Ethernet cables between 100-200 feet?

copper ginkgo
#

i can't change any settings with my time machine share without getting this error

rocky badge
#

@waxen scroll @clear igloo I fucking hate this damn apartment's internet lol

waxen scroll
#

Order Comcast

rocky badge
topaz patrol
#

Problem solved

waxen scroll
rocky badge
#

I don't even mind the ISP they have

#

its just their shitty networking kills the internet so often

#

Its also pretty consistent on when it happens too lol

#

9am, 11pm, 1am, 3am every day

warm dove
#

im using a usb 3 wifi adapter rn, shld i upgrade to powerline or pcie wifi

pseudo blade
#

"Maybe"

#

Are you hitting any particular limitation of the USB adapter?

#

I much prefer the stability and functionality of the PCIe ones myself

#

But really it should depend on what's causing any issues you're having, if any

mystic latch
# copper ginkgo i guess SMART

You should immediately invest in multi-report. Gotta have email set up in the system settings, but it's a really good tool
https://forums.truenas.com/t/multi-report/1302

fickle lily
#

fk isp roiuter that i cant set static IP

#

should i risk and get the super admin account of the router ? lol

#

they need me to sign an agreement that they dont give a shit if i break my modem lol

celest salmon
# opal pagoda maybe you could use tor

By the way -- about google's "Privacy" what would I do if I want the search engine to have results the same as google's, do you know what I need to do or use (except of google search engine)

opal pagoda
peak cloak
thick minnow
#

My PC's TP-Link TL-WN727N adapter is dying; is it worth going for couple bucks more expensive TP-Link TL-WN722N or 10 bucks more expensive TP-Link Archer T3U Plus?

opal pagoda
thick minnow
low furnace
#

Hi, is anyone familiar with docker desktop and immich?

dusky zealot
#

I’ve got an issue with my network. ONT>multigig switch>Router,Xbox,PC. Everything has internet except for PC. Is there anyway to fix without having to buy some stupid expensive router?

topaz patrol
dusky zealot
#

Not enough 2.5 ports on the router 😅

topaz patrol
#

So the switch is connected directly to the ONT?

dusky zealot
#

Correct

topaz patrol
#

Put the router inbetween the switch and ONT

#

ONT --> router --> other things (including switches)

dusky zealot
#

Got it

thorny osprey
#

Is tp link archer ax15 gud? Its going for 34 dollars in stores

worn gate
#

So, I'm curious and also slightly lazy, in Cisco ios, I'm setting up ospfv2, and when I do "show ip route" I'm not getting any routes showing up via ospf, could the cause of that be my cable becoming unplugged
The context to this is i just got out of a networking final where ospf wouldn't work, and when I went to tear all my networking down I seen a cable was unconnected completely from one device that was meant to have ospf routes

fickle lily
clear igloo
copper ginkgo
#

okay i seriously don't know how to fix this

#

i can't change any of the settings on any of my SMB shares without getting this error

copper ginkgo
#

okay i think the issue might be that i tried jumping from 22.10 to 24.10

copper ginkgo
#

yep we're good on that front

copper ginkgo
fringe wagon
mental rose
#

building a pi 5 nas, running the install script for OMV and it's stuck connecting to github

covert sleet
#

Huh can it ping other services?

mental rose
#

let me see if it can ping 1.1.1.1

#

yep

#

it's doing it

covert sleet
mental rose
#

my desktop won't do it either

covert sleet
#

Yeah mine either

mental rose
#

ok hang on

covert sleet
mental rose
#

desktop will ping that site, pi will not

#

it's stuck in limbo

covert sleet
#

Try doing a traceroute from both?

mental rose
#

I'm gonna reboot it and see what happens

covert sleet
#

See what step it gets stuck on.

covert sleet
mental rose
#

I'm excited tho, never had a nas/server before

covert sleet
#

Nice! I miss my Synology nas

mental rose
#

did I seriously just forget the password to login via ssh

#

I swear to god I was just in this before

#

I'm not going crazy am I?

covert sleet
#

Huh does the script set a password or something?

mental rose
#

openmediavault's default settings are admin/openmediavault

#

I guess I'm recreating this shit

covert sleet
#

Also didn't work?

mental rose
#

I'm wiping the SD card right now

#

no it didn't work either

#

the ssh I'm trying is for the debian piOS, I don't see how that could possibly change

#

I tried sshing into my pi 0 2 that I use as a CUPS server, that worked perfectly

covert sleet
#

Yeah so something happened.

topaz patrol
#

Why aren't you using an SSH key pair?

covert sleet
#

I mean it is local and hadn't being finished setup yet

#

No need to go straight to ssh key pair in that enviroment

topaz patrol
#

It's easier

covert sleet
#

I don't disagree but it is a step deeper then most are comfortable with at least out of the gate.

mental rose
#

alright rewriting, this time with a shorter password

#

different question, I need to set up a separate VLAN on OPNsense later

#

do I plug the two different LAN ethernet cables into the same switch?

covert sleet
#

I am a bit confused.

#

Like are you trying to have one device on both VLANs?

mental rose
#

using the same router and same switch for both vlans, yeah

covert sleet
#

You just need to allow access to both VLANS, ingress and egress.

mental rose
#

so I don't need to do anything with a 3rd port on my router?

covert sleet
#

If you are wanting a device to access both VLANS but have an IP in one DHCP range then you will need to allow routing between them. So you would have to that up as well.

#

I am not sure how that is done in OPNsense, only Merraki and UniFi.

mental rose
#

no, one client device will only access one vlan at a time

#

but I want to use the same switch and WAP for both vlans so I don't need to buy another switch and WAP

covert sleet
#

Is it a smart switch?

#

Like Managed?

mental rose
#

no, it's unmanaged

covert sleet
#

So then you would need to do it from the router side. It would be a bit more complicated since you can't set access at the port level.

mental rose
#

sounds like I need to get another switch regardless then

covert sleet
#

Why only 1 VLAN at a time?

mental rose
#

security

#

I don't want one of my computers to interact with the other ones on the network

covert sleet
#

If you have untrusted endpoint inside of your network that is already not good. Is this a company or your house?

mental rose
#

home

covert sleet
#

So why the client isolation?

mental rose
#

like you know how IoT devices should be on their own VLANs?

covert sleet
#

What are you trying to stop from happening

mental rose
#

same thing

covert sleet
#

Right so what you want to have your computer to be able to access either VLAN through switching a cable was the original Idea?

mental rose
#

no, hang on

#

like this

covert sleet
#

Oh okay, you should be able to set 1 VLAN as the default and then have the other be based on MAC Address filtering or the like. So your WAP supports multiple wifi's with different VLANs?

mental rose
#

TP Link EAP 610

#

I think it does, but I'm not sure

covert sleet
#

You should be able to do access-lists or radius auth if it doesn't either way

#

Multi wifi is just easier.

mental rose
#

I'm wondering if I can just plug in two different cables from my router directly into my unmanaged switch like in the left side of the picture

covert sleet
#

You should only need one. You would just have to set it to accept tags from either VLANs.

#

Now it does get weird at the device level using the same 1 unmanaged switch but it is possible. You have to setup a default VLAN and an access list for the other VLAN.

#

Then the router should be able to adjust and tag as you go.

#

Mac based VLANs is what you would need

mental rose
#

funky is not what I need in my life

covert sleet
#

Lol then two switches each set to one VLAN if your router supports port based VLAN tagging.

#

Then a cable direct to the WAP

mental rose
#

I think it does, there are 4 ports coming off the router

#

eth0 is current LAN, eth1 is WAN, and eth2 would be the next VLAN

covert sleet
#

I mean honestly Mac based VLANs is pretty straight forward

#

Only tursted devices get into the 2nd mac address based VLAN

mental rose
#

ok well I'll look more into it later

#

I'm back in the pi rn and I've rebooted it and the password still works

#

ok it's installing openmediavault rn, let's see if it works this time

covert sleet
#

Banning all the IPs!!!

mental rose
#

what am I looking at?

covert sleet
#

My bans by reason

mental rose
#

what software is this that does the banning?

covert sleet
#

I manage a bunch of severs and I have software that scans their logs and looks for bad actors and bans them

mental rose
#

nice, I just use zenarmor

covert sleet
#

It is built ontop of crowdsec but customized a bunch

mental rose
#

I should probably setup suricata at some point but eh

#

and then what are some of the reasons you're banning IPs for?

covert sleet
#

I mean I do this as it is a bunch of servers directly connected to the internet

#

The #1 is http-bad-user-agent

#

So just bots

mental rose
#

oh there's no router or firewall protecting these servers?

covert sleet
#

Yeah there is a firewall but these are bots connecting to webservers and dicking around

mental rose
#

mmmm

covert sleet
#

So I ban em, for scanning for admin portals or wordpress php files

mental rose
#

alright, here we go again

#

now I am scared that zenarmor and adguard home are preventing this from working

#

but I've put the former in bypass mode and the latter's protection disabled

#

yeah the connection just timed out again

#

I did notice this:

covert sleet
#

Well looky there

mental rose
#

just skip it I guess?

covert sleet
#

Not sure, :/

mental rose
#

worth a shot

#

nope, it only did the first line of wget and then went right back to it

#

that uh

#

that explains what happened to my ssh

#

I also didn't set the locale settings which might be why it's throwing a shit fit

covert sleet
#

Ah that makes sense

mental rose
#

well, third time's the charm right?

mental rose
#

that's it, I'm confused

topaz patrol
#

Have you tried disabling IPv6

mental rose
#

oh I think it's trying to do it via ipv6

#

I think I blocked ipv6 on my router cause it was giving me problems

topaz patrol
#

Yeah

#

It's always DNS or IPv6

mental rose
#

good lord, the shirt isn't a meme??

#

holy shit it did it, I had to reenable ipv6

#

if anyone is able to identify what's going on with my router, I'd love to hear suggestions

topaz patrol
#

What's happening

mental rose
#

it's opnsense, and I get fatal trap 12: page fault

#

the router restarts about once a week

#

in the general log, the router is failing to forward some ipv6 packet somewhere and it seems to be causing the crashing

topaz patrol
mental rose
#

no, bare hardware

topaz patrol
#

What hardware

mental rose
#

here's an example of the packet loss that I would keep seeing repeat if ipv6 is enabled

mental rose
# topaz patrol What hardware

The biggest processor innovation in a decade for these fanless firewalls and virtualization nodes brings a massive performance boost. We take a look at the newest fanless firewall and virtualization hosts from CWWK and Topton and see why this might be the OPNsense, pfSense, and Proxmox VE node of choice for quiet #homelab setups in the future.

...

▶ Play video
topaz patrol
#

N305?

mental rose
#

yes

#

these are the two settings I turn off in opnsense

topaz patrol
#

And when those are disabled there's no crashing?

mental rose
#

exactly, it's so weird
the error message goes away too

topaz patrol
#

Probably not a hardware issue then

mental rose
#

it can't be, cause I've run memtest on it

topaz patrol
#

I'll leave this one to someone smarter than me lol

#

Is there a reason you can't just leave the settings like that?

mental rose
#

yeah if you don't know, it's ok

#

well, you just saw the one time something needed to access something via IPv6 and it didn't work

#

otherwise, yeah I just leave the settings like that

topaz patrol
#

If you disable IPv6 on the clients it shouldn't be a problem

#

But that isn't a proper solution

mental rose
#

what's funny is that I've made a forum post on the opnsense forums and no one has ever answered it lmao

#

I should update it with what I've found

#

@covert sleet you got any clues as to why my opnsense router is crashing when I have ipv6 enabled?

haughty latch
#

any sysadmin here knows a good tool to map out tree architecture network using spanning tree protocol so i can map out all switches and stuff the stupid monitoring software unifi uses can't recognise all switches sadly so i have a hard time to figure out what devices connect were in the serverrack of my company and i have to move a group of devices into their own vlan for security

topaz patrol
#

Lol UBNT

haughty latch
#

will take a look thanks

covert sleet
mental rose
#

TY, I appreciate you looking

covert sleet
# haughty latch any sysadmin here knows a good tool to map out tree architecture network using s...

Other options. 🙂
https://netdisco.org/ - Open Source
https://www.solarwinds.com/network-topology-mapper free trail
https://nmap.org/ - Might work as well.

mental rose
#

what the fresh hell is this now? I'm just trying to create a ZFS pool here

fallow pulsar
#

Any sugestions on a dynamic DNS provider. Preferably free

#

Using with unifi

untold elbow
violet osprey
#

Has anyone had experience with Huawei routers? How good are they?

worn gate
opal pagoda
opal pagoda
silver pilot
opal pagoda
#

when router is in "modem mode" it is doing basically zero processing

#

just a media converter

south gull
#

i have 400 mbps upload speed but the latnecy is 150, any way i can fix that>?

opal pagoda
south gull
#

how would one mitigate bufferbloat

opal pagoda
#

there are some methods mentioned on the site

mental rose
#

how do I load it?

fiery halo
#

what does this mean?

#

theres no mapping for Y: atm

mystic robin
# fiery halo what does this mean?

Does net use in command prompt/powershell list it? Use net use <drive-letter>: /delete if it shows connected there and you want it gone.

radiant gale
#

Was my tech last week full of crap?

Story time: scheduled time between 1-5. He finally shows up at around 8, after calling Brightspeed to see what was up. Well he then took a Quick Look around the yard and claimed we needed to get ahold of city utilities to get a sub pole put in closer to the road because our drop point is across the street. After talking to city utilities and them having no clue what he was talking about, I’m assuming he was just being lazy and not wanting to do an install that late. Would I be correct in that assumption ?

pseudo blade
topaz patrol
radiant gale
topaz patrol
violet osprey
untold elbow
opal pagoda
thorny osprey
#

Which app on android is best to see which channel has da least traffic?

violet osprey
torn moth
#

I got my NAS parts minus the PSU and drives for storage. Was thinking of useing my old psu that I used when I had new 1060 ti but haveing second thoughts about it. Would be ok or should I get a newere one?

#

Its 550 W and not modular

hallow tusk
thorny osprey
opal pagoda
#

For full gigabit it might be a little underpowered

hallow tusk
thorny osprey
#

also

#

this is before installing openwrt (ethernet)

#

after installing openwrt (ethernet)
tf happened?

viscid nebula
#

damn

#

mb not the right cable?

thorny osprey
viscid nebula
#

yh mb its not opted for it yk

thorny osprey
viscid nebula
#

like model yk

#

if its a cat5 or cat6

thorny osprey
viscid nebula
#

mhm ok then thats weird

thorny osprey
thorny osprey
thorny osprey
opal pagoda
#

So all traffic goes through the weak cpu

opal pagoda
#

What hardware are you running it on?

thorny osprey
thorny osprey
peak cloak
#

I just stick to supported software, don't want to deal with all of that

coarse rapids
#

Is mercusys hardware reliable?

#

They currently have the cheapest 6ghz wifi & 2(+) 2.5gbit ethernet router

silent flax
# pseudo blade *The words of every legacy network admin ever

i will start using IPv6 when IPv6 starts working correctly with an idea of local DNS hostnames and when ISPs start handing out bigger segments than /64. Right now if i enable IPv6, my ISP will push their DNS down my throat with no way to modify it, thus i can't have local hostnames, unless i put them in the public DNS

thorny osprey
#

Openwrt says it supports my roter

peak cloak
thorny osprey
peak cloak
peak cloak
thorny osprey
peak cloak
#

never used openwrt

violet osprey
opal pagoda
#

better than on fortigates lmao

silent flax
silent flax
thorny osprey
opal pagoda
silent flax
torn moth
#

For a NAS does it matter if I go WD blue instead of red even thou they say the red ones are for NAS and similar thing with other brands?

silent flax
# torn moth For a NAS does it matter if I go WD blue instead of red even thou they say the r...

until the drive starts acting up, no. If it starts to have issues, that is where the difference comes. Red drives have TLER, that is Time Limited Error Recovery. In short, Red drives will try to read/write for max 8 seconds and then gives up; non-TLER drives like Blue could hang on such issue for tens of seconds, or even minutes. As you can image, that is a bad thing in a RAID array.

Plus Red possibly have better resilience against vibration, but i have no experience with that

topaz patrol
torn moth
silent flax
#

but yeah, if you have a backup solution, then i would say buy whatever you want

#

i mean have a secondary storage for the important things if drives in your NAS fail. But it's up to you, as always

torn moth
#

I dont have a nother NAS nor do I have subcription to cloud but I will have multiple drives in the NAS

silent flax
#

in any case, you want multiple levels of backup for the important stuff. Just in case something happens, cause anything can happen

#

you could have your house burn down or flood, which is why offsite or cloud backups are recommended

peak cloak
torn moth
#

My job is gig based and I get paid by the hour so my income isnt stable so I cant do subcriptions based storage

peak cloak
#

it could be another nas in a different location

silent flax
peak cloak
#

or that for the most important things ^

torn moth
silent flax
peak cloak
#

good data backup isn't cheap

torn moth
torn moth
silent flax
#

i mean your situation is still better than the "I had my very important documents on this USB flash drive that just died, can we rescue them somehow?" 😄

torn moth
silent flax
#

and sometimes, you can use services you would pay for anyway. For example if you got Microsoft 365 Personal, that is 1TB of Onedrive storage. Or if you got Microsoft 365 Family, that is 6 users, each 1TB, so 6TB total of Onedrive storage.

#

And as a bonus you get MS Office apps 😄

#

but again, you don't have to do it right away. Just keep it in mind that for safety, you might want to have a plan for extra offsite copy in future.

torn moth
#

To connect my pc and the NAS I am guessing i need a small switch between them?

peak cloak
#

but if you just want communication between nas and computer, you can wire it directly

torn moth
#

The router is in a nother room and I am already useing the eathernet port on my pc

pseudo blade
topaz patrol
#

Ew IPv6

plain siren
clear igloo
topaz patrol
clear igloo
topaz patrol
#

Exactly

dusty stream
#

ipv6 is random ngl

topaz patrol
#

I'm pretty sure APNIC recommends a /64 or /56 for residential and SMB

pseudo blade
#

/64 breaks stuff, including slaac

clear igloo
#

smaller than /64*
(/65 to /127)

#

ISPs should hand out up to /56s though if requested by home users at least

#

but I can see the vast majority of home users only needing a single /64 since they don't do VLANs where multiple /64s are needed

silent flax
topaz patrol
silent flax
topaz patrol
#

BYO router. Problem solved.

silent flax
#

all i can change for IPv4 for example is DHCP range. turn off DHCP range ? Not possible. Custom DNS entries ? Not possible...

silent flax
#

maybe for VDSL, but even there it is problematic

topaz patrol
#

Sounds like those ISPs need to adjust their BYO policy or allocate a larger prefix if requested

topaz patrol
opal pagoda
cinder sapphire
#

Would a VPN mask data travel if someone accesses my server?

#

Or would it need to be active on both host and client

thick minnow
#

Is D-Link wifi card any good?

plain siren
#

2600:1702:1c31:6c10:721a:b8ff:fe06:d673 is my current IPv6
2600:1702:1c31:6c10 is the network
721a:b8ff:fe06:d673 is my host piece of the IP
70:1A:B8:06:D6:73 is my Mac Addr
If we add 2 to the first hex to indicate this was an EUI-64 Generated Addr, we get 72:1A:B8:06:D6:73
Now lets add FF:FE to the middle of it to get 721a:b8ff:fe06:d673 which happens to the be the second half of my IPv6. That means IPv6 addresses are generated based of the Mac Address of your network card (assuming you dont have randomized ipv6 enabled)

dusty stream
#

holy shit

#

do you even remember that?

plain siren
#

we can take it even further

plain siren
dusty stream
#

damn nice

plain siren
#

lets say I was to take my device to another network... if i knew what the network's first half of the IPv6 is, I already know the devices IPv6

#

Also without the need of NAT, I dont need to port forward. The Internal IPv6 is the External IPv6 so long as I open the firewall

topaz patrol
#

Until iPhones fuck everything up with randomised MAC addresses

plain siren
#

With this knowledge, we really only need the first 3 octets in order to know "where in the public network to go". We have the internal knowledge of the "subnet ID" (VLAN) since we set that (usually, some ISPs only give you a smaller piece and use part of the subnet id to indicate local geo area)

#

2600:1702:1c31:6c is actually my AT&T Assigned network prefix

#

the 10 after it is VLAN 10 for me.

#

01 is VLAN 1. 02 is VLAN 2... etc

#

6b, 6c, 6d is assigned in dallas (mostly)

#

so if I knew "AT&T, Dallas, VLAN 10, The Device MAC Addr", I can generate the IPv6 with that information

#

2600:1702:1c31 6b/c/d 10 721a:b8ff:fe06:d673

dusty stream
#

nah, i’d better stuck with IPv4

peak cloak
#

and bigger

#

just that ipv4 ran out of ips and started NATing

opal pagoda
#

exactly

#

just bigger nuber = harder to remember

plain siren
#

If I have to remember an IP, its getting a DNS name

#

also the conversion from IPv4 to a Number if you wanna try the above is;
(16777216 * First Octet) + (65536 * Second Octet) + (256 * Third Octet) + Fourth Octet

#

so it would be (16777216 * 127) + 0 + 0 + 1 = 2130706432 + 1 = 2130706433

#

LOL discord converted that

silent flax
torn moth
#

What sites can I learn about networking at home? I wanna connect two computers

thick minnow
#

Is D-Link wifi card any good?

peak cloak
#

They'll setup linklocal ips automatically

torn moth
peak cloak
torn moth
peak cloak
#

Then just connect the Ethernet going to PC to the switch then switch to PC and switch to nas

torn moth
#

Damm plug and use has gotten really good

clever tartan
#

anyone know any good options for quieter fans for my switch? its a cisco sge2000 (and no im not changing it out) and uses 2x40mm fans, ideally i want to keep the cost low but anything under 40db would be really really good as my switch is 55db at the moment and is right next to my bed and desk

peak cloak
opal pagoda
clever tartan
#

i would prefer to keep the use of the rack unit above it

#

and i have no means of cutting into metal

#

i also dont have £30 to throw at this £30 switch

opal pagoda
#

then remove fans compleatly and if it dies it dies

clever tartan
opal pagoda
#

and do that mod

clever tartan
#

i have a spare u on both the top and bottom but i just cant put a hole in the switch because i cant cut metal with the stuff i have

opal pagoda
#

all you need is a drill and tin snips

clever tartan
#

would the 1u fan thing help at all though, i really dont want to cut my switch

opal pagoda
#

i dont really know what layout that switch is internaly

clever tartan
tight pecan
#

Idk then

#

The only way to make it quieter is to replace the fans.

#

Or remove them completely

clever tartan
#

might get a generic fan on amazon with decent reviews, one here is claiming to be 17.5dB(A) so might be a good bet

clever tartan
opal pagoda
clever tartan
#

undervolting would be ideal but how on earth would i do that, management interface is as good as gone because its got no options for fans and only works in IE5 and firefox 37 and below

clever tartan
#

ill take it down and see what reaction it has to having no fans

opal pagoda
#

are the fans 2 pin or 3/4 pin?

clever tartan
#

no clue

#

ill have a look

clever tartan
#

and i just realised that its probably best to just replace the fans because one is responsible for cooling the PSU

#

replacing the fans because people say that they are basically inaudible and they are only £12 for 3

plain siren
#

DHCPv6 shouldnt even be considered except for when you are using DHCP Options and DNS Server assignment.

#

SLAAC is the only way to go

topaz patrol
plain siren
#

bleh

topaz patrol
plain siren
#

I wish it was

#

I cant buy a block of ipv4 without loosing an arm and a leg. And my boss who has a massive ipv4 block they are sitting on is slowly selling it for tons of money

#

tons of money

topaz patrol
#

IPv4 space is still pretty cheap

peak cloak
#

Sometimes

#

Things like android not implementing DHCP6 ruins v6 implementation and adoption

plain siren
#

And I would prefer people didnt.

#

Even for v4v6 or v6v4

peak cloak
plain siren
#

It is only when IT just straps IPv6 on top instead of actually deploying it

#

but I havent seen a corporate environment use DHCPv6 in years

#

Many years

#

now most routers actually have sane defaults that allow for just flick on and go

#

blast prefix and have a nice day

peak cloak
#

¯_(ツ)_/¯

#

I don't really play with networking anymore, but I heard of some vendors giving entire /64s to Android devices because they didn't support it

thorny osprey
#

how to have tp link cloud services in my openwrt tp link router?

ornate jungle
ornate jungle
thorny osprey
#

But i still want da tp link tether n cloud stuff

ornate jungle
thorny osprey
#

Anyway to somehow get it on openwrt? Any linux shenanigans?

ornate jungle
thorny osprey
#

O h.

peak cloak
#

Use something like tailscale

regal plover
#

should i enable or disable ipv6

topaz patrol
#

TUAC with less bells and whistles

topaz patrol
steady yacht
#

so i can now do 10gig networking for no reason other then the network card was cheap

thorny osprey
onyx wasp
#

I want to upgrade my home network setup.

I going to get some Unifi APs (Probably U6 Pros)
I need to filter traffic (block certain sites, stop some ips pinging others)
I also want to host a samba server (or whatever its called)

I need to know what to use for the firewall. A Unifi Cloud Gateway Ultra or A NUC
If I should get a NUC which should I get? It needs to have 2 ethernet ports

pseudo blade
#

If you take the fans off, you REALLY SHOULD take the top off and give it some space, the older switch chips run hot and often need the cooling

#

Putting a 120mm over the fan heatsink would be ideal and costs nearly nothing except a bit of space

pseudo blade
#

So pick your poison I guess lol

onyx wasp
#

What nuc would you recommend

#

I want to buy second hand probably off of ebay

pseudo blade
#

They make kinda awful NASes unless a few TB is all you want

onyx wasp
#

I just want to host a samba server

pseudo blade
#

¯_(ツ)_/¯

#

Go look at ServeTheHome reviews of mini PCs and pick one you like reviewed in the last year or so

torn moth
#

I am trying to access my tp link browser manager but I cant connect to it

thick minnow
#

Is there an actual way to improve ping?

dusty stream
#

live near server

thick minnow
clear igloo
#

fiber all the things

ornate jungle
# thick minnow Is there an actual way to improve ping?

Those pings are on average what most people I know (who don't live in the same city as one of the datacenters OR who don't have fiber) receive - they're definitely playable. My ping to their Oregon server instances is between 40-85ms depending on a wide variety of factors, and I'm ~250km away.

silent flax
#

like let's say Greece to Germany etc

ornate jungle
silent flax
#

in Overwatch or Marvel Rivals i have <40ms ping even on crappiest VDSL

#

(when visiting mom, she can't get anything better than this 😦 )

#

15/3 is literally the best VDSL internet she can get - but it is still miles better than the wireless slower one she had before

tired raft
#

Can anyone help me decode some internet/isp connection issues. What is SNR/MER, what is OFDM and what does "Corrected" and "Uncorrected" mean. My speed/connection keep crashing to some kind of limp mode of 30Mbps. When its working ok, it's normally a pretty quick 500Mbps. I can reset the modem, either by cord pulling or by using my ISP's website to send a reset signal, and then it goes back to working for a short amount of time. Sometimes minutes, sometimes hours, before going back to this 30Mbps mode.

opal pagoda
#

you should call isp and get them to diagnose and fix it

tired raft
#

Can it be caused by my devices? Maybe its a placebo, but it sure feels like disabling the wifi on my router helps.

opal pagoda
#

it is always possible that router is so badly made its own wifi causes interferance with its onboard modem

#

what modem/router do you have?

tired raft
#

Maybe though its some piece of IOT garbage one of my roommates has trying to phone home? Screaming into the void? My router is an asus brand with AC in the model name, I don't think its that old or poorly made, though I do hate the GUI, maybe its time to upgrade.

#

RT-AC68U

opal pagoda
#

what about your modem?

tired raft
#

The modem is an arris SB uhhh.... idr, but it was docsis 3.1

#

SB8200 I think, according to this bestbuy email

#

Also not ancient, also hate the GUI, also maybe time for an upgrade.

opal pagoda
thick minnow
random siren
#

there is no consumer optical wifi. you probably mean fiber

opal pagoda
silent flax
severe hatch
#

Has anyone here a Unify A7 Pro access point and would like to share their opinion? I've read mixed comments in forums and on reddit, so I'm unsure, if I should go with the A6 Pro instead

waxen scroll
#

Why not buy it and return it if you don't like it 😘

#

I returned the a6 for being too buggy

#

Maybe they fixed it since idk

#

My bad it was the u7 pro max I returned

#

I had issues with both 6ghz dropping out and the injector was failing too

severe hatch
thorny osprey
#

how do i turn my windows machine into a nas? (on windows NOT linux)

tacit rivet
#

right click on the drive and click share

thorny osprey
opal pagoda
#

you need to put in a dns name/ ip address

thorny osprey
thorny osprey
opal pagoda
thorny osprey
opal pagoda
#

Y

thorny osprey
opal pagoda
#

have you checked firewall rules on host machine?

thorny osprey
opal pagoda
#

try just puting the ip address inside file explorer directory bar

#

with \\ in front

thorny osprey
#

nvm dis happens

rare sierra
# thorny osprey nothing happens

Did you set the permissions correctly and made sure u selected the right folder to search for. For example //IP address/folder. And make sure you're on the same network and you have the right ip address

thick minnow
# thorny osprey nvm dis happens

Go to Control Panel > Programs > Turn Windows features on or off.
Check SMB 1.0/CIFS File Sharing Support.
Click OK and restart your machine.

#

The format should still be \<IP address><shared folder>.

thick minnow
# thorny osprey nvm dis happens

Open a Command Prompt (Windows + R, type cmd, and press Enter).
Type ping 192.168.1.3 and press Enter. This will check if the remote machine is reachable on the network.
If the ping is successful, it means the remote machine is online.
If it fails, you may need to fix network settings like IP addressing or firewall issues.

#

On the remote machine (192.168.1.3), check the shared folder settings
Right-click the folder you want to share
Click Properties > Sharing tab.

random siren
topaz patrol
thick minnow
topaz patrol
#

Yet you are recommending they turn it on

thick minnow
#

why you would want to share drives over the network

#

idk

random siren
#

using smb or any other network file sharing protocol such as nfs is normal. but there are 3 version of smb. smb2 is still used but technically superseded by smb3. smb1 should not be used for any reason anymore

thorny osprey
thick minnow
thorny osprey
thick minnow
thick minnow
#

you could always just set up docker too

clear igloo
#

They want to share files with Samba, why are you having them setup python?

thick minnow
#

he said he wants to use his laptop as a server ?

clear igloo
#

A NAS

thick minnow
#

oh

#

nvm then

random siren
#

bro if you arent taking the piss, just stop responding if you arent sure what you are talking about. most if not everything you posted is not what was asked for or is harmful

opal pagoda
thorny osprey
#

im also gonna run mc server on it lol

opal pagoda
#

You can do that on linux too

#

Arm even

#

You also avoid pain of windows updates shutting down your machine

delicate yew
#

Hey all
Anyone know of some good POE cameras I can use for inside surveillance
Something that doesn’t require a monthly subscription

peak cloak
peak cloak
#

I use synology surviellence to actually record and view

delicate yew
#

Oh what? I didn’t know synology had a system

#

Aight bet

novel marsh
#

could i ask someone for a network tip on a problem im having?

#

i have a 1gbps internet connection, with wifi works perfectly, with my ethernet its locked at 100mb, i have an asus tuf gaming b650 plus mobo and the only ethernet port is 2.5gb, i updated drivers, unlocked the 1gbps full duplex from the internet settings, the cable is a cat5e wich should be good up to 1gb but still in status it shows "100mbps"

wheat dome
novel marsh
#

not really sure how to check but it should be

novel marsh
wheat dome
novel marsh
peak cloak
#

can be bad crimp or something, try a different cable

wheat dome
#

Was just about to say mabye you rolled over the cable with your office chair

#

Buy a real cable next time
Like Cat 7 S/FTP

novel marsh
wheat dome
novel marsh
#

but it supports to at least 1gbps so i dont understand how it could be the problem, and it passes through the wall so i don't think its damaged

peak cloak
#

without a cable tester we are speculating here

peak cloak
novel marsh
#

when the techs came to install the optic fiber they tested the cable and it was good

wheat dome
peak cloak
#

if you have a laptop or can move, try the cat 5e cable from router directly to computer

#

that will isolate the wall calbing and just test that one cable

novel marsh
#

not even a month ago, we thought it was a mobo issue since i had a noname mobo, but now that i have an asus tuf b650 plus idk

novel marsh
peak cloak
novel marsh
#

ill try the cat5e with a laptop and a cat6

novel marsh
wheat dome
peak cloak
# wheat dome Tsk. Cat 7 superior

anything more than 6a is a waste of money. Cat 7 spec technically doesn't even specify 8p8c connectors but TERA connectors which no one has

wheat dome
#

The cables are pink even! Poggies

peak cloak
#

cat 5 can support 10gig over short distances as well, your point?

wheat dome
#

Nvm, the cables are magenta. Day ruined. whoa

delicate yew
peak cloak
#

it's just a matter of signal integrity

#

stuff like Power Sum Equal-Level Far-End Crosstalk (PS-ELFEXT), Near-End Crosstalk (NEXT), Attenuation and Return Loss (RL)

delicate yew
#

Ah
Imma have to come here when I Rewire the houses internet
But that’s gonna be a couple years till my parents retire or get another house

peak cloak
#

right now the default is cat 6

#

6a if you really want to futureproof

wheat dome
#

Which cable can survive most cars running over it

peak cloak
#

also that would be fatigue not stress fyi

wheat dome
wheat dome
novel marsh
peak cloak
novel marsh
#

i want to try to update my modem but i have no idea how o

novel marsh
#

i turned off every power saving options too

peak cloak
#

and on wifi it's >100mbps?

novel marsh
peak cloak
#

try a different cable or device

#

the router shows it supports gig

topaz patrol
thorny osprey
#

I tried installing da snapshot build of immortalwrt (fork of openwrt) but it shows dis
can any1 help

#

oh

thorny osprey
#

whyyyyy is da intenret led of my router glowing red 💀

lavish relic
#

Would this be the place to ask about land lines sadlinus

ornate jungle
lavish relic
#

And these wireless adapters seem out dated and expensive

ornate jungle
#

Yes, because analog phone systems are dated and expensive to maintain. What is your end goal here? Why do you need a phone jack elsewhere? What is plugging into it?

lavish relic
thorny osprey
#

guys i uh tried to force sysupgrade a firmware to my router and now its WAN LED is glowing red
am i cooked?

lavish relic
ornate jungle
ornate jungle
thorny osprey
lavish relic
lavish relic
#

We all have our moments lol

ornate jungle
# lavish relic We all have our moments lol

All good. This is why I encourage people to fully list everything about their problem / issue when posting, cause more often than not, we're trying to achieve something the hard way when there's an easier / simpler solution out there. 👍

thorny osprey
#

can i overclock my archer ax23

topaz patrol
#

But DECT is a better option

pseudo blade
#

I don't think you can usually just get two ATAs and have them bridge like that

#

It's all good if you run a PBX but that's not exactly common for most users here

pseudo blade
#

Looks like both versions are based on the Mediatek MT7621 which... isn't exactly fast. (880mhz*2 MIPS, yay....)

You'll get significant (several times throughput multiple) performance improvements if you enable offloading+fastpath and they aren't presently enabled.

#

Beyond that the answer is simple: "buy a router capable of your expected throughput with your desired feature set"

topaz patrol
#

It’s a horrible way of doing things, but very possible

thorny osprey
thorny osprey
thorny osprey
topaz patrol
thorny osprey
#

but how do i still do it

topaz patrol
#

You obviously don't have the knowledge to do it at the moment

thorny osprey
dusky ice
hallow tusk
#

Nah, just flash it with OpenWRT - The threat they are worried about is compromised units being used in botnet attacks, and it's not only TP-Link units that are being compromised/zombified; They just get the headlines because they're making up nearly 2/3rds of consumer routers these days.

#

(Ironically there was an OpenWRT zero-day that led to a bunch of units being compromised anyways, so the age-old adage applies: Patch yer stuff.)

clear igloo
hallow tusk
#

lol I wish that wasn't so true...

pseudo blade
#

I'm also mystified how you call that expensive, it's about as cheap as they get

#

I guess it's twice the price of a hAP lite

naive nest
#

Does anyone know why my upload speed is better than download on WiFi?

pseudo blade
#

Antenna problems, congestion at the ISP level

#

Saw it a lot on NBN co.'s old oversold fixed wireless services

naive nest
#

Just using the default signal settings at the moment on the AP

pseudo blade
naive nest
#

I doubt it's the ISP since all my wired devices get symmetrical speeds

#

Might just be interference because I have three wireless networks