What's new

Question - How Does Wireless Log determine Connected time?

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Sorry, I don't know anything at all about the new VLAN routers. Maybe brctl show might show something.
Here is brctl show output — i find it strange that br53/br54/br55 bridge names don't match eth0.52/eth0.53/eth0.54 interface names.
Code:
brctl show
bridge name    bridge id        STP enabled    interfaces
br0        8000.107c61af7668    no        eth0
                            eth1
                            eth2
                            eth3
                            tap22
                            wds0.0.1.0
                            wds3.0.1.0
                            wl0.0
                            wl1.0
                            wl1.4
                            wl2.0
                            wl3.0
                            wl3.4
br53        8000.927c61af7669    no        eth0.52
                            eth1.52
                            eth2.52
                            eth3.52
                            wds0.0.1.52
                            wds3.0.1.52
                            wl0.52
                            wl1.52
                            wl2.52
                            wl3.1
                            wl3.52
br54        8000.7a7c61af766d    no        eth0.53
                            eth1.53
                            eth2.53
                            eth3.53
                            wds0.0.1.53
                            wds3.0.1.53
                            wl0.1
                            wl0.53
                            wl1.53
                            wl2.53
                            wl3.53
br55        8000.927c61af766a    no        eth0.54
                            eth1.54
                            eth2.54
                            eth3.54
                            wds0.0.1.54
                            wds3.0.1.54
                            wl0.2
                            wl0.54
                            wl1.54
                            wl2.1
                            wl2.54
                            wl3.2
                            wl3.54
 
VLANs are tags applied to network interfaces. You still need to go with the virtual network interfaces, like wl0.54 in this case.
 
VLANs are tags applied to network interfaces. You still need to go with the virtual network interfaces, like wl0.54 in this case.
I am continuing to hit a wall here...

So we were able to find the vlan tags in nvram here:
Code:
apg_ifnames=br53 br54 br55

And found these corresponding vlan-tag nvram variables that show all the virtual network interfaces in use
Code:
apg_br53_fh_wlifnames=wl0.52 wl1.52 wl2.52 wl3.52
apg_br54_fh_wlifnames=wl0.53 wl1.53 wl2.53 wl3.53
apg_br55_fh_wlifnames=wl0.54 wl1.54 wl2.54 wl3.54

However, if you enumerate any of these "wl0.52", "wl2.53", etc... interfaces with the wl command, they're coming back with:

wl: wl driver adapter not found

@RMerlin, any other thoughts on how to pull wl-related connection data from wireless clients attached to these virtual network interfaces? I appreciate your insight on this...
 
@RMerlin, any other thoughts on how to pull wl-related connection data from wireless clients attached to these virtual network interfaces? I appreciate your insight on this..
Dunno, you would have to dig through nvrams. I use a closed source function in libshared (get_apg_vid_by_ifname(char *ifname) ).
 
Dunno, you would have to dig through nvrams. I use a closed source function in libshared (get_apg_vid_by_ifname(char *ifname) ).
I thought I was on the right path when everything started lining up like that... ugh. Will keep searching... thank you!
 
Last edited:

Similar threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top