Ultimately I'd like to create a 'Family Safe' setup for the kids and maybe even restrict it to certain times.Any help or advice on what to do or where to look with regards to configuring Sensei for info on this would be great.
Is there a way to have Sensei not block when I'm connected to one of my VLAN's?
Quote from: Dayve on August 21, 2020, 07:02:04 pmIs there a way to have Sensei not block when I'm connected to one of my VLAN's?Yes you can use Exempted VLANs & Networks
3 if (strpos(strtolower($interface), "vmx") !== false && strpos(strtolower($interface), "vlan") == false) { 74 $filterflag = true; 75 }
if (strpos(strtolower($interface), "lagg") !== false && strpos(strtolower($interface), "vlan") == false) { $filterflag = true; } if (strpos(strtolower($interface), "vmx") !== false && strpos(strtolower($interface), "vlan") == false) { $filterflag = true;
I installed the test kernel. The only interface I have selected in the UI is the LAN.Code: [Select] if (strpos(strtolower($interface), "lagg") !== false && strpos(strtolower($interface), "vlan") == false) { $filterflag = true; } if (strpos(strtolower($interface), "vmx") !== false && strpos(strtolower($interface), "vlan") == false) { $filterflag = true;This is what I see in the ToolsController.phpNot sure which one would be my VLAN20 and do I just edit the "$filterflag" to be false?