Access Restriction - Internet Connection Policy (between two times)

I want to say something about the Access Restriction.
I set the policy for allow internet connection for one of my LAN PC's. For example, I set the policy to ALLOW internet connection EVERY DAY  from 8:00PM to 10:00PM. Starting with 10M internet connection stops. BUT, after a few minutes I do a power circle (turn OFF and turn ON the router) and I have internet connection again. For me, allowing internet connection from 8:00 PM to 10:00 PM means  to have internet connection ONLY BETWEEN THIS HOURS, not before and not after.
In my opinion, this is the same situation with two DENY policies for internet connection, one from 12:00 AM to 8:00 PM and other from 10:00 PM to 11:55 PM (for the same PC, of course).
Why POWER CIRCLE broken this policies ?
ps - sorry for my English.

@sunwatcher,
If I set a policy for my little boy PCs ... for allowing internet connection from 4:00PM to 6:00PM (for example) ... after 6:00 PM internet connection stops and he turn OFF and turn ON the router (power circle)  and after that he have internet connection, from then for a long time ...
I am from Romania, and I set time zone on GMT +2 (Bucharest time zone)
I insist with this problem because I want for him to use internet only between two times. Outside this time frame I want him to do their homework.

Similar Messages

  • Extract Time from date and Time and Need XLMOD Funtion to find the Difference between Two Time.

    X6 = "1/5/15 5:16 AM" & NOW ....................difference by Only Time
    not date
    X6 date and Time will be changing, Its not Constant
                Dim myDateTime As DateTime = X6
                Dim myDate As String = myDateTime.ToString("dd/MM/yy")
                Dim myTime As String = myDateTime.ToString("hh:mm tt")
                Dim myDateTime1 As DateTime = Now
                Dim myDate1 As String = myDateTime1.ToString("dd/MM/yy")
                Dim myTime1 As String = myDateTime1.ToString("hh:mm tt")
    Need to use this function to find the Difference between Two Time. due to 12:00 AM isuue
    Function XLMod(a, b)
        ' This replicates the Excel MOD function
        XLMod = a - b * Int(a / b)
    End Function
    Output Required
     dim dd  = XLMod(myTime - myTime1)
    Problem is myTime & myTime1 is String Need to convert them into Time, Later use XLMOD Funtion.

    Induhar,
    As an addendum to this, I thought I'd add this in also: If you have two valid DateTime objects you might consider using a class which I put together a few years ago
    shown on a page of my website here.
    To use it, just instantiate with two DateTime objects (order doesn't matter, it'll figure it out) and you'll then have access to the public properties. For this example, I'm just showing the .ToString method:
    Option Strict On
    Option Explicit On
    Option Infer Off
    Public Class Form1
    Private Sub Form1_Load(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) _
    Handles MyBase.Load
    Dim date1 As DateTime = Now
    Dim date2 As DateTime = #1/1/1970 2:35:00 PM#
    Dim howOld As New Age(date1, date2)
    MessageBox.Show(howOld.ToString, "Age")
    Stop
    End Sub
    End Class
    I hope that helps, if not now then maybe at some point in the future. :)
    Still lost in code, just at a little higher level.
      Thanx frank, can use this in Future....

  • Windows APP without real internet connection stops working in time

    Windows APP without real internet connection stops working in time
    Hello all,
    I am trying to get the following to work. We have an intranet page which users need to connect to, to operate some machines. This is done through an windows 8.1 Tablet with an assigned KIOSK mode app (Kios SP Browser).
    This works great as the assigned app is the only thing the user can run and we don't have to really harden the device. One drawback in using the assigned apps is that it needs to be an New App (as Microsoft call it)
    The app is installed on an reference machine which runs in workgroup mode (no domain connection is needed on the devices) and after the reference machine is installed it is imaged with the use of Acronis. After deployment the tablet has no connection to
    internet and the intranet page is wireless put available to the tablets. As a side note, the tablet operates with local accounts and the app is installed using an corporate hotmail account we created just for this purpose.
    I now deployed the image over 20 different tablet devices and this worked great until recently a few devices start to complain it needs to connect to the windows shop before the app can be started. As the devices don't have internet access this can't be
    done and the tablet is rendered useless for the user.
    How can i make the app available without internet connection ? and how can i be sure the app will continue to work over time without connection to the store ?

    Thanks for the reply.
    I can't unblock the internet connection as the wireless network doesn't have any internet connection what so ever. The main purpose is to be able to operate the machinery and nothing else, hence the kios app which is being used to show the intranet page
    which connects than to the devices.
    The problem is that after imaging the app works as expected but after a few days the app stops to work ...
    I found the following website over site loading an app without the needed appx files. It shows an way to capture the files during installation from the windows store.
    https://www.404techsupport.com/2014/06/installing-free-windows-8-modern-apps-without-the-windows-store/
    It is a bit strange to have it this difficult to install apps without the needed store and i think that Microsoft should make this easier. I hope this works better and after a few days i will give the feedback how this handles..
    If anyone knows of a better way .....

  • I cannot access the internet via wifi on my time capsule.

    I cannot access the internet via wifi on my time capsule even thought it was shown that I am connected to the time capsule with full wifi on my iMac. I use to be able access the internet via wifi on the TC. However, after playing around with the airport utility on my iPad I was no longer able to access the internet via the wifi on myTC. How can I fix this problem?

    Did your TC recently upgrade firmware to 7.6.3?
    I recommend you do a full factory reset.. and redo the setup.
    Use different names.. SMB type.. ie short, no spaces. pure alphanumeric for everything.
    Use only WPA2 Personal security.
    If that doesn't work, give more info.
    Age of the TC.. model number.. A1xxx from the base.
    Firmware revision.
    In the computer are you getting the correct IP and router and dns values? Please post a screen shot.

  • Function Module to find the Difference between two times.

    Hi All,
    Wud you plz let me know the Function Module to find the Difference between two times.
    Input Time1( Hours:Minutes) Time2 ( Hours:Minutes)
    Need Output in Hours:Minutes only . ( No seconds Needed )
    Ex :
    Input :
           06:00 to 18:00 Output : 12:00
    and  20:00 to 06:00 Output: 10:00 with +ve sign only. No -ve sign.
    Thanks,
    N.L.Narayana

    check this .
    data : p_timel like sy-uzeit,
           p_timeh like sy-uzeit,
           diff like sy-uzeit,
           di(8) type c .
           p_timel = '200000'.
           p_timeh = '060000'.
           diff = p_timeh - p_timel.
           concatenate diff+0(2) ':' diff+2(2) into di.
           write:/ di.
    also check for this.
           p_timel = '060000'.
           p_timeh = '180000'.
    see if this can be implemented in ur code .
    or else  u can try with  Fm L_TO_TIME_DIFF passing startdate enddate starttime endtime with UOM as MIN
    hope this helps regards,
    vijay

  • Find record count between two time stamps

    Hi All,
    Problem: My custom table having a datetime column ;
    I want to find records processed between two time stamps.
    say: records between 2010-04-28 10:15:00 and 2010-04-28 12:30:00
    Could you please help me in this.
    Thanks in advance
    Karri

    use To_date function in where column on that Dat_col
    WHERE date_col BETWEEN TO_DATE ('2010-04-28 10:15:00',
    'mm-dd-rrrr hh24:mi:ss')
    AND TO_DATE ('2010-04-28 12:30:00',
    'mm-dd-rrrr hh24:mi:ss')

  • Wrt54g2 v.1 drops internet connections 2 or 3 times a day.

    Hi,
    I just changed my old dlink router for the wrt54g2 and since I did the change, the internet connection drops a few times a day.
    I'm not using the wireless, only wired. The dsl modem is connected and i entered my PPPoE info.
    Everything works well execept the internet connection drops 2 or 3 times a day.
    Can it be the "Connect on the demand" or "Keep alive" option that is causing this? I had it configured to keep alive: redial period 20 sec.
    OR 
    Is my router defect?
    I need a solution since this is configured in one of my stores and i cannot afford having the internet drop when i have a client.
    thanks!
    Humberto.

    i am having the same issue with a WRT310Nv2 that i just purchased last night. it has firmware version 2.0.00 build 012 so i did not have to do any firmware updates.  everytime it happens i go to status and says my ppoe authentication failed even though the usename and pass are correct. i right noe have it set to keep aliveredial period  30 sec.
    like i said i have just purcased it hours ago and need a quick reply. otherwise i will return it for another brand.  thank you

  • How to find differene between two time fields??

    Hi Experts,
    I am trying to find difference between two time fields,  I have created two formula variables by using replacement path for the two time fields, I have taken dimension key NUMBER, because of this time format is converting to numbers for example if the time is 13:20:10 then it is converting to 1,32,010 then it is calculating, I am getting wrong values.
    Is there any options to find out the difference between two time fields.
    Thanks in advance,
    Venkat.

    use COPF_DETERMINE_DURATION. Its better you do it in data model itself.
    If you have date and time seperately use command
    use CONVERT TIMESTAMP command and
    then use this function module to get the difference in
    timestamp
    CCU_TIMESTAMP_DIFFERENCE
    us this in conjunction with the below function module
    DAYS_BETWEEN_TWO_DATES
    Edited by: Ananda Theerthan on Jan 21, 2010 7:18 AM

  • Using two internet connections at the same time

    Is there a way to setup my Mac to see both a wireless and a wired internet connection, so I can combine the speed of the the connections? If not within the computer, is there a way to do it some other way?

    Hi
    You can have two connections on your machine one wireless one ethernet but you cannot combine the two for a greater connection , you need to use one or the other you cannot use both at the same time as one connection

  • Use my two internet connections at the same time

    I have two internet connections via AirPort, and one another via Ethernet.
    Can I assign which applications use the connection using AirPort and other
    Ethernet connection?

    Probably the EASIST way is to buy a router that does this for you. There are several on the market that can 'gang' two connections, then allow clients to use both together.
    No doubt there would be a way to do internally, but to be honest, I'd have no idea where to even tell you to start, but I bet it involves the Terminal.

  • WRV200 Access Restriction on all ports for a time period?

    I have a system that needs to be restricted to only having internet access for a small window each day. I have been looking at the Access Restriciton tools for htis but it looks like I would need to block each possible port with its own policy. This seems very inefficient and complex. Is there a way to make a rule that blocks ALL ports for a time period?
    Thanks!

    Under Firewall>Access Restriction when you are creating an Access Policy under Blocked Services you can select TCP, UDP, or IP. If you select IP it will block everything instead of a specific port. You will have to create a rule for each IP on your network that you do not wish to have access outside of your selected window.

  • Internet connection failing dozens of times daily for weeks now

    My computer's connection to the Airport Express base station has no problems at all. But the internet connection goes out literally dozens of times a day (at no predictable schedule); this has been happening for almost a month. I originally thought the problem was with the internet provider, but I'm now beginning to think that either my settings are wrong, or that I have a corrupt file somewhere. Here are the details:
    I connect via a cable modem (Time Warner - Road Runner). I know people have had problems with Time Warner, so I assumed that was the issue; however I've had 3 service calls and they've checked signal strength inside and out, and swapped out the modem and the cables. I don't think it is simply problems in our geographic area (i.e. greater Los Angeles) due to the fact that the Internet fails sometimes 40-50 times daily, and the problem began when I upgraded from an old Airport base station to a brand new Airport Express about a month ago.
    The airport/internet connection is shared 3 ways: two MacBook Pro computers and one iPhone. My Airport's internet settings are as follows:
    Configure IPv4 using DHCP.
    DNS Servers: 66.75.160.63 and 66.75.160.64 (note I have already tried swapping these for OpenDNS -- this did NOT solve the problem)
    Domain name: socal.rr.com
    DHCP Client ID: [blank]
    Ethernet WAN port: Default-Automatic
    Connection Sharing: Share a Public IP address
    DHCP Beginning Address: 10.0.1.2
    Ending Address: 10.0.1.200
    DHCP Lease: 4 hours
    NAT settings are all unchecked
    One of the main reasons I believe that the problem is with my computer's settings or a corrupt file is that I can fix the problem whenever the Internet "goes down" almost 100% of the time by doing the following: after loading Airport Utility, I make ANY trivial change (i.e. changing the DHCP lease from 4 hours to 5 hours) and then click UPDATE to refresh the Airport base station. This fixes the problem almost 100% of the time. But then, anywhere from 10 minutes to 3 hours later, the Internet connection goes down again. [Unplugging the power from the modem, waiting 30 seconds, and plugging it back in ALSO fixes the problem almost 100% of the time, until it goes out again a little while later.]
    I can't think of what else to try -- but any advice would be greatly appreciated -- it's impossible for us to work with the Internet constantly going out throughout the day, every day.
    Thank you!

    I had a similar issue with a local fiber provider in Loma Linda, CA. Internet connection with a new Airport Extreme was fast but with drops at regular intervals every day. Resetting the airport fixed the problem but there was one difference, even a direct connection through ethernet cord to the gateway also failed at regular intervals.
    After trying everything, the problem was fixed by asking the fiber service provider to switch the port the wire from my home was connected to at a central box somewhere in my neighborhood.
    Good Luck!

  • Consistently losing internet connectivity with AE and Time Warner

    I am trying to help a friend fix a long-standing issue with her wireless network.
    1. Her ISP is Time Warner - she has a cable modem.
    2. She has an Airport Express plugged into it.
    3. She has several Macs, a PC, and 2 iPhone connected wirelessly.
    4. She tells me that several times a week she loses connectivity. My friend fixes it by recycling both the AE and TW cable modem.
    5. Apple replaced the AE even though they didn't think anything was wrong with it. The problem persisted. Her boyfriend tried two other WAPs, the problem persisted.
    6. Her boyfriend thinks that on a few occasions the wireless network still was up, but they were not getting internet through it.
    7. She has had TW out multiple times and they say everything is fine on their end. They said they may have MAC addresses that are "too close together" and my friend should turn on MAC filtering. This makes no sense to me - MAC filtering is for security.
    Her boyfriend is going to plug his computer directly into the TW cable modem the next time they lose wireless internet connectivity, but I said I would go over and take a look.
    I think the best idea is just rebuild their wireless network (I have "Take Control of Your 802.11 Wireless Network" - great book) and see if that helps. But I would appreciate any troubleshooting assistance.

    Welcome to the discussions!
    +She has had TW out multiple times and they say everything is fine on their end. They said they may have MAC addresses that are "too close together" and my friend should turn on MAC filtering. This makes no sense to me - MAC filtering is for security.+
    Unfortunately, you'll need to resign yourself to the fact that there will be little if any real assistance from the cable company. The stuff about MAC addresses being too close together, etc is total nonsense. As you point out, MAC Filtering would have no application here either.
    +She tells me that several times a week she loses connectivity. My friend fixes it by recycling both the AE and TW cable modem. Apple replaced the AE even though they didn't think anything was wrong with it. The problem persisted. Her boyfriend tried two other WAPs, the problem persisted+
    These are clear symptoms that interference of some type is affecting performance on the network. The first thing to do to help improve things is move the Express from it's probable current location down low on the wall behind the cabinet out to an open area where it can radiate its signal as freely as possible. This means using an AC extension cord to place the Express in a better position.
    The next thing to do is make sure that the Express is not located near any other electrical devices, cordless phones, televisions, etc. These can all interfere with the wireless signal.
    These actions may solve the issue. If not, you'll need to start experimenting with different channels for the wireless network on the Express as other nearby wireless networks may be using the same channel or a close adjacent channel. Start at Channel 11 and start working down until you find a more reliable channel, or run out of channels.
    +Her boyfriend is going to plug his computer directly into the TW cable modem the next time they lose wireless internet connectivity+
    Not really a good idea unless he knows how to fully reset the modem before he connects it to his computer and then do the same again when connecting back to the AirPort Express. I'm not sure what he hopes to gain by doing this.
    +I think the best idea is just rebuild their wireless network (I have "Take Control of Your 802.11 Wireless Network" - great book) and see if that helps+
    Good idea.

  • Application Access restrict for for a period of time

    Hi,
    I am using Websphere 5.0 along with IIS 5.x.
    My requirement is to restrict users from accessing a web application for a particular time slot (for eg: 10 PM to 5 AM ) everyday.
    If the user accesses that website during that time, Websphere needs to redirect the user to a temporary page instead of the home page.
    Is there any way to achieve the requirement by configuring the webservers or websphere ?

    Yes you can add ACLs with attribute "timeofday"
    http://blogs.sun.com/roller/page/meena?entry=access_control_in_sun_java

  • Function Module to get the difference between two times.

    Hi All,
    I want to know if there is any function module that gives me the difference between two specified times.
    For Ex: Time 1: 12/01/2007 00:01 A.M
                Time 2: Time 1 - 180 Seconds. This changes the time, also may even change the Date. (As in above situation, the Time 2 will be 11/30/2007 11:58 P.M)
    Could some one please suggest if there is any function module for this case.
    Thanks in Advance.

    Hi, You can use the following function module to calculate the diffrence between to dates in the unit that you want.
    COPF_DETERMINE_DURATION calculates the difference between two dates and time in minutes and hours.
    Parameters:
    EXPORTING
         I_START_DATE "The start date of the time interval
         I_START_TIME "The start time of the time interval
         I_END_DATE   "The end date of the time interval
         I_END_TIME   "The end time of the time interval
         I_UNIT_OF_DURATION "Time unit of the duration if not to be calculated in days.
         Value     =====     Meaning
         ' '     =====     Day (default)
         D     =====     Days
         H     =====     Hours
         MIN     =====     Minutes
         MON     =====     Months
         S     =====     Seconds
         WK     =====     Weeks
         YR     =====     Years
         I_FACTORY_CALENDER     "A factory calender if not using the Gregorian calender
    IMPORTING
         E_DURATION      "Time difference in unit specified.
    Message was edited by:
            Rajesh Soman

