Anyone got NTP working with a Windows 2008 NTP server?

Hello,
I'm trying to sync the time on our routers and swithces with a Windows 2008R2 server, but it doesn't work.  Has anyone managed to do this:
Config:
ntp master
ntp update-calendar
ntp server 192.168.2.164
sh ntp associations
  address         ref clock         st   when   poll   reach    delay    offset     disp
*~127.127.1.1     .LOCL.         7     11     16      377      0.000   0.000      0.225
~192.168.2.164  .INIT.          16      -      1024     0       0.000    0.000    15937.
Windows 2008R2 server
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer]"
"Enabled"=dword:00000001
restart server
w32tm /config /manualpeerlist:uk.pool.ntp.org,0x8 /syncfromflags:MANUAL
net stop w32time
net start w32time
Doesnt work
Woudl Linux like Ubuntu be better?
Thanks

I got this working from a cisco 2911 router to Windows 7 computer.
As per many articles, you are missing:-
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config]"
"AnnounceFlags"=dword:00000005
But the one that allows Cisco kit to Sync is:-
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config]"
"LocalClockDispersion"=dword:00000000
This article http://www.cisco.com/c/en/us/support/docs/ip/network-time-protocol-ntp/108076-ntp-troubleshoot.html talks about having a root-dispersion higher than 1000ms (1 second) causing Cisco IOS-NTP to unsynchronizes itself.
This article http://htluo.blogspot.co.uk/2009/02/ntp-network-time-protocol.html#comment-form was the only one I found that added to the normal enable ntp server registry keys information, stating to change ‘HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config\LocalClockDispersion’  from 10 to 0
There was also articles that said that the Windows NTP implementation was version 3, and therefore you had to append ‘version 3’ to the routers ‘ntp server x.x.x.x’ command. This may be perhaps true for earlier windows versions?, but was NOT required for Windows 7.

