#the-water-cooler
1 messages ยท Page 406 of 1
what's that in ๐ฆ dollars?
$20 ๐
what do you guys use those for?
Routers
Pouters
hypothetically, if i had a friend who didnโt know the difference between that and a consumer router, how would i explain the difference to them? ๐
lmao
ยฏ_(ใ)_/ยฏ

what software do you run to manage that?
ive never really thought about this kind of stuff
pfsense is the software
pfSense will require a processor that supports AES-NI soon, so I recommend looking for a box with that. The J1900 boxes donโt
It was supposed to be required in 2.5, but the requirement was just removed. If youโre buying new, buy future proof
I just upgraded to this: Firewall Micro Appliance with 4X... https://www.amazon.com/dp/B072ZTCNLK?ref=ppx_pop_mob_ap_share
oh boy, i'm about to learn regex in my python tutorial...
anyone know what frenck finally decided to get as a new server?
What do you think the advantage of getting a new random computer over getting a second hand sff for pfsense
Besides size
@scenic radish the only way to win at regex is to not play
Basically use regex as a last resort
Good to know, thx
You shouldn't use it much in python tbh
Yeah I was kind of wondering what some actual uses would be
some very specific cases but not very often
the basic string manipulation functions can handle most of your use-cases
Yeah you'll find you'll parse the data first and then use normal python manipulation
For example, say you have an API that returns json and you want to know the temperature.
{ weather:
{ temperature: 21,
humidity: 0.51 }
}
I'd do something like
weather = requests.get(url)
json = weather.json
Then you just end up with a normal python dictionary with nested lists etc.
json.get("weather").get("temperature")
I've probably made a mistake but that's just from memory on mobile.
But if I tried to use a regex to get the weather from the raw json string, it might work but it'll be an unreadable mess and edge cases would screw me
Readability is king too
as infrequently as possible ๐
I had to use Reg Ex for my DEPRESSION METER. each hour my phone texts my bank for my account balances and then displays them on my home screen
Wouldn't it be nice if banks just gave you a read only api key
probably hard to do with their backend still in cobol
I was going to make that joke lol
Even neobanks don't do it, at least in Australia
I'm not sure what this open banking thing is but hopefully that should solve that
I'm so over light switches.
New construction where the builder comes in and does all the light switches and then you come in and rewire all the light switches to be Z-Wave smart switches is so beat. Voice commands eliminate the need for analog switches we don't need any more! Get rid of them!
lol not as WAF or GuestAF friendly
What we need are hard wires for smart curtains, motion detectors, and door window sensors. Not stupid light switches that are ridiculous the retrofit and don't do anything afterwards other than look ugly
Especially dimmer switches man
5v DC wiring everywhere
Preach
So they have a dimmer switch on a wall you take a regular light switch, put in a smart Switch behind it, then a smart plate in front of it. Also you can walk over to the wall and smudge it with your finger. Way too much time for everyone involved
@scenic radish , what are you doing to learn python. I want to do the same?
If anyone here is using multiple Network cards with Homeassistant, would you mind if i asked some questions about your networking setup?
I've given homeassistant two NICs which are on separate vlans (LAN & IOT), but some devices on the IOT vlan don't seem to communicate with homeassistant (although they show online in ESPHome)
@green inlet this: https://automatetheboringstuff.com/chapter0/
And this: https://docs.python.org/3/
Thanks.
@regal linden I do not but that hass installation type do you have and are your iot wired or wireless
What* hass installation type. (On mobile)
my hass installation type is hassio on a proxmox container
the networks are all wired
i can access homeassistant from both NICS (10.0.7.10 and 10.0.6.10)
but my device 10.0.6.158 isn't reporting to homeassistant
Can the hass container ping it?
it does however show as online in ESPHome (which is running as a hassio add-on)
i think so, let me check
Add-ons are containers under the hood right?
yes the ping works
from the container
yes i think think they are docker containers to
tho*
they are
Can you curl . 158?
Ok
no i don't think so
Add : port
i'm not sure what port they listen on
I believe so, i've assigned the static ips to both nics
How about the devices
subnet 24
they didn't change since i added the NIC but i'll double check
interesting i don't see an ip config for those devices at all in ESPHome
maybe that means they default to DHCP
the config in ESPHome looks like:
ssid: WIFI-IOT
password: !secret wifi_iot_password
reboot_timeout: 0s
fast_connect: true```
Esphome api port looks like 6053 if my quick Google is right
yes
its WIFI-IOT for iot and WIFI-LAN for lan
curl on port 6053 does return an empty reply
which i assume is a success
DHCP is giving out correct ips for the respective vlans?
yes the IOT vlan is on 10.0.6.x and the LAN vlan is on 10.0.7.x
homeassistant has a 6.x and 7.x address
Yeah that should be enough to prove connectivity between ha and device
and everything is on the /24 subnet
Odd. Well rule one then. Reboot it all
yeah its weird that ESPHome shows the devices as on but lovelace shows them as off.
i did try the reboot on homeassistant but not on proxmox yet
Ok rule two. Hit it
Usually does
๐คฆโโ๏ธ
wow
i guess just giving it some time sorted things out.. could have been something dns/dhcp related
Yeah. Or you had to assert dominance
i'm really looking forward to having homeassistant connected to my lan and vlan.
i'll be able to restrict internet access to the IOT vlan while retaining internet access to the LAN vlan
keep those pesky Chinese cameras away from all my lan goodies
Yeah. I like isolation and no internet for them
Thanks for the help
@green inlet corey schafer on youtube is great too
whew, finally got ALL the stuff from the old house to this new house
@hushed basalt I feel like I'm behind where I'm supposed to be at with automate the boring stuff so I might have to check out his videos next
There was a "project" at the end of one of the chapters that I wasn't even close to being able to do
I wouldn't bother reading the python docs they're quite dry
This was automate the boring stuff
But yeah, those docs are not n00b friendly lol
Nah they're pretty friendly
You could also try coursera.
Any particular points you're getting stuck on
This course will give you a full introduction into all of the core concepts in python. Follow along with the videos and you'll be a python programmer in no time!
โญ๏ธ Contents โญ
โจ๏ธ (0:00) Introduction
โจ๏ธ (1:45) Installing Python & PyCharm
โจ๏ธ (6:40) Setup & He...
Also I've heard good things about freecodecamp ^
I'm understanding everything to this point, but I was given a task at the end of one of the lessons that I couldn't figure out for the life of me lol
So understanding, but not able to apply things yet
Definitely gonna look at freecodecamp, thanks
The practice project at the bottom of this page is what I couldn't do. I could only get it to print the first list in a single column, not all three lists in three columns: https://automatetheboringstuff.com/chapter6/
Of course, I'd imagine that's not exactly devastating to my prospects of learning Python lol
i hate stuff like that ๐
Kids these days
Probably the sort of stuff you'd never do in real life
Like a puzzle more so than a real problem
yeah, us drivers are exceedingly stupid as a rule
I always see the weirdest car crashes when I drive in the US
add idiot tractor truck drivers to the mix and its a hot mess
My favourite country to drive in is probably the UK, the least favourite is France
i've head that germany is fun
Yeah, I haven't driven there yet, just been a passenger
i'd like to drive the nordschleife on a touristenfahrten one day
What's so fun about the UK
I have no idea what either of those are 
@hushed basalt scenery and food, I always take the back roads
helps if i get the spelling right
People are very polite in the UK which I like
@wet pilot oh the nurnburgring, though about renting the wife in for a few laps there
apparently more politeness in france outside of paris
No
Same with London. Everyone who's rude in London it's a 3/4 chance they're from Paris
yeah, want to bring the wife, she might rather watch though
gets a bit twitchy if i push things in a car
All French people are a pita, I often go to Grenoble and surrounding areas, they are still.... French 
Paris had pros and cons
It's annoying going to a busy area and getting hassled/watching for pick pocketers every 5 seconds
Speaking of Paris, this is hilarious
Same with Rome
My culture is pretty shocking
I was in Rome not too long ago
It was a beautiful city, but I donโt think I could live there ๐
watchin this Ronnie Chieng special on Netflix... actually laughing at a netflix comedy!
@wet pilot We've had US staff turned back at the Airport as they don't have a passport, even when warned :/
Didn't need it for internal flights, so why would they need it for international!
@clear ferry I find most people in the south of france (near the spanish border for instance) are pretty relaxed...
Thanks to LastPass for sponsoring this video. Click here to start using LastPass: https://lastpass.onelink.me/HzaM/2019Q4DecemberLinusTechTips
Can I run ALL of the work and gaming stations in my ENTIRE HOUSE off of one system?
Buy cables from Infinite Cables - https://www.i...
@echo tide haven't been that far south 
@strange vapor lol muuuuurica
Interesting, I haven't seen it in Norway, but saw it on Reddit ๐
@clear ferry
Although the "developers as seen by sysadmins" one should be a picture of a god.
I might be a sysadmin at heart
mngggh
when plex won't index a series
and you have tried renaming it five times
hmmm
Gotta say these days I feel an underlying annoyance/jealousy towards Linus
He gets all this cool free stuff/HAS MONEY
I should probably work on that
is not healthy
React is on my learning todo
Then I'll be able to hack my own radarr
With great power comes great procrastination
@clear ferry i think I have radarr and sonarr as agents in plex
And I have plex configured as connected destinations in radarr and sonarr
So radarr/sonarr tell plex when an item has been added to the library, and plex uses the metadata from radarr/sonarr to populate the metadata in Plex
@valid halo he's probably a see you next Tuesday though, I'll pick you
@hushed basalt interesting, I haven't done that yet
I'm pretty sure things show up in plex with metadata <1 minute after downloading this way
Although to be honest I don't watch the queues, most things download during the morning in my timezone
I need to look into that for sure
If I only could grow a beard
Hearing my mom whine about the Automated Verizon Phone system
I just want to laugh
It's been this way for a decade mom
and she always speaks so firmly at it. "PAY NOW."
she acts like it's the biggest hassle in the world
Hello, and welcome to MovieFone
Compiler could not compile code because git gud
Git Gud is not a proper command. Please try again
sudo !!
One of the IT guys at work was unconvinced that sudo is a good idea for security
I explained it's more for convenience than security lol
But if you have someone with physical access that wants to do something bad they'll figure out how
sudo give me cherry candies

You always have the best emoji lmao

Physical security is easy. Opening the case pulls the pin on a grenade. No computer no problem
I am very smart
๐
You should see some of the systems I have to access 
Using sudo logs the actual user who ran the command in the audit logs. If you're logged in as root, you lose that
Lol
Why is daily in quotes?? ๐ค ๐คจ
Because the slice it every day, just maybe the stuff you're getting is from last month ๐
Better than the fresh in quotes
But what if sliced was in quotes 
I guess it's mainly fat and salt after all
Grocery store I go to all the time had some screamin deals today. Bag of day-old Italian herb and garlic sub rolls for $0.25, container of potato salad for $0.69
holy motherino
I'm always surprised by the prices of food in the US
I would be so fat
The store is called "food 4 less" after all lol
But it's all good quality stuff
These sub rolls are amazing
this is a 0.3kg one probably
This will show you some prices over here
Oh. 1 NOK = 0.11 USD
that is why I'm giving you the prices in USD so you don't have to ๐คฃ
Makes sense lol
Eh, multiply by 10 and you're close
9 and you're basically spot on
relevant to your interests @clever mortar https://www.marsipancompagniet.no/my-product/1kg-julegris/
๐คค
yes.no
Excellent
ew, those are terrible prices
I'll take a picture for you next time I drive past Hell @scenic radish
Do any of you guys also serve those trays of crackers with various cured meats at parties? Because those are my favorite
I would buy one of those trays for myself
Party of one ๐
My kind of party ๐
mm, i like them too. most of my friends are more into cheese though ๐ฆ
You mean like "Snitter" @light trout ?
Snitter works, as long as there are not any other folk there ๐
Oh lawd have mercy
There are quite a lot of good french cheeses
but some are... just too smelly
Hmm haven't updated my media Docker images in 4 months
This is going to be a painful pull
I think I'm gonna watch that four hour Python tutorial tomorrow
Some "fun" on my day off
wut
Normal day in /r/idiotsincars
Yup
So, I've just learned that the HA Cast interface for the Nest Hub is interactive ๐ฎ
Title: "...51 injured, some critically"
Body: "Most injuries were minor and none wereย life-threatening..."
๐ค ๐คจ
Either way, scary stuff
Southern va doesn't get a lot of ice
Brb, gonna plug both ends of an Ethernet cable into my unmanaged switch
Lol ded
Pretty much
Proxmox or ESXI go!
Different use cases ยฏ\_(ใ)_/ยฏ
Any one paying for a VMUG membership? You find itโs worth it?
I've thought about buying another sff server and using proxmox on it for pfsense and management plane
WTF. Just got a notification that my Telco apparently has planned maintenance from 24/12 through to 02/01.
Better fucking not be without internet for my entire fucking holidays!
lmaoooooo
forcing you to spend time with family the scallywags
Depends how many Aussies there are in here. "Cunts" is a pretty Aussie saying ๐
๐ค ๐ค ๐ค ๐ค ๐ค ๐ค ๐ค ๐ค
I fixed it just for you
oh i don't mind, but i know tinkerer was a little upset when someone used that word lmao
i just meant in the scale of bad words i place that one higher than fuck
Context is key I guess
I generally only drop it around company that I know it wont bother, but it slips out sometimes lol
I don't want to offend anyone
i think it's hilarious
These automatic blinds look interesting
Not sure where the winder is
Other side
Must be internal
tmw you drilled holes ~16" apart, the stud finder said there was a stud, and it kinda sounded like it too... only to find it is somehow an odd false positive (100% accuracy) and the studs are actually 20" apart...
Hi is anyone on
I was wondering how hard it would be to build this and an estimate of the costs for a queen size frame?
This is an idea of one frame
I would check the build materials list for that instruction
Cost would just be those length of lumbers, hardware and sealants etc
Very location dependant
It probably wouldn't be cheaper than a generic ikea frame but would be a lot stronger
My guess is it needs to be anchored to the wall as well
Or be extremely heavy
Otherwise it'll tip when you sit on the end
Yea ty for the help, i would just get an ikea one but i cant find any
Yeah not like that. Definitely a custom build
Looks like very simple joins so you could do it all with a drop saw
Just don't use treated pine indoors
Ok i dont have any equipment but my dad does so he will probly help me lol
Also to be honest that doesn't look supportive enough for me
The mattress area that is
It depends on the type of mattress. But you might find that certain mattresses will sink between the gaps
And therefore not be as supportive for you in those areas
Unless you had extra slats laid on top. Which adds cost.
Well would i be able to add a boxspring on top do u think then the mattress
Or would it be too much
Seems like they add slats later
To be honest it seems quite an expensive frame in terms of materials
The floating style will cost you a fair bit more because it has to be over engineered
The 4 legs i dont mind i just want something to add lights underneath
But i need to find one that can do boxspring and mattress on top
Don't boxsprings go directly on the ground. With just simple legs/castors
Idk mine is on top of a cheap metal frame then mattress on top of boxspring
Like that?
You probably could afford to have the floating style with lighter construction
Because the bottom part that is on the ground can be a lot further out
Yea pretty much i just want a wood kind of frame
Cause the metal frame looks ghetto
I mean i could just do it with this frame and put led strips underneath but idk
The upholstery is badly done but this is basically what you want
Or raw OSB if that's your style
Yea thats pretty much what i want
And my comforter will be hanging down over it a bit
If you want a headboard you can just find any generic headboard design
Or even buy one second hand
So is there frames similar to that premade
Probably not
Maybe etsy
Anyway you've got enough to go off. May the force of Google be with you ;)
So thats just floating bed just a better frame than the first one i showed?
Ok i see i just opened the link, i wonder how much it cost lol
I think if you sign up and download the pdf
They might have details in there
It depends on how much lumber costs where you live
Ok imma check it out, the side walls just look so big but i guess u need it if u have a box spring
https://www.instructables.com/id/GroundFX-Bed/ i guess this one work better since its skinnier
i just wonder how he uses it with boxspring and a mattress without it falling over lol
The side walls
Are just osb or plywood boards
They're not structural so you don't even need them
Or you can make them smaller
ok
it said 2x10x5 wood lol does that even exist
maybe he cut it to size?
i tried to click on the first bed u linked me but the pdf file doesnt work on that
i need to get a proper multi-meter, kinda tempted to get the 121GW Multimeter from eev blog
I've survived with $10 multimeter for the last 20 years ๐
yeah, I just find them annoying, also the 121GW one has bluetooth capablities i kinda want to mess arround with and make a small UI for accessing
Appears to be snowing in my home town
6,526 Likes, 202 Comments - Tromsรธ, Norway ๐ (@tromsolove) on Instagram: โMain Street of Tromsรธ, Norway. ๐๐ณ๐ด
#tromsoloveโ
This is the snow we normally have... When it snows
BBQ weather
Our winter is being annoyingly warm at the moment
goes to look at last years temps
Yeah, last years winters lows never really got about 5C, but this year we are surpassing that, its currently at 6c
Surely thatโs comfortable for you?
i like the cold tho
it means i can wear big coats, but in this weather i can be OK going outside in a t-shirt and jeans, my fall clothing
Iโm in warm clothes at 10C lol
I just noticed something intresting
My data only goes back to 2016, but it does normally palatue at 5c
the climbing this year is odd though
Was easy to spot me in Barcelona in December 2016
I was wearing shorts
While the locals were wearing Canada goose and hats and scarfs
It was 19c after all

Get your kites ready
Ws2811 ready for next year 
12v?
5v
weak
Indeed, but I already have 5v PSUs and the lengths will not be extreme
heh i just bought a pack of battery operated motion sensor lights and put one under the bed... works great... $3 and done
Anyone using wled segments ?
dale was playing with them the other day
I don't know if he's actually using them though
They are super cool but some edits wipe the segments, wondering if it's me or a bug.
I'm waiting on an enclosure and some buck converters
then I'll have the stuff to finish my project
if it wasn't going outside, I'd just print something
I'm just using a 2-gang outdoor box with some cable glands
I got a 2A 12V switchmode supply that'll fit in half a single gang box
Nice.
should be more than enough juice to drive my 16 segments
I am going to convert all mine to 24v, found a source in China.
for strips?
Strings and pucks
still 5V control?
neat
I don't have any landscaping lighting yet
trying to get my grass right first ๐
Well that's a task as always. Keeping the same color. Lol
Little disappointed with rainmachine on my 2nd unit now.
got into reel mowing last year
totally different world
I haven't had any issues with my opensprinklerpi
what have you had go wrong with your rainmachine?
1st was a boot loop but customer service was super up front replacement but couldn't restore the backup. 2nd is the adaptive skip, soil water retention algorithm is not great. So manually setting retention numbers.
I've got none of that fancy stuff
๐ You can mix weather forecasting services in rainmachine but I need https://cimis.water.ca.gov/ to take precedence, since that weather station is pretty close to me. Still waiting for that implementation.
I gotta figure out something to replace my dash buttons with
I have a so many ๐ฆ Using minimotes now
too bad nobody's figured out how to install custom firmware on the new version
sucks because the form factor of the amazon button is perfect
If you find a solution let me know. I think I have about 30 of them
some guys figured out a hack but it won't work if they've ever had their firmware updated
there's a bunch of stuff to be found in the issues on this repo
someone successfully was able to deadend the request to amazon without the button resetting itself
I am running that in docker. But don't know what to do with unopened ones.
dude... < && > around links please <http....> ๐
the channel used to automatically kill the preview
Thanks for the tip. So 1700 clicks per button ๐
This is the only channel excempted from that rule
@last dirge found anything to add buttons that are not already linked?
yeah, look at the bottom of that issue in the second link I posted
It smells amazing in my kitchen rn
any alternatives to Amazon Dash? I'm looking for similar functionality, but this notice has me a little worried:
WARNING: Your Amazon-dash buttons can be bricked after December 31st. Go to section 5 to read more.
@last dirge going to try to the audio exploit today. Will keep you posted. Thanks. Simply amazing work buy Hunz
I have 3 I use regularly
they've probably had firmware updated though
I've got a bunch in a box that I may be able to exploit
Me too, still in boxes, this gives much hope.
I think the biggest thing is keeping it from contacting the firmware update endpoint so it doesn't update itself
I use Dasher, not the repo I linked
Going to put on a restricted vlan from get go
I should probably do that too
I don't really have a setup that lends itself to that though
I could throw them on a guest network I guess
I don't have a restricted AP
IOT vlan for all esp, camera, etc
I should probably do that
my cameras are PoE
I had routing problems with my NVR not being able to contact them when I stuck them on another VLAN
I still use same vlan for poe. Restricted
and if I stuck the NVR on the VLAN then hass couldn't see the cameras
you will have to tweak the rules a bit. My cameras can only hit Synology IP specifically.
the cameras don't ever hit the internet so I don't really care ๐
do you use syno surveillance station?
Yes
I have one dedicated for cameras
My router doesn't support VLANs so I just have certain devices restricted to LAN only
Figured it's a step in the right direction at least
My favorite
Been thinking of getting an edgerouter x
well; aside from that notice (I admit, I had some trouble finding section 5 on first perusal), I'd prefer not to have to block network traffic to use a button. So anyway, seems like the best option would be an Ikea Trรคdfri or Xoaimi Aqara. Only downside is the Zigbee Hub I'd need to buy along with it
thanks for the help.
so you'd rather spend a few hundo than block network traffic from specific devices?
You can do it pretty easy by groups
@echo tide zigbee2mqtt, then you have no proprietary gateways to be afraid of
cool; just stumbled across it myself, looks like I have a new project to add to the list ๐
I frankly don't care what my devices send home, but I should probably restrict them when I have time
it's necessary in this case because if the button contacts Amazon then Amazon will push firmware to brick it
kinda shitty that they just didn't stop supporting them and they instead chose to brick them
seems like there's a good idea for a kickstarter there... if you can produce it cheaply; the FLIC is way too expensive...
@last dirge not a problem here since neither Amazon nor dash is a thing ๐
@echo tide if you are talking about zigbee2mqtt there are already options where they are sold pre flashed and in cases, but that is a discussion for #zigbee-archived
actually; talking about just a standalone button that you can configure to connect to your MQTT server over wifi; without the need for any hub...
mqtt would be the hub at that point
that's true ๐
๐
Guys I've just started purchasing components for my newly smart home:
I've bought 4 Mi Smart RGB Bulbs for 40โฌ total with some coupon fuckery on the Mi Store
I've purchased three Google Home Minis
Now, all I need is to buy the raspberry pi to run home automation (not a problem) and some sensors.
I originally wanted to purchase this kit https://www.amazon.it/Xiaomi-Telecomando-della-commutatore-Bianco/dp/B07KXN6S74
But I can't figure out if Home Assistant could support the gateway natively or if it needs a zigbee2mqtt dongle.
In that case, I would purchase that and the sensors separately.
Can somebody help me figure this out? Also, could somebody point me to a website with relatively rapid shipping that sells the individual sensors
Well home assistant is off topic here so #330944238910963714 or maybe #zigbee-archived would be a better spot
Oh sorry I used this channel a couple of days ago to get purchase advice so I figured I'd post here again
Thanks, I will post there instead
I am on a budget and looking for a decent router anyone have any recommendation? I am in the US if that makes a difference.
whats the maximum you can spend and what features do you need
I would say about $150 and honestly I am not sure what features I need
obviously I would love the ability to setup things like separate vlans and things of that nature
but it is not necessary
I have thought about AmpliFi by Ubiquiti https://www.amazon.com/dp/B01L9O07FS/ref=twister_B07F7W95VK?_encoding=UTF8&psc=1
does it need a built in WAP?
yes
but I have some holdups with AmpliFi if I buy the system without the mess points it is really hard to find the mesh points separate if I need them and I have heard that as a kit the mesh points are hard bond the the router
Also when looking at other routers it is hard to tell if it will have the basic management features I would like
if you need the built in WAP you tend to give up a lot of the enterprisy features
Yeah I figured. I can live without most enterprise features
do you know of any router and wap system that would fit my budget?
not something i've looked in to recently
i run a split system right now. dedicated router with external wap
Just out of curiosity what do you use?
ubnt LR3
Lol I could've guessed that. I have worked with that in the past and it's great. It's just not worth the money for my current situation
i haven't really done anything with it yet but its on the list
still have dumb switches everywhere
once i start getting managed switches in place i'll start vlaning
yeah i just started changing to managed switches as well
at the bare minimum it at least helps my find where things are going wrong
i have a 24p gigabit cisco sitting on a shelf but i haven't done anything with it because its too damn loud ๐
and as of late it is all going wrong at my AT&T provided shitbox router
lol yeah you need to put that in a sound proofed room just to keep your sanity
oh i bypassed that as soon as they set it up
Yeah I should've done the same thing but here we are
set it up for passthrough and never looked back
On slight thing though apparently the specific router and firmware has issues with passthrough just well not working at all
so I have a tech coming out and probably replacing the gateway which I will then immediately be connecting my own router
Hm.... so I just looked into Unifi more and I found I could get an edge router x for $60 and an ap for $80
Might have to do that
Anyone else here run a similar setup?
That's what I have. I'd make sure the AP of choice isn't on the EOL list
ERX doesn't have the fancy graphics from USG
@fallow galleon do you know where to find this eol list?
https://www.reddit.com/r/Ubiquiti/comments/ed0a2p/announcement_eol_for_some_unifi_ap_models/
new ones should be fine, but just make sure
Oh dang that is new. Thanks for the heads up. What ap do you use? and are you just using the Edgerouter x with 4 out port
My UAP-PRO is old and on that list. Something I got from work.
I don't use the integrated switch. I have another 16 port switch.
out of curiosity what switch do you use?
๐ not something I'm proud of. A Zyxel, but that's all I could found for relatively cheap at that time
ZyXEL๐คข
never heard of the why are they ๐คข
They have been around for 25 years or more
They used to make really shitty products
I haven't touched them in 10 years probably
1989 actually, older than I though
need VLAN so a managed switch. iirc that's all I can find <$100
yeah from what i found for 16 ports that is probably all you can find
I'm probably outside the norm as I run a pair of HPE 5900AF in my core and a few Aruba 2530 as distribution ๐
Yeah that's not really a consumer setup lol barely even a prosumer setup
Having more than 1 layer, yea lol
I think the 5900 retail for $40000 each 
Or did atleast
No, that was actually a bundle price for two I think
I mean I tried looking at the website and it just says Get Quote so yeah the price is probably up there
May I ask a question @clear ferry
work only gave me UAP-PRO and patch panel.....๐
The Aruba's are only $600 each though
Why do you have such an enterprise setup in your home?
Because I work with stuff like this
So I lab at home
I have a RX6600 also, that was probably close to $100000 new
ah makes sense. I was really disappointed. My work moved offices and I got some old equipment like a half decent netgear NAS but sadly no networking equipment we pretty much used it all at the new place or the old stuff just didn't work anymore
And when Im mostly the only one in country, or region who works with the products it's good to be able to lab at home
very true now you have me interested who do you work for?
if you don't want to say I understand
You should be able to tell by the products ๐
HP?
Well, you are almost right
well HPE or whatever their enterprise business is
Yes, don't call me a pc and printer pleb ๐
lol I mean with your network setup I don't think anyone would
Makes a lot more sense on why you have an overkill setup for most homes
You probably have a better setup than most small to medium sized businesses
Most small to medium businesses have no real networking whatsoever
Real networking?
The have a LAN they can communicate over, and cacn access the internet, what more do you need?
I have more physical servers than many customers I visit ๐
Like a central data server, properly established DHCP, likely piss-poor wifi security
WEP all the way ๐
No WEP is even too hard lets just make it no password
At this point WEP and no password are mostly the same
They've been mostly the same for longer than I care to remember
I mean, hell, WPA hasn't been much better than WEP for long enough
I mean the other difference is 5 seconds
for both entering a password and how much longer it takes to get through
Not going to lie I haven't seen many WEP networks around me lately
So, you can save 5 seconds of typing a password by spending the 5 seconds to break it ๐ค
I've seen WEP, it's not terribly common, but it's out there
WPA is still pretty common too
Yeah I see that all over
as much as I crap on AT&T and other isp's in the US one good thing they have done is basically made WPA2 required on their routers
or at the very least the default and people don't even bother to change it
Much the same here - and the default passwords are no longer password or the MAC address of the access point
yeah mine not only had a rando password, it has a config access password as well (also rando)
yeah that was probably the best thing they could've done. Also they lock their routers down more with a separate "access code" that is needed to change major settings that would open security holes
^ yeah that
but... the ATT NAT routing blowwwws.. and port forwarding basically causes you to basically DOS yourself
so i had to passthrough to my own router
No joke I think I just did that to myself the other day! Still not sure but I have had so many issues the past couple days
the best part is AT&T says it is the "wiring"
i hate ISPs with a passion
And I am just like nope it's your crappy router/modem
And same, especially since I basically have 2 choices for the same exact service
only difference one is slightly faster the other actually has customer service
yeah, you can see in the NAT table all forwarded routes end up sitting on ... i wanna say an SYN_ACK? Which is what you want when you are trying to DOS someone
also, i had to use CTF to get CLOSE to gigabit speeds, which breaks NAT loopback "per spec"
I don't follow what did you do to get close to gigabit speeds?
so, on my router, i flashed with Tomato
it has the CTF feature built in
which is like a hacky NAT transfer that's significantly faster by ignoring some features/functionality and other optimizations
In computer networking, cut-through switching, also called cut-through forwarding is a method for packet switching systems, wherein the switch starts forwarding a frame (or packet) before the whole frame has been received, normally as soon as the destination address is proces...
ah that makes sense, so basically its cheatcode
hehe yeah
so far the only negative side effect is you can't access your own network via port forwards, you have to access directly
so if i have codex.com:4567 forwarded to .15:8888, i have to access .15:8888 directly, but the outside world can use the previous
oh ok makes sense
what router do you use with tomato heard a bit about it but never looked into it much
would you recommend for someone that doesn't mind configuring it but then just wants to leave it alone?
I use the Netgear AC1900
What are your thoughts on Tomato?
i like it, it's basically just ARM linux preconfigured with a bunch of networking tools
Yeah the more I look into it the more I like
i like how any device it works on, it's consistent
Yeah it also look a lot more straight forward to use especially compared to AT&T's shitty firmware
my literal favorite feature is renaming devices, and 2nd favorite is realtime bandwidth monitoring (although i don't use that one much anymore on gigabit)
lol I understand that I hate plugging something in like a pi and having to guess what the ip is from the list of devices that are say unknown
I got close to gigabit by putting the ATT router in passthrough
i couldn't top 350mbit without CTF
@last dirge @steel urchin what are your speeds ATT says you should be getting on your bill? I am interested because the highest tier they offer me is 50mbps
gigabit up/down
i get on average 970-980
I forgot some stuff I turned off or disabled on my edgerouter
lol yeah i'm just sol I guess they do offer me one other tier! 5mbps for $20 more
yeah i'm on 70+10/mo for 12mo,t hen i think it goes back up to 100 which is their nationwide pricing
I think I've got traffic monitoring on on my edgerouter
no, that's off
ATT re-flashed my modem a while back and screwed with some of my settings
it's been kinda goofy since then
yeah i was doign a lot of research and apparently ATT routers are generally garbage
for the record, CTF/gigabit speeds are only for NAT transfers... no-nat (same subnet) will get gigabit speeds just fine
lol wow yeah i pay like $80 too but again for only 50megs
ok.. finally got around to installing my first smart swtich.. GE ZWave, but it flickers at highest setting... is this a bulb issue?
typically
how annoying
any input on what i need to look for? It's just 2 lights in this situation, but I know the rest of the lights are the exact same and i have 7 switches to install
they're incandescing bulbs... not led
i thought they were all dimmable
hm, i'm not sure then
is it a 60hz flicker?
i haven't tried incandescent bulbs on mine. only LED
actually, that's not true. Had 2 can lights, they worked fine though
ok i lied, it's actually LED, they just look so damn much like incandescent
says dimmable
not all bulbs are created equally
well so far both are doing it :S really annoying
led bulbs are defintely one of those "you get what you pay for" items
modern problems require modern solutions ๐ค
yeah just not sure how to set the max yet
i can't find a clear answer
also, the damn thing isn't showing up in alexa through the alarm.com integration, but i remove/re-add the outlet switch we have and it gets it just fine
i handle it buy using double-tap events
yeah i know nothing about that yet
i'm literally just diving into this... been trying to read up on what i can, but not quite there yet
#zwave-archived for more, but those ge dimmers support doubletap events
yeah i'll jump on that in a bit.. right now i'm irritated alarm.com and my iq panel both see the new switch and control it fine, but alexa does not
ok this is so stupid
in the app i've told it to scan for new devices like 6 times now
i just said "Alexa, scan for new devices" and within seconds it found it
yeah just trying to transition the wifey slowly.... rght now she loves the alexa stuff, but i know as i switch over to HA i'm going to have to refigure that out
i'm sure it's similar, with a skill
hmm... now i'm noticing one light turns on before the other
if i slowly fade it, one will be on, the other won't
aww yiss
now I just need it to stop raining for a while so I can install stuff
no comments on my crappy li'l enclosure?
you should have proper backplanes
with standouts that are theaded
no ground screw for isolation
no vents
won't have vents, it's a sealed enclosure
housing is plastic, ground terminal wouldn't do anything
allows for term's
I have to figure out something for mounting
doesn't have to ๐
it's got a plug on the other end
companies are REALLY proud of their waterproof enclosures that are that size
a 2-gang sized box is like $30
yep
well if you got a propoer encloser from hoffman it would have a backplane and grounding and be waterproof nema6 ...put hunderds not 10's ๐คฃ
well.. i'm irritated.... guess i'm going to start drinking
this damn flickering is so weird... only happens from the switch, alarm.com/alexa don't exhibit any flickering
drink more and you ill never notice
i'm new to this whole home automation thing... smart switches are expensive ๐
yes, they are
another annoying thing is i tell alexa to turn on dining room lights, and the roborock turns on... it's not listed as a light, it's listed as "other" yet still does it
i hate technology
(says the guy who works in it)
you might need to step back a little and regroup ....
i think you're right
did you guys go one-by-one on smart light switches? or just drop a lot on em? i guess i don't need all the light switches in my house to be smart
you mean regroup my thoughts, or regroup areas in alexa app? ๐คฃ
for better or worse, i bought a ton at once because they were on mad sale a few weeks ago
i got 15 total
what kind?
GE Enbrighten, z-wave
but i just installed my first one like 20 min ago and have annoying flickering, so don't quite listen to me ๐ค
i dont use alexa groups ....i would make sure things work indviual then start down th group path ....as far as teh light flicking ....start with manually turning on switch ....if that a problem ...then bulb/switch
led bulbs come in dimmable and non dimable
if i turn on via switch, it flickers, and one light turns on before the other.... via zwave it's simultaneous without flicker
https://www.build.com/fibaro-fgms-001/s1141429?uid=2733276 is this the eye of sauron?
yeah this one is dimmable
is what i have
lol i saw those @midnight adder and noped out
that's a trip
@wild lark but the bulb i have isn't on the QVL that Jasco has out... although that's not the end-all be-all, it may be the issue ๐คทโโ๏ธ
i dont use zwave but i would imagine its just tuning on the switch via protrocal ....so should be same manual vs smart
that's how i feel about it as well, but it's definitely a different experience
I'd strongly recommend getting RF stuff
Z-wave, zigbee
and I'd also strongly recommend using stuff that reverts to "dumb" if your controller goes offline
ie: the switch on the wall still controls the lights
@steel urchin I think you mentioned the wrong guy ๐
VasileyToday at 3:52 PM
led bulbs come in dimmable and non dimable
aww yisss
ohhhhh
single vision?
i see it now lol
is there an alternative to a ring video doorbell?
yes
where's the best place to look for these? it's hard, knowing almost nothing about these products, to jump in and find good ones. looking at the home assistant integrations page is also a little overwhelming ๐
๐ค Folks, we've found the surviving Cyclops...
X_O Nemo really did a number on me.
@midnight adder mind if I dm?
sure
was soldering something earlier
๐ด
looked up at something two feet away
my eyes were like "hold on, gimme a second"
probably got 2 or so years before I'll need bifocals
booooo
i thought for a very long time that i had perfect eyesight, and it turns out that i do not in fact have perfect eyesight
according to my audiologist I have perfect hearing
I also have ringing in my ears
also, she was fitting me for special hearing aids when she told me that
so grain of salt, I guess
they play white noise in my head constantly ๐
i don't have great hearing - my music was always at full volume
years of bands and concerts took its toll
it's supposed to lessen my brain's recognition of my ringing after a while
and hopefully I'll be able to stop wearing them in 18-24 months
I have perfect hearing, and I've always listened to metal and prog rock at 11, no idea why I don't have tinnitus๐
neuroplasticity FTW
My wife sent me to an ear doctor because she said I never could hear her
Turns out I just had selective hearing
I hear like a 25 year old, and im 35 ๐
That's called marriage ๐
these hearing aids are also bluetooth headphones
pretty friggin sweet little devices ๐
We have been together for 20 years, guess I just filter out white noise ๐
????
Is this a problem any of you ever had
Your cat stealing sausages from your refrigerator
do you not?
is there anyone in the world that just puts food onto fridge shelves in the open?
๐ญ
Continue Poppy!
@hushed basalt watched that Python vid you mentioned. Definitely was useful, I was able to follow along and do some things before he showed how to do them
I watched it at 1.5x speed to cut it down from 4.5 hours to 3 hours
big brain
๐โโ๏ธ
Sometimes I'll have 2-3 watching at 2x and wifey is like "how the hell do you do that?" And I tell her "there's a lot of dumb useless shit in-between the informative parts
I kept forgetting I was playing it at a higher speed and thought "how is he typing so fast, damn" a few times
It depends on the content too
Sometimes you don't absorb it and then have to watch it again too
1.5x / 2 = 0.75x overall :D
Very true
never had that problem ๐
Someone up above said getting old sucks
too true mate
I gew old
and now I have FUCKING glaucoma
take meds 9 times a day
@tidal bronze did you do an ambilight thing with those strips on the sides of your TV or are they just to backlight it?
@valid halo toke up
MJ helping Glaucoma is a urban legend from the research I've seen
uses 100$ eyedrops instead
@last dirge single strip running wled with 4 segments. 2 x vertical FIRE and top red breath and bottom yellow breath
okay, so not related to what's displayed on the monitor
what controller are you using?
nodemcu and no, not ambilight. HDMI pass thru is too much brew-ha-ha
so apparently a lot of Great Value bulbs are "compatible" with the GE switches, and the wifey was at walmart getting some cleaning supplies and grabbed a pack... we'll see how it goes
getting old does suck huh? ๐
jk i'm old, too
but... no GV (walmart) bulbs have a lot of compatible models with the GE Enbrighten switches
i was just referencing the flickering some ofus were talking about earlier
the only flickering I ran into was on a leviton dimmer
none of my GE/Jasco stuff has had any problems regardless of how many devices on the circuit
or how shitty the bulb quality is ๐
hmm well i tried 3 different GE switches and they all did it, so i'm ruling the switch out
there's literally only 2 bulbs on the load line, it doesn't go off to anything else
meh, either way... $5 and a few hours i'll have it in hand to test
switches or dimmers?
dimmers
sorry i said switches, my brain hasn't made the distinguishment because I think "who would just want a switch when you can dim?
i'm losing my damn mind right now... i can access a VM on a specific port via http, but not via RCON (ark) via localhost... but i can access that same port remotely just fine ๐ค
firewall and antivirus disabled, fresh install otherwise... totally stumped heh
Draw a map
@steel urchin
Rubber duck your set up
9/10 times you'll figure out your mistake there
i mean, it's a modem/router pos that ATT gives me, MY router, and my laptop
not much of a map
i think it's this double NAT'ing that this shitty modem enforces on me
There's still plenty to draw
Draw your interfaces, the subnets, the external and externally ports and make sure they line up
i'm just trying to access localhost at this point... port is accessible through every service i try except ARK's RCON
Your ISP modem should be bridged though
doesn't have a bridge
What's the model
bgw210-700
you know.. i've written network protocols that the world literally runs on, but i can't figure this stupid router out
i've it set up as an IP passthrough
which is garbage
Can you buy another city
i wish
Can you buy ATT and make them change it
for the record, wifey just got home with the Great Value bulbs, and they work fantastic
only issue is we have 3k temp in the entire house, and these are 2700
this network issue i feel is something to do with win10 store apps
but it's driving me bonkers
Any recommendations for smart plugs?
i have a single one i got free with a tech package for the house... it's zwave, which i like, but i think in the future i'd rather change the outlet itself for a smart outlet rather than a plug... it's kinda tacky looking imo
It's not visible but I agree
do you have existing tech? i'm trying to stick 100% zwave
I'm 100% wifi
I have to get some mqtt stuff at some point but for now wifi
I have a few ubiquiti WAPs so my coverage is bomb af and it works really reliably
I've run out of things to automate ๐ฑ
you clearly haven't tried
Name something. Anything.
Have your heat turn up when the stock market is doing well, have your curtains go down if someone walks by our house, reset the thermostats after a minute if someone manually changes them, make a doorsalseman detector based on your and your neighbours rf doorbells
@hidden laurel What WAPs do you use?
Sensible ideas then.
C:\Windows\system32>netstat -anobq|find "4200" TCP 0.0.0.0:42000 0.0.0.0:0 LISTENING 6316
Driving me crazy... WHY WON'T YOU ANSWER!?
UDP?
no, it's tcp