Maybe you are looking for

  • Safari won't open. When it does it looks different and closses right away

    When I log on a window pops up saying that the Safari browser version I'm using won't support my community toolbar. I can't open Safari. It suddenly became a smaller window that is gray and closes out before I can do anything. I can only open it by g

  • Make TextArea height adjust to fit content

    I'm trying to get my TextArea to resize and fit the content it contains but for some reason the following code causes it to become about 3x higher than the text it contains. Can someone point out what I am doing wrong? Thanks! <?xml version="1.0" enc

  • ORA-01173: data dictionary indicates missing data file from system tablespa

    Hello My Database is 11gR1 and Linux is the OS. Thought of posting it as a new thread as things have changed a lot. 2 of my database file were lost due to hardware failure. (the datafile do not belong to SYSTEM TABLESPACE) and and the second was data

  • Sharing internet between imac & itouch

    I'm somewhat new to apple and wifi networking. I'm curious to know if I can plug a usb wireless broadband devise into the AX (or similar devise) to share the connection with my itouch? If so, will I need to reconfigure the AX every time I need to pri

  • Convert PaperPort Max to PDF

    Following this question: http://discussions.apple.com/thread.jspa?threadID=1771876&tstart=0, I found a solution to go through all files and convert the PaperPort .max files to equivalent .pdf files. It requires GraphicConverter from http://www.lemkes