E3000 - Trying to save my children from too much brainwashing

Hi all,
I find my kids are spending more and more time using their connected devices late at night and would like to regulate this through the router. I've had reasonable talks with them before deciding to move on to this next step, please don't answer that I haven't tried talking to my kids - I have.
Anyway, I tried using the Access Restrictions but Facebook Messenger ignores my rules and my kids continue chatting into the night. So I was wondering if there was an option to shut down completely Wireless from 10pm to 7am or something? Or if I'm better off buying a timer that I would plug between the wall and my router.
I guess another option would be to install DD-WRT?
Thanks for your replies!
Ferris

There is an Internet Access schedule feature in the E3000 but it's not easy to configure.
Instructions:
Go into "Status => Local Network => DHCP Client Table" when all the device you are concerned about are connected and record their MAC Addresses
The into "Access Restrictions => Internet Access Policy"
Enter a Enter Policy Name
Change status to enabled
Click edit list to add up to 10 MAC addresses
Save settings
Click deny
Set the schedule you want those device to not have Internet access
Save settings
Please remember to Kudo those that help you.
Linksys
Communities Technical Support

Similar Messages

  • I am trying to save a picture from facebook to my ipad and the message tells me to allow in my camera roll settings .... I have zero clue where that is

    I am trying to save a picture from my facebook page to my ipad and the message i am getting is
    "To save this photo to your camera roll, please allow photo access in your iPad settings"  I have looked everywhere for this setting and can not locate

    Check Settings > Privacy > Photos
    Do you have a FaceBook item there that needs to be set "On"?

  • Mavericks crashes finder us in all adobe cc products when trying to save or import from finder. Is there an update to fix this yet???

    Mavericks crashes finder us in all adobe cc products when trying to save or import from finder. Is there an update to fix this yet???

    The first attempt is a FAIL. It did NOT fix my issues:
    Still working on 1% efficiency mode. CRIPES!!!!

  • Error when trying to save still image from video with Quicktime Pro

    I just purchased Quicktime Pro so that I can use it with my new Nano (the one that shoots video). I want to grab a frame from the video and create a still image (in jpeg format). I should be able to do it, but when I try, I get an error 11005 (or something like that). Anyone know any way to fix this? Thanks!

    I also tried the alt/ctrl/shift buttons when clicking Editor in the Photoshop welcome screen. It did ask if I wanted to reset the preferences. I chose yes. I still get the same error message when trying to save for web.
    Below....showing I don't have a "save for web" folder on my C drive.
    And below, showing the same error after pressing alt/shift/ctrl when clicking on editor and clearing the preferences.
    I don't have a 'Save for Web' folder anywhere on my C: drive. I searched and came up with no folder with the text "save for web" in it.
    I did find a "save for web" folder on my D: drive and deleted that.. but now when I start up Photoshop, the option for Save for Web is grayed out...not able to select it.

  • Explorer stalls when trying to save while disconnected from VPN

    I use a VPN to access work files at home with a mapped network drive. Because it limits bandwidth, I keep it disconnected most of the time. However,
    anytime the VPN is disconnected and I try to save a file in Office, or attach a file on Windows Mail, it freezes explorer until I reconnect the VPN even if the last save spot wasn't on the mapped network drive. For whatever reason, since it is a recent save
    location, Windows can't function properly until I'm reconnected to the drive even if I don't intend to save to it. Is there a way to disable windows mail and word from trying to find the disconnected mapped drive and freezing up until I reconnect? It is extremely
    inconvenient to have to reconnect to the VPN anytime I need to use Word or attach a file to an email.

    Hi,
    First, I have tested following things.
    Use process monitor to check the process when saving word file. Noticed that when open the browser explorer, my mapped the drive was explored.
    Considering that this issue can be caused if the explorer.exe hang on browsing the mapped network drive.
    Please Download the process monitor to capture the system events during repro this issue, filter out the winword.exe and navigate the Network Activity, and see if there is any failure.
    Process Monitor v3.05
    http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
    Using Process Monitor to capture system events
    http://www.sophos.com/en-us/support/knowledgebase/119038.aspx
    Also, check the event log and post back the explorer.exe hang event.
    For further troubleshooting, we need you help to create the explorer.exe hang dump files:
    First enable app crash dump collection by copying following words into notepad, saving it as dump.reg and importing it:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\localdumps\explorer.EXE]
    "DumpFolder"=hex(2):63,00,3a,00,5c,00,63,00,72,00,61,00,73,00,68,00,64,00,75,\
      00,6d,00,70,00,73,00,00,00
    "DumpCount"=dword:00000010
    "DumpType"=dword:00000001
    "CustomDumpFlags"=dword:00000000
    Then, open word to repro the issue. If crash issue appeared, please find the crashdump file under c:\.
    To further help you, please upload this file into Onedrive and shared the link here.
    Kate Li
    TechNet Community Support

  • Error when trying to save or export from pages

    I am trying to export a pages doc to any other format.  I have tried the 'hidden' save as, exporting to pdf, deleting part of the document, changing the font, duplicating and saving- nothing is working!  I receive an 'unexpected error'.  I did not have any issues until I did the last OS X udate.
    Thanks!

    Do you have any oddball characters in the name?
    Stick to straight alpha numeric, no punctuation.
    Try saving to a different location.
    Peter

  • Trying to save the data from the pdf into XML

    I have Adobe Live Cycle 8.0 installed and without the blade for Reader Extension.
    The objective is to save the editable data from the pdf into a XML file
    the code for that is:
    // to fetch the input pdf file from the local drive
    FileInputStream fileInputStream2 = new FileInputStream("C:\\Adobe-Final PDF\\stitched_Letters.pdf");
    Document inPDF = new Document(fileInputStream2);
    Properties connectionProps=new Properties();
    connectionProps.load(new FileInputStream(_propertiesPath));
    //propertiesPath is the path of the properties file
    ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
    FormDataIntegrationClient dataClient = new FormDataIntegrationClient(myFactory);
    Document resultPDF=dataClient.exportData(inPDF);
    What happens is that this ultimate resultPDF does not get the XML with data but rather with empty tags. Does this require Reader Extension?

    //Set connection properties required to invoke LiveCycle ES
    Properties connectionProps = new Properties();
    connectionProps.setProperty("DSC_DEFAULT_EJB_ENDPOINT", "jnp://localhost:1099");
    connectionProps.setProperty("DSC_TRANSPORT_PROTOCOL","EJB");
    connectionProps.setProperty("DSC_SERVER_TYPE", "JBoss");
    connectionProps.setProperty("DSC_CREDENTIAL_USERNAME", "administrator");
    connectionProps.setProperty("DSC_CREDENTIAL_PASSWORD", "password");
    //Create a ServiceClientFactory object
    ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
    //Create a FormDataIntegrationClient object
    FormDataIntegrationClient dataClient = new FormDataIntegrationClient(myFactory);
    //Reference a PDF form from which to export data
    FileInputStream fileInputStream2 = new FileInputStream("C:\\Adobe\\Loan.pdf");
    Document inputPDF = new Document(fileInputStream2);
    //Export data from the form
    Document resultPDF = dataClient.exportData(inputPDF);
    //Save the exported form data as an XML file
    File resultFile = new File("C:\\Adobe\\formData.xml");
    resultPDF.copyToFile(resultFile);
    }catch (Exception e) {
    e.printStackTrace();

  • Exception when trying to save portal favorites from BEx webreport

    Hello everybody!
    Since last week before christmas we have a problem regarding our portal favorites. When you try to save a individual BEx webreport the following exception is thrown:
    Exception caught: java.lang.NoSuchMethodError: com.sap.ip.bi.base.application.message.MessageException.<init>(ZZLcom/sap/ip/bi/base/exception/BIBaseRuntimeException;[Lcom/sap/ip/bi/base/application/message/IMessage;Ljava/util/Properties;Lcom/sap/security/api/IUser;Ljava/util/Locale;)V
    When looking into the netweaver administration the first exception which leads to this is:
    Exception caught: java.lang.NoSuchFieldError: BI_SHOW_TYPE
    java.lang.NoSuchFieldError: BI_SHOW_TYPE
    at com.sap.ip.bi.webapplications.dataproviders.queryview.impl.WdpQueryView.saveAs(WdpQueryView.java:340)
    at com.sap.ip.bi.webapplications.ui.dialogs.opensave.save.DlgStateSave.doOkCommand(DlgStateSave.java:129)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sap.ip.bi.util.MethodInvoker.callMethod(MethodInvoker.java:101)
    Thanks & Best regards
    Georg

    Hi Georg,
    So, at least we know the cause and why / when it appeared.
    Two possibilities:
    1.) Basis has done a clean, complete update. In that case, SAP would have some bug in the code. But I doubt this a bit, as such bugs should occur at compile time.
    2.) The update was done incompletely, so some parts are SP17, some are SP18. I would advise to call http://server:port/sap/monitoring/ComponentInfo (maybe you already have done so, writing "We have checked the versions of the components on AS").
    If there is no hint into direction 2, maybe it is 1. At least, if all components are really SP18, this would be a basis to open an OSS message, for sure.
    Anyhow, you also have tried a complete restart of the cluster?!
    Hope it helps
    Detlev

  • Web browsers hang when trying to save or load from Finder

    It appeared some time ago, but didn't happen so frequently. Now I cannot load from or save to Finder almost never. When Finder opens up in any browser (Chrome, Safari, Mozilla) the browser immediately hangs. Sometimes rebooting of the laptop helps, but not always and only for some short time.

    Try uploading a photo to a reply here by placing it on the Desktop and then dragging it to the Reply window. I've been having trouble with Safari not uploading the file if I use the camera icon on various forums and with Firefox crashing if I even attempt to upload a photo. Maybe we can tackle this together.
    Clinton
    MacBook Pro (15-inch Late 2011), OS X Mavericks 10.9.5, 16GB Crucial RAM, Crucial M500 960GB SSD, 27” Apple Thunderbolt Display

  • When trying to save an image from ichat or even online to my desktop it will not allow me and says 'You don't have permission.' how can i change this? I used to be able to save all Images.

    HELP!!!!

    deastewart wrote:
    when in system prefrences there is no 'accounts' option. under users and groups it says th account i am currently using is me and I am an admin.
    Thank you agian for trying to help.
    I should have looked closer at your system info on your OP. You're on 10.7 (I'm not) and apparently things are set up differently there. My apologies. I hope someone else will post here. If not, you should probably start a new thread in the 10.7 forum. Good luck to you.

  • Hey guys I am trying to save pdf file from my email to my ipad can anyone help i tried downloading ibooks but when i click the right top corner on my pdf it wont give me and option for sav it on ibooks please help

    please help i just got this and I am very new at this

    Go to http://www.icloud.com in your computer's internet browser.  Sign in, go to Find My iPhone, locate your device there.

  • Win 7 PC wireless network "ACCESS DENIED" error when trying to save a scan from MX450 printer

    Problem solved (by Canon Support).
    thanks all.
    Bye
    Chris

    Hi cherft,
    Glad to hear that you resolve this issue. Could you Please share the solutions with us?
    It will be very beneficial for other community members who have similar questions.
    Thank.
    Yolanda Zhu
    TechNet Community Support

  • Remove distortion from too much mic gain

    Please help. I just recorded the perfect video of myself playing/singing a piece of original music I'd like to share on YouTube. Unfortunately, I was singing too loudly/positioned too close to the mic in several points in the song, and the audio is buzzing. Can the audio be repaired in any way? I have imported the audio clip into Audacity, but nothing I've tried with this software is helping.
    Thank you in advance!

    Nope. Time for a strong drink and Take 2!

  • Flashing screen when trying to save a file

    When i tried to save a file from Microsoft, when the screen popped up to show the possible folders to save, it started to flash at the folder preview (not the whole preview but half from mid point to bottom of the display). It was very lagging when scrolling down even though I still have almost 1GB of free memories. Most of the time I can't scroll anymore so I have to save the file somewhere without a folder and then drag to the desired folder in Finder. What should I do here?

    Save the file as a new name. Close and Open the new file.
    Most likely when a file transfer happens, Office makes the file 'Read Only'.
    If you have two opened files with the same name, the last opened file will be 'Read Only'.

  • Save the capture from a WebCam to a file

    Hi!
    I am trying to save the capture from a webcam to a file. This should be really easy but I have this stack trace when closing the Processor:
    java.lang.NullPointerException
         at com.sun.media.multiplexer.video.AVIMux.writeFooter(AVIMux.java:827)
         at com.sun.media.multiplexer.BasicMux.close(BasicMux.java:142)
         at com.sun.media.BasicMuxModule.doClose(BasicMuxModule.java:172)
         at com.sun.media.PlaybackEngine.doClose(PlaybackEngine.java:872)
         at com.sun.media.BasicController.close(BasicController.java:261)
         at com.sun.media.BasicPlayer.doClose(BasicPlayer.java:229)
         at com.sun.media.BasicController.close(BasicController.java:261)
         at com.mdarveau.WebCamGrabber.TestWebCam.<init>(TestWebCam.java:47)
         at com.mdarveau.WebCamGrabber.TestWebCam.main(TestWebCam.java:59)Any idea why? It is probably something stupid in my code but I can't find it!
    Here is the code:
        //Get the original source
        CaptureDeviceInfo webCam = CaptureDeviceManager.getDevice("vfw:Video Blaster WebCam 3/WebCam Plus (VFW):1");
        DataSource cam = Manager.createDataSource(webCam.getLocator());
        cam.connect();
        Format [] formats = {new VideoFormat(null) };
        FileTypeDescriptor ftd = new FileTypeDescriptor("video.x_msvideo");
        ProcessorModel pm = new ProcessorModel(cam, formats, ftd);
        Processor p = Manager.createRealizedProcessor(pm);
        MediaLocator save = new MediaLocator("file:test.avi");
        DataSink datasink = Manager.createDataSink(p.getDataOutput(), save);
        datasink.open();
        datasink.start();
        Thread.sleep(5000);
        p.stop();
        p.close();
        datasink.close();Thanks!
    Manuel Darveau

    I think you should start the processor, just after the datasink is started.
    datasink.satrt();
    p.start();
    Try it and ask again if it's not the problem.

Maybe you are looking for