Bryton Hall
Bryton Hall
Hm, I'm hoping for an approach with fewer to no (extra) requirements of the devices on the network. I found `/click/arp_table/table` but it seems to have surprisingly few entries (4,...
> Maybe you know something I don't, but how do you associate a MAC address to a port? Oh, I have no idea :grin: I'm just poking around to see...
Added functionality to set the `pvid` and `allowed_vlans`. Is there any documentation on this `/click` filesystem interface? Just sort of poking through what you already have to see what works....
Nice find! I would never have guessed `aneg` (even though that's what's shown in `/click/switch_port_table/dump_port_phy_cfgs`). I added port enable/disable functionality and a forced link speed setting (where `0` reverts to...
I like the idea of storing everything in a single JSON file. I agree with @mterron, that it should always have all of the ports (perhaps generated by https://github.com/halmartin/meraki-builder/blob/master/buildroot/board/meraki/ms220/overlay/bin/switch_status on...
@mterron, what sort of querying do you have in mind? I don't think mixing them will be an issue when it comes to the UI but I could see an...
Ah, OK -- you're thinking one level higher than I am. Specifically, the data on disk (what this issue is about) doesn't need to match the API request/response body (what...
Yeah, what you're saying makes sense. I'm thinking about it from the point of the UI or daemon. For example, if the daemon starts and the config file doesn't exist,...
Yep, we're largely on the same page. The status portion is pretty straightforward and I think we have a decent idea about the config parts as well (would be nice...
`lacp` needs more info, correct? Best I can find, enabling link aggregation is done with ```bash echo "AGGR 5, MEMBERS '1,3'" > /click/switch_port_table/add_link_aggr ``` If I'm understanding this correctly, that...