Similar Messages

  • Front Row in Lion. Has anyone got it working with iTunes 10.5 yet?

    I've got it working with pics and movies by using the method in the link below, but not with the library in iTunes 10.5.
    http://www.cultofmac.com/106874/use-front-row-in-os-x-lion-video-how-to/

    Yes I know. I'm very annoyed that Apple have dropped Front Row from Lion, it removes quite a bit of functionality from my iMac. I use it a lot. I've tried Plex, but don't like it at all.

  • Tomcat 5.5 issues, has anyone got JSF working with tomcat 5.5 yet?

    Hi,
    Firstly I'm wondering if anyone has got JSF 1.1 working with tomcat 5.5 yet.
    I'm trying to move from tomcat 5.0.25 to 5.5.4 and my JSF webapps have not liked the move at all.
    The classpath doesn't seem to be a problem as I have all the .jars that are required in the classpath of tomcat just like before.
    I see the error log in stdout.log (catalina.out on linux) have been reduced to only show the precise error. Or at least is seems at lot easier to read.
    My error is simply
    SEVERE: Error listenerStart
    SEVERE: Context startup failed due to previous errors
    I reverted back to using the examples provided like jsf-guessNumber and the car-demo but neither of these will start-up.
    This issue seems to have occurred to lots of other people previously but I couldn't find a particular fix or direct compatability issue with tomcat.
    Has anyone encountered this before?

    Back again,
    Allright well after a little thought I concluded that this issue had to be some to do with the classpath and the changes between the two tomcat versions.
    I had a look at
    http://jakarta.apache.org/tomcat/tomcat-5.5-doc/RELEASE-NOTES.txt
    and noticed that tomcat 5.5 leaves out some important .jar as they are only needed for java 1.4.
    -------------------- EXTRACT ------------------------
    Installing the compatibility package will add the following to the list, which are
    needed when running on J2SE 1.4:
    * jmx.jar (Java Management Extensions API 1.2 or later)
    * xercesImpl.jar (Xerces XML Parser, version 2.6.2 or later)
    --------------------END EXTRACT ------------------------
    Therefore I tried putting xercexImpl.jar back onto the tomcat classpath and JSF works once again.
    Ah what a relief.

  • System.Windows.Forms.SaveFileDialog not working under Windows 2008 R2 Server

    I am using Windows Server 2008 R2 (64-bit) that is been virtualized with Hyper-V and it is being used as a "Remote Desktop Server".
    I am trying to use this PowerShell code that will open a "Save-File-Dialog" box to select the PDF file and send it to my "batch" file for scanning.  This code works great on my Windows Vista machine and my Windows 7 32-bit machine
    but I cannot get it to work on the "Windows 2008 R2 Server (64-bit)".  It will not come up with any window at all and it will not produce any errors at all, so I can't exactly google for this issue.  I am using PowerShell 2.0 from 2009.
    Any ideas?  I tried it from an Admin account and a regular domain users and neither worked at all, no errors, no window, no nothing.
    *** Update ***
        I took Out-Null out and I received this...
      GAC    Version        Location
    True   v2.0.50727     C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll
    I then checked the path and the DLL file was in there and it had read and execute permissions for Domain users and Administrators and the window still won't pop up... 
    Here is the entire code in question.....
    # Uses the dot net assembly to give the users a Save-File-Dialog box so they can decide where to put the pdf file
    Function Get-SaveFile($initialDirectory){
    [System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") | Out-Null
    $SaveFileDialog = New-Object System.Windows.Forms.SaveFileDialog
    $SaveFileDialog.initialDirectory = $initialDirectory
    $SaveFileDialog.filter = "PDF files (*.pdf)| *.pdf"
    $SaveFileDialog.ShowDialog() | Out-Null
    $SaveFileDialog.filename
    # open dialog box to select the .nessuss file.
    $OutputFile = Get-SaveFile
    # User selected where they want to put the scanned.pdf file and it will automatically set it to .pdf for them
    start-process Scan $OutputFile

    I ran the code you have in your function on a Windows 2008 Standard server, and it seems to be hanging on the line
    $SaveFileDialog.ShowDialog()
    | Out-Null
    It just sits there and nothing happens, but if I run it on my Windows 7 machines, it runs without any issues. So it seems like the dialog opened, but behind the scenes, and is waiting on the user, but since it doesn't open, the user can't do anything.
    If you find that my post has answered your question, please mark it as the answer. If you find my post to be helpful in anyway, please click vote as helpful.
    Don't Retire Technet

  • Has anyone done any work with the "Form" Email Feature in 2008?

    Has anyone done any work with the "Form" Email Feature in 2008?
    2006.7
    Oracle 9i
    Websphere 5.11
    IE6 & IE7
    I have been testing the version 2008.2 and noticed the "Form" link in the email templates, has anyone used this or know what its for? 
    It seems like a useful feature, but I can not find any documentation on its use.
    Thank you
    Daniel

    Hi Daniel,
    The HTML widget we have incorporated into the application is an open source tool. It's name is FCKeditor. Here is the URL for the documentation site: http://docs.fckeditor.net/
    - Ed

  • Anyone have a driver for the ImageClass D860 that works with a Windows 8 64 bit computer?

    Please help.  If anyone has or knows of a driver for the ImageClass D860 that works with a Windows 8 64 bit computer, please send it or the link to me at [MOD removed email address per FORUM GUIDELINES].     Thx.

    I am trying to do a wedding and now spending too much time searching the web for tutorials and reviews to try to figure out what is going on. There needs to be better detailed help.

  • Windows 8.1 Enterprise DirectAccess with a Windows 2008 R2 DA server

    I don't suppose anyone out there is using Windows 8.1 Enterprise with a Windows 2008 R2 DirectAccess setup?
    We have an existing 2008 R2 DA setup used by 50+ Windows 7 Enterprise laptops without any issues.
    We're testing Windows 8.1 Enterprise and the DirectAccess functionality seems to be very intermittent, you can't use any of the Windows 8.1 powershell commands to look at the status as it's not using the new 2012 functionality but DA is there and works.
    The problem is it seems to take a long time to connect, anything from 15 minutes to several hours and in some instances seems to fail to connect entirely. I can't see anything in the event logs and I'm really struggling to work out why it's so intermittent.
    Cheers
    Robert Grigsby

    Hi,
    DirectAccess performance is dependent on many factors such as the speed of the DirectAccess client’s connection to the Internet, Internet latency and congestion between the
    DirectAccess client and server, and the current load on the DirectAccess server. Another reason might be the type of Internet Protocol version 6 (IPv6) encapsulation being used over the Internet Protocol version 4 (IPv4) Internet. 6to4 and Teredo tend to have
    higher performance because the encapsulation is simpler to process. Internet Protocol over Secure Hypertext Transfer Protocol (IP-HTTPS) tends to have lower performance because of the higher protocol overhead and the additional Secure Hypertext Transfer Protocol
    (HTTPS)-based encryption and decryption.
    When examining performance issues, one of the first places to look is the display of the
    ipconfig command on the DirectAccess server, which indicates the type of encapsulation based on the interface that has a global IPv6 address assigned.
    The related KB:
    DirectAccess Client Connection is Slow
    http://technet.microsoft.com/en-us/library/ee844161(v=ws.10).aspx
    Regards.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Grid infrastructure with GNS @ windows 2008 R2

    hello!
    i want to install grid infrastructure (for a 2 node rac) with gns on a windows 2008 r2 server. the dns/dhcp server is also windows 2008 r2. can anyone provide an example which ips, dns-forwards etc. i have to configure on the dns/dhcp server? i read a lot of documentation, but the installation always fails with the following message:
    "GNS konnte nicht hinzugefügt werden. -- gns couldn't be added
    CLSGN-00154: Ungültige Subdomain: "ora-cluster.ki-grp.local" -- invalid subdomain "..."
    add gns -i 10.62.1.50 -d ora-cluster.ki-grp.local ... failed
    FirstNode configuration failed at C:\Oracle\11.2.0\grid\crs\install/crsconfig_lib.pm line 8385."
    i enter the following parameters at universal installer:
    Cluster-Name: ora-cluster
    SCAN-Name: ora-cluster-scan.ora-cluster.ki-grp.local
    SCAN-Port: 1521
    GNS-Subdomain: ora-cluster.ki-grp.local
    GNS-VIP-Adresse: 10.62.1.50
    cluster-nodes: 000srvorarn1.ki-grp.local und 000srvorarn2.ki-grp.local
    network interfaces:
    interconnect: 1.1.1.0
    public: 10.62.1.0
    thx in advance and best regards,
    christian

    Make sure you have the shared storage configured correctly, on either Oracle ASM or OCFS for Windows. In my testing, i used a storage cabinet and iSCSI to connect to the disks.
    If you have attempted to install Grid once, then before attempting another installation, you must clean out the failed installation (http://download.oracle.com/docs/cd/E11882_01/install.112/e10817/rem_orcl.htm#CHDGBBIJ) and zero out the disks used by Oracle ASM. Also, use the asmtool to mark the disks so that Oracle ASM can identify them correctly.
    Also, make sure that Microsoft Clustering is disabled (and preferably not installed) on the servers you are using in your Oracle cluster.
    Most of the time, a failed installation is due to the shared storage not being configured correctly, or being configured so that it works during installation of Oracle Grid, but once the server is restarted, Oracle Grid fails to start.

  • Has anyone got iFS working in Tomcat ?

    iFS 1.1.9
    We have a urgent need to get iFS running in a Servlet 2.2 container and OC4J does not support iFS yet. I know this is not supported but has anyone got iFS working in Tomcat ? If so, pls do me a BIG favour by letting me have your config files, such as
    - server.xml
    - <tomcat home>\conf\web.xml
    - web.xml for the tomcat context)
    - wrapper.properties (if you are using tomcat as an NT service)
    - tomcat-apache.conf (or equivalent)
    - <oracle home>/apache/apache/conf/httd.conf
    - A listing of relevant environment variables (by doing a "set>env.lis" or similar)
    - and any other files you might think is relevant
    Thanks a million in advance.
    null

    iFS 1.1.9 / Oracle 8.1.7 / Tomcat 4.0.1 / Windows 2000
    After several hours of fiddling around with the configuration
    files, I finally got the iFS up and running on my test machine.
    Briefly here's what I did:
    1) create application directories
    <tomcat_home>/ifs/files/WEB-INF/classes
    <tomcat_home>/ifs/files/WEB-INF/lib
    2) Add the following to <tomcat_home>/conf/server.xml:
    <Context path="/ifs/files" docBase="ifs/files"
    debug="0" reloadable="true">
    <!-- got this from jserv.properties -->
    <Environment name="ORACLE_HOME" type="java.lang.String"
    value="oracle_home"/>
    <Environment name="ORACLE_SID" type="java.lang.String"
    value="sid"/>
    <Environment name="LD_LIBRARY_PATH" type="java.lang.String"
    value="oracle_home/lib:oracle_home/ctx/lib"/>
    <Environment name="NLS_LANG" type="java.lang.String"
    value=".UTF8"/>
    </Context>
    Please replace oracle_home with your installation directory and
    fill in your SID as well.
    3) create <tomcat_home>/<tomcat_home>/ifs/files/WEB-INF/web.xml
    with the following definitions:
    <servlet>
    <servlet-name>oracle-jsp</servlet-name>
    <servlet-class>oracle.jsp.JspServlet</servlet-class>
    <init-param>
    <param-name>logVerbosityLevel</param-name>
    <param-value>WARNING</param-value>
    </init-param>
    </servlet>
    <servlet>
    <servlet-name>oracle-ifs-servlet</servlet-name>
    <servlet-
    class>oracle.ifs.protocols.dav.impl.IfsDavServlet</servlet-class>
    <init-param>
    <param-name>classpath</param-name>
    <!-- this classpath is crucial for JSP compilation.
    | The value has to be in one single line without
    | linebreaks and spaces !!!
    -->
    <param-value>
    tomcat_home/webapps/ifs/files/WEB-INF/lib/ojsp.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/webui.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/adk.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/http.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/repos.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/email.jar;
    tomcat_home/webapps/ifs/files/WEB-
    INF/lib/release.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/utils.jar;
    tomcat_home/webapps/ifs/files/WEB-
    INF/lib/settings.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/classes;
    tomcat_home/lib/xmlparserv2.jar;
    tomcat_home/lib/classes12.jar;
    tomcat_home/common/lib/servlet.jar;
    </param-value>
    </init-param>
    <init-param>
    <param-name>ifs.dav.servicepassword</param-name>
    <param-value>manager</param-value>
    </init-param>
    <init-param>
    <param-name>encode_to_java</param-name>
    <param-value>true</param-value>
    </init-param>
    <init-param>
    <param-name>page_provider</param-name>
    <param-
    value>oracle.ifs.protocols.dav.impl.jsp.IfsJspResourceProvider</p
    aram-value>
    </init-param>
    <init-param>
    <param-name>page_repository_root</param-name>
    <param-value>ifs_home/ifsjsps</param-value>
    </init-param>
    <init-param>
    <param-name>unsafe_reload</param-name>
    <param-value>false</param-value>
    </init-param>
    <init-param>
    <param-name>developer_mode</param-name>
    <param-value>true</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>oracle-ifs-servlet</servlet-name>
    <url-pattern>/*</url-pattern>
    </servlet-mapping>
    <!-- The mapping for the JSP servlet -->
    <servlet-mapping>
    <servlet-name>oracle-jsp</servlet-name>
    <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>
    tomcat_home and ifs_home must be replaced with your installation
    directories.
    4) Copy the iFS and Oracle JARs to the locations specified in
    web.xml
    You may choose either the applications lib directory or the more
    general tomcat_home/lib for that purpose.
    One hint on libraries: Tomcat will ignore ZIP files, you have to
    use JAR. I renamed Oracle's classes12.zip to classes12.jar for
    that reason.
    5) Create settings.jar
    This was the most tricky part. I packed everything under
    ifs_home/settings into the file settings.zip, renamed this to
    settings.jar and moved it to the WEB-INF/lib directory. Seems a
    bit of a kludge to me, anyone with a better solution is welcome.
    6) Start tomcat
    7) try http://yourtomcathost:8080/ifs/files/index.html
    You should see the ifs login screen then.
    One word about the application environment. In this
    configuration every user class has to go into
    <tomcat_home>/ifs/files/WEB-INF/classes, the
    ifs_home/user_classes is of no use here. And don't try to set
    the classpath within catalina.bat, tomcat will completely ignore
    this setting.
    Finally, I know that this environment is not supported but as
    long as the iFS servlet meets the standards, every standard
    compliant servlet engine should do the job.
    Good luck

  • Has anyone got UCM 11g running on Windows 7 64bit?

    Hi,
    I've just installed UCM 11g on a 64bit Windows 7. During installation I had some issues concerning the user rights, but now almost everything works fine.
    Except of two issues:
    1. when starting the UCM (startManagedWebLogic.cmd) I get the following exception:
    !csNativeOsUtilsError!syNativeOsUtilsNotLoaded!syJavaExceptionWrapper,java.lang.UnsatisfiedLinkError: intradoc.common.NativeOsUtilsBase.getNativeVersion()Ljava/lang/String;
    java.lang.AssertionError: !syNativeOsUtilsNotLoaded
         at intradoc.common.NativeOsUtilsBase.doLoad(NativeOsUtilsBase.java:386)
         at intradoc.common.NativeOsUtilsBase.&#60;init&#62;(NativeOsUtilsBase.java:352)
         at intradoc.common.NativeOsUtils.&#60;init&#62;(NativeOsUtils.java:26)
    But the server is running.
    2. Fulltext-Search doesn't work.
    Message in the UI:
    !csUserEventMessage,weblogic,localhost:16200!$!csSearchUnableToReturnResults
    intradoc.common.ServiceException: !csSearchUnableToReturnResults
    at intradoc.server.SearchManager.retrieveSearchInfo(SearchManager.java:269)
    at intradoc.server.SearchService.retrieveSearchInfo(SearchService.java:1811)
    at intradoc.server.SearchService.doLocalSearch(SearchService.java:1360)
    at intradoc.server.SearchService.getSearchResults(SearchService.java:654)
    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:597)
    As UCM is not certified for Windows 7 I'm not sure if this is a configuration issue or a generel problem with Windows 7.
    Has anyone got this installation run on Windows 7 (64bit)?
    bye Stephan...

    Assuming that you want to install the 64 bit UCM 11g version:
    Issue with installer closing screen could be related with JAVA_HOME variable or wrong java version.
    1. Check if 64 bit JDK (not JRE) is installed in a directory without spaces (not default Program Files… but something like C:\Java\).
    2. Check if windows environment variable JAVA_HOME exists and is pointing to JDK directory (like C:\Java\jdk1.6.0_24)
    3. Open command prompt and check java version with: java –version. It should return “Java HotSpot 64-Bit Server”.
    A little bit more deatils here: Re: Installation issues with WebCenter UCM 11g
    Regards,
    Boris

  • Aironet 2702i Autonomous - Web-Authentication with Radius Window 2008

    Hi Guys,
    I have a problems with case, i have diagrams sample like then : AD(Win2008) - Radius(Win2008) - Aironet 2702i => Use methods Web-Auth for EndUser  
    This is my Configure file on Aironet 2702i
    Aironet2702i#show run
    Building configuration...
    Current configuration : 8547 bytes
    ! Last configuration change at 05:08:25 +0700 Fri Oct 31 2014 by admin
    version 15.3
    no service pad
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    hostname Aironet2702i
    logging rate-limit console 9
    aaa new-model
    aaa group server radius rad_mac
    aaa group server radius rad_acct
    aaa group server radius rad_admin
    aaa group server tacacs+ tac_admin
    aaa group server radius rad_pmip
    aaa group server radius dummy
    aaa authentication login default local
    aaa authentication login DTSGROUP group radius
    aaa authentication login webauth group radius
    aaa authentication login weblist group radius
    aaa authentication dot1x default group radius
    aaa authorization exec default local 
    aaa session-id common
    clock timezone +0700 7 0
    no ip source-route
    no ip cef 
    ip admission name webauth proxy http
    ip admission name webauth method-list authentication weblist 
    no ip domain lookup
    ip domain name dts.com.vn
    dot11 syslog
    dot11 activity-timeout unknown default 1000
    dot11 activity-timeout client default 1000
    dot11 activity-timeout repeater default 1000
    dot11 activity-timeout workgroup-bridge default 1000
    dot11 activity-timeout bridge default 1000
    dot11 vlan-name DTSGroup vlan 46
    dot11 vlan-name L6-Webauthen-test vlan 45
    dot11 vlan-name NetworkL7 vlan 43
    dot11 vlan-name SGCTT vlan 44
    dot11 ssid DTS-Group
       vlan 46
       authentication open eap DTSGROUP 
       authentication key-management wpa version 2
       mbssid guest-mode
    dot11 ssid DTS-Group-Floor7
       vlan 43
       authentication open 
       authentication key-management wpa version 2
       mbssid guest-mode
       wpa-psk ascii 7 013D03104C0414040D4D5B5E392559
    dot11 ssid L6-Webauthen-test
       vlan 45
       web-auth
       authentication open 
       dot1x eap profile DTSGROUP
       mbssid guest-mode
    dot11 ssid SaigonCTT-Public
       vlan 44
       authentication open 
       authentication key-management wpa version 2
       mbssid guest-mode
       wpa-psk ascii 7 04480A0F082E424D1D0D4B141D06421224
    dot11 arp-cache optional
    dot11 adjacent-ap age-timeout 3
    eap profile DTSGROUP
     description testwebauth-radius
     method peap
     method mschapv2
     method leap
    username TRIHM privilege 15 secret 5 $1$y1J9$3CeHRHUzbO.b6EPBmNlFZ/
    username ADMIN privilege 15 secret 5 $1$IvtF$EP6/9zsYgqthWqTyr.1FB0
    ip ssh version 2
    bridge irb
    interface Dot11Radio0
     no ip address
     encryption vlan 44 mode ciphers aes-ccm 
     encryption vlan 46 mode ciphers aes-ccm 
     encryption mode ciphers aes-ccm 
     encryption vlan 43 mode ciphers aes-ccm 
     encryption vlan 1 mode ciphers aes-ccm 
     ssid DTS-Group
     ssid DTS-Group-Floor7
     ssid L6-Webauthen-test
     ssid SaigonCTT-Public
     countermeasure tkip hold-time 0
     antenna gain 0
     stbc
     mbssid
     packet retries 128 drop-packet
     channel 2412
     station-role root
     rts threshold 2340
     rts retries 128
     ip admission webauth
    interface Dot11Radio0.1
     encapsulation dot1Q 1 native
     bridge-group 1
     bridge-group 1 subscriber-loop-control
     bridge-group 1 spanning-disabled
     bridge-group 1 block-unknown-source
     no bridge-group 1 source-learning
     no bridge-group 1 unicast-flooding
    interface Dot11Radio0.43
     encapsulation dot1Q 43
     bridge-group 43
     bridge-group 43 subscriber-loop-control
     bridge-group 43 spanning-disabled
     bridge-group 43 block-unknown-source
     no bridge-group 43 source-learning
     no bridge-group 43 unicast-flooding
    interface Dot11Radio0.44
     encapsulation dot1Q 44
     bridge-group 44
     bridge-group 44 subscriber-loop-control
     bridge-group 44 spanning-disabled
     bridge-group 44 block-unknown-source
     no bridge-group 44 source-learning
     no bridge-group 44 unicast-flooding
     ip admission webauth
    interface Dot11Radio0.45
     encapsulation dot1Q 45
     bridge-group 45
     bridge-group 45 subscriber-loop-control
     bridge-group 45 spanning-disabled
     bridge-group 45 block-unknown-source
     no bridge-group 45 source-learning
     no bridge-group 45 unicast-flooding
     ip admission webauth
    interface Dot11Radio0.46
     encapsulation dot1Q 46
     bridge-group 46
     bridge-group 46 subscriber-loop-control
     bridge-group 46 spanning-disabled
     bridge-group 46 block-unknown-source
     no bridge-group 46 source-learning
     no bridge-group 46 unicast-flooding
    interface Dot11Radio1
     no ip address
     shutdown
     encryption vlan 46 mode ciphers aes-ccm 
     encryption vlan 44 mode ciphers aes-ccm 
     encryption vlan 1 mode ciphers aes-ccm 
     encryption vlan 43 mode ciphers aes-ccm 
     encryption vlan 45 mode ciphers ckip-cmic 
     ssid DTS-Group
     ssid DTS-Group-Floor7
     ssid SaigonCTT-Public
     countermeasure tkip hold-time 0
     antenna gain 0
     peakdetect
     dfs band 3 block
     stbc
     mbssid
     packet retries 128 drop-packet
     channel 5745
     station-role root
     rts threshold 2340
     rts retries 128
    interface Dot11Radio1.1
     encapsulation dot1Q 1 native
     bridge-group 1
     bridge-group 1 subscriber-loop-control
     bridge-group 1 spanning-disabled
     bridge-group 1 block-unknown-source
     no bridge-group 1 source-learning
     no bridge-group 1 unicast-flooding
    interface Dot11Radio1.43
     encapsulation dot1Q 43
     bridge-group 43
     bridge-group 43 subscriber-loop-control
     bridge-group 43 spanning-disabled
     bridge-group 43 block-unknown-source
     no bridge-group 43 source-learning
     no bridge-group 43 unicast-flooding
    interface Dot11Radio1.44
     encapsulation dot1Q 44
     bridge-group 44
     bridge-group 44 subscriber-loop-control
     bridge-group 44 spanning-disabled
     bridge-group 44 block-unknown-source
     no bridge-group 44 source-learning
     no bridge-group 44 unicast-flooding
     ip admission webauth
    interface Dot11Radio1.45
     encapsulation dot1Q 45
     bridge-group 45
     bridge-group 45 subscriber-loop-control
     bridge-group 45 spanning-disabled
     bridge-group 45 block-unknown-source
     no bridge-group 45 source-learning
     no bridge-group 45 unicast-flooding
     ip admission webauth
    interface Dot11Radio1.46
     encapsulation dot1Q 46
     bridge-group 46
     bridge-group 46 subscriber-loop-control
     bridge-group 46 spanning-disabled
     bridge-group 46 block-unknown-source
     no bridge-group 46 source-learning
     no bridge-group 46 unicast-flooding
    interface GigabitEthernet0
     no ip address
     duplex auto
     speed auto
     dot1x pae authenticator
     dot1x authenticator eap profile DTSGROUP
     dot1x supplicant eap profile DTSGROUP
    interface GigabitEthernet0.1
     encapsulation dot1Q 1 native
     bridge-group 1
     bridge-group 1 spanning-disabled
     no bridge-group 1 source-learning
    interface GigabitEthernet0.43
     encapsulation dot1Q 43
     bridge-group 43
     bridge-group 43 spanning-disabled
     no bridge-group 43 source-learning
    interface GigabitEthernet0.44
     encapsulation dot1Q 44
     bridge-group 44
     bridge-group 44 spanning-disabled
     no bridge-group 44 source-learning
    interface GigabitEthernet0.45
     encapsulation dot1Q 45
     bridge-group 45
     bridge-group 45 spanning-disabled
     no bridge-group 45 source-learning
    interface GigabitEthernet0.46
     encapsulation dot1Q 46
     bridge-group 46
     bridge-group 46 spanning-disabled
     no bridge-group 46 source-learning
    interface GigabitEthernet1
     no ip address
     shutdown
     duplex auto
     speed auto
    interface GigabitEthernet1.1
     encapsulation dot1Q 1 native
     bridge-group 1
     bridge-group 1 spanning-disabled
     no bridge-group 1 source-learning
    interface GigabitEthernet1.43
     encapsulation dot1Q 43
     bridge-group 43
     bridge-group 43 spanning-disabled
     no bridge-group 43 source-learning
    interface GigabitEthernet1.44
     encapsulation dot1Q 44
     bridge-group 44
     bridge-group 44 spanning-disabled
     no bridge-group 44 source-learning
    interface GigabitEthernet1.45
     encapsulation dot1Q 45
     bridge-group 45
     bridge-group 45 spanning-disabled
     no bridge-group 45 source-learning
    interface GigabitEthernet1.46
     encapsulation dot1Q 46
     bridge-group 46
     bridge-group 46 spanning-disabled
     no bridge-group 46 source-learning
    interface BVI1
     mac-address 58f3.9ce0.8038
     ip address 172.16.1.62 255.255.255.0
     ipv6 address dhcp
     ipv6 address autoconfig
     ipv6 enable
    ip forward-protocol nd
    ip http server
    ip http authentication aaa
    no ip http secure-server
    ip http help-path http://www.cisco.com/warp/public/779/smbiz/prodconfig/help/eag
    ip radius source-interface BVI1 
    radius-server attribute 32 include-in-access-req format %h
    radius server 172.16.50.99
     address ipv4 172.16.50.99 auth-port 1645 acct-port 1646
     key 7 104A1D0A4B141D06421224
    bridge 1 route ip
    line con 0
     logging synchronous
    line vty 0 4
     exec-timeout 0 0
     privilege level 15
     logging synchronous
     transport input ssh
    line vty 5 15
     exec-timeout 0 0
     privilege level 15
     logging synchronous
     transport input ssh
    end
    This is My Logfile on Radius Win 2008 : 
    Network Policy Server denied access to a user.
    Contact the Network Policy Server administrator for more information.
    User:
    Security ID: S-1-5-21-858235673-3059293199-2272579369-1162
    Account Name: xxxxxxxxxxxxxxxx
    Account Domain: xxxxxxxxxxx
    Fully Qualified Account Name: xxxxxxxxxxxxxxxxxxx
    Client Machine:
    Security ID: S-1-0-0
    Account Name: -
    Fully Qualified Account Name: -
    OS-Version: -
    Called Station Identifier: -
    Calling Station Identifier: -
    NAS:
    NAS IPv4 Address: 172.16.1.62
    NAS IPv6 Address: -
    NAS Identifier: Aironet2702i
    NAS Port-Type: Async
    NAS Port: -
    RADIUS Client:
    Client Friendly Name: Aironet2702i
    Client IP Address: 172.16.1.62
    Authentication Details:
    Connection Request Policy Name: Use Windows authentication for all users
    Network Policy Name: DTSWIRELESS
    Authentication Provider: Windows
    Authentication Server: xxxxxxxxxxxxxx
    Authentication Type: PAP
    EAP Type: -
    Account Session Identifier: -
    Logging Results: Accounting information was written to the local log file.
    Reason Code: 66
    Reason: The user attempted to use an authentication method that is not enabled on the matching network policy.
    So i will explain problems what i have seen:
    SSID: DTS-Group using authentication EAP with RADIUS and it working great (Authentication Type from Aironet to RADIUS is PEAP)
    SSID:L6-Webauthen-test using web-auth and i had try to compare with RADIUS but ROOT CAUSE is AUTHENTICATION TYPE from Aironet to RADIUS default is PAP. (Reason Code : 66)
    => I had trying to find how to change Authentication Type of Web-Auth on Cisco Aironet from PAP to PEAP or sometime like that for combine with RADIUS.
    Any idea or recommend for me ?
    Thanks for see my case  

    Hi Dhiresh Yadav,
    Many thanks for your reply me,
    I will explain again for clear my problems.
    At this case, i had setup complete SSID DTS-Group use authentication with security as PEAP combine Radius Server running on Window 2008.
    I had login SSID by Account create in AD =>  It's work okay with me. Done
    Problems occurs when i try to use Web-authentication on Vlan45 With SSID :
    dot11 ssid L6-Webauthen-test
       vlan 45
       web-auth
       authentication open 
       dot1x eap profile DTSGROUP
       mbssid guest-mode
    After configured on Aironet and Window Radius , i had try to login with Account create in AD by WebBrowser but it Fail ( i have see mini popup said: Authentication Fail" . So i go to Radius Server and search log on EventViewer.
    This is My Logfile on Radius Win 2008 : 
    Network Policy Server denied access to a user.
    NAS:
    NAS IPv4 Address: 172.16.1.62
    NAS IPv6 Address: -
    NAS Identifier: Aironet2702i
    NAS Port-Type: Async
    NAS Port: -
    RADIUS Client:
    Client Friendly Name: Aironet2702i
    Client IP Address: 172.16.1.62
    Authentication Details:
    Connection Request Policy Name: Use Windows authentication for all users
    Network Policy Name: DTSWIRELESS
    Authentication Provider: Windows
    Authentication Server: xxxxxxxxxxxxxx
    Authentication Type: PAP
    EAP Type: -
    Account Session Identifier: -
    Logging Results: Accounting information was written to the local log file.
    Reason Code: 66
    Reason: The user attempted to use an authentication method that is not enabled on the matching network policy.
    Im  think ROOT CAUSE is :
    PAP is the default authentication type for web-auth users on Aironet 2702i, so it can't combine with Radius Window 2008 because they just support PEAP (CHAPv1,CHAPv2....) => Please give me a tip how to change Authentication Type from PAP to PEAP for Web Authentication on Aironet

  • Does anyone have SSL working with the Sun Java System App Server PE?

    We have been having problems (to say the least) getting SSL to work with the Sun Java Application Server 8.1 Platform Edition.
    We have a signed certificate from VeriSign and have it imported correctly, but when you test it by going to https://localhost:8182/ (note that 8182 is the port set up for SSL) you get a warning mesage saying that the certificate cannot be verified. When you view the certificate you see that it is the one that got automatically generated for you by the app server and not the one we purchased from VeriSign.
    So, I was just wondering if anyone out there has gotten this to work and if so, what document did you follow to tell yoiu how it was done!
    THANK YOU!

    once apon a time i had a real problem with the same issue.. best of luck.. i forget now how to fix.. sorry.

  • Back to Mac - Has anyone got it working?

    I've hooked my laptop up to another ISP and i can't see my desktop in the Shared Section. When i'm on the same network I can see the desktop, share the screen and all that fun stuff. Has anyone got it working? Could it be my network configuration?

    I had a read through the manual that came with Leopard last night and was a little dissapointed to read this part in regard to Back to My Mac:
    With your .Mac membership, an internet connection, and Back to My Mac and sharing services turned on, you can access any of your computers from anywhere on the internet."
    Sounds like you might need a .Mac account for Back to My Mac. I think you can do the same kind of thing with iChat though so i guess you can still take control of someones Mac over the net to help them fix a problem. But you may need .Mac account to, for example, access your home computer from your work computer.
    I could be completely wrong and im certain someone will point this out if i am wrong. Im still getting to grips with all the new features here.

  • Windows key + left and right arrows not working with RemoteApp windows

    My office is deploying RemoteApps to replace certain locally installed applications.  I, and many of my coworkers, have 2-3 monitors and the Windows
    + left and right "snap" function has been an extremely convenient way to juggle multiple windows across multiple monitors.  Unfortunately, it doesn't seem to work with RemoteApp windows.  Does anyone know a way to get this working?

    Hi,
    Based on my test,  I agree with Keith Langmead, it seems Windows key + left or right key cannot work with remoteapp.
    Alex Zhao
    TechNet Community Support

  • My ipod nano is no longer recognized by itunes after I installed windows 8.1.  The ipod nano still is recognized and works with a Windows 7 computer

    My ipod nano is no longer recognized by itunes after I installed windows 8.1.  The ipod nano still is recognized and works with a Windows 7 computer

    Hello, Pete. 
    Here is an article I would recommend going through when an iPod is not recognized by iTunes or the computer.
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    Usually the resolution is updating the Apple Mobile Device Driver.  See the section labeled Verify that the Apple Mobile Device USB Driver is installed > For Windows Vista, Windows 7, and Windows 8 > Update the Apple Mobile Device Driver.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Cheers,
    Jason H. 

Maybe you are looking for