Dot1x clients not authenticated after reload

Hi all,
I have a switch setup with dynamic vlan assignment. Everything works fine until the switch is rebooted. Then none of the pc's are authenticated anymore. I have to do a shut/no shut of all the user ports to start the re-authentication of the pc's.
This is the config I have so far. Am I missing something?
Thanks,
Best Regards,
Joris
Global commands
aaa new-model
aaa authentication dot1x default group radius
aaa authorization network default group radius
aaa accounting dot1x default start-stop group radius
aaa accounting system default start-stop group radius
aaa authorization exec default local if-authenticated
aaa authorization commands 1 default local if-authenticated
aaa authorization commands 15 default local if-authenticated
dot1x system-auth-control
dot1x guest-vlan supplicant
dot1x critical eapol
radius-server host x.x.x.x auth-port 1645 acct-port 1646 key *****
radius-server vsa send accounting
radius-server vsa send authentication
Interface-specific commands
switchport mode access
switchport nonegotiate
switchport port-security maximum 5
switchport port-security
switchport port-security violation restrict
authentication event fail action authorize vlan 200
authentication event server dead action authorize vlan 110
authentication event no-response action authorize vlan 200
authentication order mab dot1x
authentication priority dot1x mab
authentication port-control auto
authentication periodic
mab
no snmp trap link-status
dot1x pae authenticator
dot1x timeout quiet-period 3
dot1x timeout tx-period 3
dot1x max-req 1
storm-control broadcast level 1.00
storm-control multicast level 1.00
storm-control action shutdown
storm-control action trap
no cdp enable
no cdp tlv server-location
no cdp tlv app
spanning-tree portfast

I believe you will need to tell your ports what action to take when the AAA server becomes available. It knows what to do when it's dead or unavailable, but has the default setting when it is returned to service. Likely the switch is tripping AAA dead or non-responsive for a bit during boot and its a race. You want the port to reauth when the AAA server becomes avail.
Sent from Cisco Technical Support iPhone App

Similar Messages

  • Error: "javax.mail.MessagingException: 505 5.7.3 Client not Authenticated

    While trying to run a program to sent sms to mobile(with airtel connection)it shows the Error:
    "javax.mail.MessagingException: 505 5.7.3 Client was not Authenticated.
    If anyone knows how to resolve this problem please reply.
    The Code is as follows:
    import java.io.*;
    import java.net.InetAddress;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class EmailSMS
    String TO;
    String FROM;
    String SUBJECT,TEXT,MAILHOST,LASTERROR;
    public static void main(String [] args) throws Exception
         EmailSMS SMS=new EmailSMS();
         SMS.setMailHost("kcsl.com");
         SMS.setTo("[email protected]");
         SMS.setFrom("[email protected]");
         SMS.setSubject("");
         SMS.setText("Hello World");
         boolean ret = SMS.send();
         if(ret){
              System.out.println("SMS was sent");
         else
              System.out.println("SMS was not sent"+SMS.getLastError());
    public EmailSMS()
         TO=null;
         FROM=null;
         SUBJECT=null;
         TEXT=null;
         LASTERROR="No methods calls";
    public void setTo(String to){TO=to;}
    public String getTo(){return TO;}
    public void setFrom (String from){FROM=from;}
    public String getFrom(){ return FROM;}
    public void setSubject(String subject){SUBJECT=subject;}
    public String getSubject(){return SUBJECT;}
    public void setText(String text){TEXT=text;}
    public void setMailHost(String host){MAILHOST=host;}
    public String getMailHost(){return MAILHOST;}
    public String getLastError(){return LASTERROR;}
    public boolean send()
         int maxLength;
         int msgLength;
         //Check to make sure that the parameters are correct
         if(TO.indexOf("mobile.att.net")>0)
              maxLength=140;
         else if(TO.indexOf("messaging.nextel.com")>0)
         {maxLength=280;}
         else if(TO.indexOf("messaging.sprintpcs.com")>0)
         {maxLength=100;}
         else maxLength=160;
         msgLength=FROM.length()+1+SUBJECT.length()+1+TEXT.length();
         if(msgLength>maxLength)
              LASTERROR="SMS length too long";
              return false;
         //set email properties
         Properties props=System.getProperties();
         if(MAILHOST!=null){props.put("mail.smtp.host",MAILHOST);}
         Session session=Session.getDefaultInstance(props,null);
         try{
              Message msg=new MimeMessage(session);
              if(FROM!=null){msg.setFrom(new InternetAddress(FROM));}
              else{msg.setFrom();}
              msg.setSubject(SUBJECT);
              msg.setText(TEXT);
              msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(TO,false));
              msg.setSentDate(new Date());
              Transport.send(msg);
              LASTERROR="Success";
              return true;
         catch(MessagingException max ){LASTERROR=max.getMessage();
         return false;}
    thanku

    Hi,
    it seems to me that you must authenticate with your smtp host. In order to do so, try following:
    While trying to run a program to sent sms to
    mobile(with airtel connection)it shows the Error:
    "javax.mail.MessagingException: 505 5.7.3 Client was
    not Authenticated.
    If anyone knows how to resolve this problem please
    reply.
    The Code is as follows:
    import java.io.*;
    import java.net.InetAddress;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class EmailSMS
    String TO;
    String FROM;
    String SUBJECT,TEXT,MAILHOST,LASTERROR;
    public static void main(String [] args) throws
    Exception
         EmailSMS SMS=new EmailSMS();
         SMS.setMailHost("kcsl.com");
         SMS.setTo("[email protected]");
         SMS.setFrom("[email protected]");
         SMS.setSubject("");
         SMS.setText("Hello World");
         boolean ret = SMS.send();
         if(ret){
              System.out.println("SMS was sent");
         else
    System.out.println("SMS was not
    t sent"+SMS.getLastError());
    public EmailSMS()
         TO=null;
         FROM=null;
         SUBJECT=null;
         TEXT=null;
         LASTERROR="No methods calls";
    public void setTo(String to){TO=to;}
    public String getTo(){return TO;}
    public void setFrom (String from){FROM=from;}
    public String getFrom(){ return FROM;}
    public void setSubject(String
    subject){SUBJECT=subject;}
    public String getSubject(){return SUBJECT;}
    public void setText(String text){TEXT=text;}
    public void setMailHost(String host){MAILHOST=host;}
    public String getMailHost(){return MAILHOST;}
    public String getLastError(){return LASTERROR;}
    public boolean send()
         int maxLength;
         int msgLength;
         //Check to make sure that the parameters are correct
         if(TO.indexOf("mobile.att.net")>0)
              maxLength=140;
         else if(TO.indexOf("messaging.nextel.com")>0)
         {maxLength=280;}
         else if(TO.indexOf("messaging.sprintpcs.com")>0)
         {maxLength=100;}
         else maxLength=160;
         msgLength=FROM.length()+1+SUBJECT.length()+1+TEXT.leng
    h();
         if(msgLength>maxLength)
              LASTERROR="SMS length too long";
              return false;
         //set email properties
         Properties props=System.getProperties();
         if(MAILHOST!=null){props.put("mail.smtp.host",MAILHOST
    Session
    session=Session.getDefaultInstance(props,null);
         try{     // Get a Transport object to send e-mail
                   Transport bus = session.getTransport("smtp");
                   // Connect only once here
                   // Transport.send() disconnects after each send
                   bus.connect(host, username, password);
              Message msg=new MimeMessage(session);
    if(FROM!=null){msg.setFrom(new
    w InternetAddress(FROM));}
              else{msg.setFrom();}
              msg.setSubject(SUBJECT);
              msg.setText(TEXT);
              msg.setRecipients(Message.RecipientType.TO,InternetAd
    ress.parse(TO,false));
              msg.setSentDate(new Date());// Send message
              bus.send(msg);
              bus.close();
              LASTERROR="Success";
              return true;
    catch(MessagingException max
    ){LASTERROR=max.getMessage();
         return false;}
    thankuGood luck

  • Signature not authenticated after 5.3 download

    Hi, I can't install 5.3 because when running the installer I get either the message "Signature not authenticated" (from direct run from site) or when unpacking the installation files after download I see the unpacking does not start (only 5.3 folder has been created).

    When downloading for LR5.3 RC I get the message (translated): The signature of Lightroom_5_LS11_win_5_3.exe is damaged or invalid. Then the download is removed. When downloading the file and then execute the exe the installer stops the unpacking procedure after creating the target unpack folder 5.3

  • Client not authenticated.

    Hi Guys,
    i have the following program
    import sun.net.smtp.SmtpClient;
    import java.io.PrintStream;
    public class EmailExample {
    public static void main(String[] args) {
    try{
    SmtpClient send = new SmtpClient("mySMTPIpAddress");
    //assumes localhost has the SMTP
    send.from("[email protected]");
    send.to("[email protected]");
    PrintStream message = send.startMessage();
    message.println("To: [email protected]");
    message.println("From: [email protected]");
    message.println("Subject: Hi");
    message.println("Hai man How is life")
    send.closeServer();
    catch(Exception e) {
    System.out.println(e.toString());
    e.printStackTrace();
    i get the following error:
    sun.net.smtp.SmtpProtocolException: 454 5.7.3 Client was not authenticated.
    sun.net.smtp.SmtpProtocolException: 454 5.7.3 Client was not authenticated.
    at sun.net.smtp.SmtpClient.issueCommand(SmtpClient.java:51)
    at sun.net.smtp.SmtpClient.from(SmtpClient.java:102)
    at EmailExample.main(EmailExample.java:11)
    any comments would be really appreciated.

    You can find a SMTP Mailer Component that will easily send email messages, including attachments, at http://www.codecadet.com/components/ComponentDetail.aspx?ComponentID=ei47v8RePm0=. This component provides an easy to use interface/wrapper to the Java Mail API. Souce code and documentation is included.

  • "Client not authorized" after start, OK after deploy

    Whenever I try to create a session bean (stateful or stateless doesn't matter) right after app server startup, I get the exception "javax.ejb.AccessLocalException: Client not authorized for this invocation.". If I then redeploy the ear everything works fine. If I disable and then enable the application, the error comes back.
    My role mappings are in the "sun-application.xml" file. The same EAR works fine in App Server 7 and 8 but not in 8.1.
    Anyone else seen this?

    Hi,
    you are using Sun Java System App Server, right?
    In my case it was a policy problem... I had some servlets fetching classes via Java Reflection.
    I was lazy an set the <domain1>/config/server.policy file to AllPermission granted, not nice, but worked.
    You may finetune your policies :-)
    bye!

  • Config Register Not changing after reload

    Hi Al,
    I am having an issue with a Cisco 3850 Catalyst switch, issue as below:
    - Current config register is 0x142 and have configured the config register to 0x102 but even after reload the new config register does not come in place.
    - Have reloaded the switch 2x but with no luck. Changed the config register on the primary and secondary switch yet no luck. It is running SSO.
    Show version:
    sh ver
    Cisco IOS Software, IOS-XE Software, Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 03.03.02SE RELEASE SOFTWARE (fc2)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2014 by Cisco Systems, Inc.
    Compiled Thu 20-Feb-14 21:17 by prod_rel_team
    Cisco IOS-XE software, Copyright (c) 2005-2014 by cisco Systems, Inc.
    All rights reserved.  Certain components of Cisco IOS-XE software are
    licensed under the GNU General Public License ("GPL") Version 2.0.  The
    software code licensed under GPL Version 2.0 is free software that comes
    with ABSOLUTELY NO WARRANTY.  You can redistribute and/or modify such
    GPL code under the terms of GPL Version 2.0.
    (http://www.gnu.org/licenses/gpl-2.0.html) For more details, see the
    documentation or "License Notice" file accompanying the IOS-XE software,
    or the applicable URL provided on the flyer accompanying the IOS-XE
    software.
    ROM: IOS-XE ROMMON
    BOOTLDR: CAT3K_CAA Boot Loader (CAT3K_CAA-HBOOT-M) Version 1.2, RELEASE SOFTWARE (P)
    XXXX uptime is 1 day, 13 hours, 53 minutes
    Uptime for this control processor is 1 day, 13 hours, 56 minutes
    System returned to ROM by reload at 23:44:31 ADST Wed Feb 26 2014
    System restarted at 23:50:23 ADST Wed Feb 26 2014
    System image file is "flash:packages.conf"
    Last reload reason: Reload command
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    If you require further assistance please contact us by sending email to
    [email protected].
    License Level: Lanbase
    License Type: Permanent
    Next reload license Level: Lanbase
    9 Virtual Ethernet interfaces
    56 Gigabit Ethernet interfaces
    8 Ten Gigabit Ethernet interfaces
    2048K bytes of non-volatile configuration memory.
    4194304K bytes of physical memory.
    250456K bytes of Crash Files at crashinfo:.
    250456K bytes of Crash Files at crashinfo-2:.
    1609272K bytes of Flash at flash:.
    1609272K bytes of Flash at flash-2:.
    0K bytes of Dummy USB Flash at usbflash0:.
    0K bytes of Dummy USB Flash at usbflash0-2:.
    0K bytes of  at webui:.
    Base Ethernet MAC Address          :
    Motherboard Assembly Number        :
    Motherboard Serial Number          :
    Model Revision Number              :
    Motherboard Revision Number        :
    Model Number                       :
    System Serial Number             :
    Switch Ports Model              SW Version        SW Image              Mode  
    *    1 32    WS-C3850-24T       03.03.02SE        cat3k_caa-universalk9 INSTALL
         2 32    WS-C3850-24T       03.03.02SE        cat3k_caa-universalk9 INSTALL
    Switch 02
    Switch uptime                      : 1 day, 13 hours, 56 minutes
    Base Ethernet MAC Address          :
    Motherboard Assembly Number        :
    Motherboard Serial Number          :
    Model Revision Number              :
    Motherboard Revision Number        :
    Model Number                       : WS-C3850-24T
    System Serial Number               :
    Configuration register is 0x142 (will be 0x102 at next reload)

    I have a 3850 switch with an identical issue.  I have been unable to get the device to boot using the existing config .
    I have the following output in 'sh ver'
    Configuration register is 0x142 (will be 0x102 at next reload)
    BUT the device does not reload with 0x102, at the next reload, but continues to exhibit identical behaviour after repeated reboots.
    Kind regards

  • SSID not Broadcasting after reload

    Hi all,
    I have Build a 5508-HA Cluster (7.4.100.0) , hat to reboot this cluster due to Licens install.
    After the reboot atleast one of the SSIDs was not broadcasting anymore, even the checkbox was checked.
    What did I do:
    Installed the Licenses @ Freiday 12:00
    @17:15 reload active WLC, wait till controller is up again (a few minutes pingable)
    @17:25 force failover to first controller.
    check a few SSIDs but not all, those who where check are ok.
    @monday 07:00 clients complaining not seeing the SSID (some where connected)
    hat somebody the same problem?
    is this a known problem?
    How to avoid this problem?
    Thanks
    Willem

    I'm not sure it was only one SSID that hat problems.
    The first messages was that one (1) SSID was not broadcasting and atleast one was broadcasting (no statement about the others).
    The customer tells me now that e few other SSID where also not broacasting.
    Can I check on PI 1.2.1 if a SSID was Broadcasting?

  • Client not working after upgrade

    Hi,
    I am upgrading my SAP 8.8 SP:00 Pl 10 to PL 16. with the help of upgrade wizard all the SAP items are upgraded from PL 10 to Pl 16.
    When i was login in through SAP client it asked for upgrade i clicked yes after some time the upgrade stop and the SAP client logo on the server disappear. Now i am not able to login since there is no client to login.
    I tried to install client from set up file but it gives following error
    Error Number: 0x80040702
    Description: Failed to load Dll: creator Dll
    I have refered SAP Note: 1408662 and also refered other thread but its not working
    I tried to uninstall client from add/ remove program but i am not able to do so
    Pls provide solution since i am not able to login.

    Hi,
    I have already installed the recommended c++ version as per SAP note, still it is not working. I tried to uninstall the client from
    B1SHR folder but it gives me error.
    The server is properly upgraded and problem exists on 3 of client machines.
    I have to any how remove this client file or make it working to acces SAP else i wil have to format system which i dont want to do.

  • Will not boot after reload of OS

    Ok, so here is my tale of trouble.  I have a Lenovo T61 Type 6463-5BU, S/N L3-xxxxx.  The hard drive died a couple of weeks ago, and I have since then received a replacement drive under warranty, i.e. the exact same type of drive.  We had a backup image of the old system under Norton Ghost and managed to get the image back onto the new drive once it was installed.  To do this we used a utility OS called
    "BartPC".
    Since then I have done just about everything I can think of to get the system to boot, including playing with the BIOS settings, setting the drive to "boot" and "active" using a number of utilities including good old "diskpart" and several others.  The drive will simply not boot.  A couple of times I was able to read the drive using Bart in command prompt mode, but I never managed to boot from it.
    The laptop does have a finger print reader, but I have been told several times that this does not have anything to do with the problem.  So... before I cut someone's finger off and swipe it across the reader... what am I doing wrong here?
    Moderator Note; s/n edited for members own protection
    Solved!
    Go to Solution.

    Absolute pre-req / reset that BIOS to default settings, lets eliminate any setting that can also hose you up even after you've solved the problem
    Clarify when you described reading the drive a couple times from "BartPC" , are the drives contents viewable EVERY TIME BART is used for boot ? //// did you mean Bart PE?  It has to be asked since the PE's and BART is the widely accepted recovery tool and saved myself on numerous sytems and esatblishing the post with access to a BART-PE will assist with follow up suggestions knowledable of the tools at your dispoalsa.
    If I had to make a best guess and from a decent portfolio of steps you've tried, I would speculate you need a chkdsk  because drives afflicted with mechanical failure will corrupt files while they're physically dying.  More often the cause of disk failure isn't mechanical inside but actually a scorched or failed circuit off the bottom of side and removing the circuit board to view the hidden side can be extremely revealing of where the problem lies. 
    if you haven't already returned the dead drive, then examine the PCB and it is often affixed with TORX heads to prevent the toddlers from removing it while the rest of the world had received a torx head screwdriver set before their 8th birtday.  Your probelm could be asily sovled by swapping the pcb from the new unbootable replacement onto your old drive where the data is still hostage and resuming a normal life.
    A drive that is accessible and only sporadically between sessions or seems to crash inexplicably and incosnteslty could be easily solved with a chkdsk repair included form Micrsofot,
    chkdsk c:  /f  /x and if that data is really trashed those can take a day or even more to finish.
    Assuming you aren't trying something heroic such as taking an image from an IDE drive and reloading to a SATA disk,  get a USB floppy drive and create an NT boot disk. Your description hints you're familiar with boot loaders and the comforting part of NT boot disks is they only require being formatted by an NT kernel and even a format a: /q is the necessary first part and no /sys switches such as Windows95 and FAT32.
    - Copy a compatible from equal or newer version of boot.ini, ntldr and ntdetect.com to the floppy, in the history of Windows most often an older ste of boot files can still kick off a newer version such as NT4 / SP4 versions of those files could still load Windows 2000, but it seem XP was a delineation and w/o any knowledge of how isolated you and this system may be located take the best road and load those startup files from the old image but that is assuming you know they weren't damaged or from a comparble OS
    The key to this step is having the right boot.ini settings and if the drive is mounted in the native bay you can keep the boot.ini lines to "basic"
    multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="DontG​etPreoccupedWithTheOSdecreiptoin, but don't make it too long enteirh and if you still insist on spaces then ensure you use quote3s.l" Notice how Cutler chose to use Zero notation for the controller and disk ID but got cheeky on the partiont numbers so the first partyion INS'T PARTIOTION ZERO LIKE THE REST OF HIS PATHS.
    Just becase you see a boot menu doesn't mean the problem is becoming solvede, the floppy disk should give you the same boot menu even if the system was diskless.
    I'm advising you try tidfeeretn partiton numbers since you mentioned you've been dinking around with this disk and with ut's and it is possible the actual boot partion ID# could've been changed depending on just what was excueted/
    Assuming you didn't use a diffetrent direcoty name than Windows then this one should work rather well and you can copy this block of text as the test boot.ini
    [boot loader]
    timeout=30
    default=multi(0)disk(0)rdisk(0)partition(1)\WINDOW​S
    [operating systems]
    multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="PARTI​TION 1" /fastdetect /sos
    multi(0)disk(0)rdisk(0)partition(2)\WINDOWS="PARTI​TION 2" /fastdetect /sos
    multi(0)disk(0)rdisk(0)partition(3)\WINDOWS="PARTI​TION 3" /fastdetect /sos
    multi(0)disk(0)rdisk(0)partition(4)\WINDOWS="PARTI​TION 4" /fastdetect /sos
    multi(0)disk(0)rdisk(0)partition(5)\WINDOWS="PARTI​TION 5" /fastdetect /sos
    multi(0)disk(0)rdisk(0)partition(6)\WINDOWS="PARTI​TION 6" /fastdetect /sos
    Still failing, then eject as much as possible from the TPad to eliminate some wieird interfeance or electrical short and this inlcudes any accessible DIMM's while still leaving enough RAM for minimal sysatem boot, if you can just reach POST then it seems your problems may be solved.
    I
    Still failingg,,,, if you have access to an ultrabay adapter, mount the new but unbootable disk into the ulotra Bay, power off the sytsem and drop the batteries but leave the BIOS battery alone
    REmain unpowered for a few seoncs and to lfush remanants, the Intel Chip Set has gained sophistaicantion and has really nhice tigtht mini os of its own and can even be interaced with hypertmenail and some port commands.
    It is unlikey the chipset is corrupt but it can retain last session info longer than you'd think and dropping all batteries is the reason by elimiatinng this variable.
    Restart and the fialed disk inside slot 2 and w/o the boot disk and boot.ini I gave you, observe for any differences or progression versus before
    If that still fails, then return here with details from your tests, ...but you get to a point where you realize you waste more time trying to repair something than just replacing it and unless there is software on this system you can't afford to lose and it has to be preserved in its state, then you could consider laying that existing image from your new but non starter onto a separaete locaiotn and erinstalling your pre3ferrred OS to migrate the data back and your best to merge the session state.
    Another altrenative and aasuming you have the horsepower and free space, take that coy of ghost and lay it down onto a virtual machine, since Microsoft Virtual PC and VMWare emulate better than anytihing else,  it is possible to migrate a physical disk and array into a vhd and the transplated OS will never see a difference.
    This is an emerging solution for tradiioanal users whoa re loathe to change when they find and manage to get a computer that works just the way they want ( can you blame them ?).  I volunteer at an assited living center and a violinist who had configured her 12 year old Windows95 laptop just the way she liked it and only went online about four times a year her box died and the center upgradedher to a lightweight x200 and she boots into windows XP and it aumoatmaily loads MS Virtual PC and her old Win95 system and music software and w/o er interaction so she can have her old computer on new deck and allowed to eat with metal utensils sicne she's calmer now.
    If you can
    Don't just sit there, take a second and use the Kudo's button to compliment the people who help you.

  • Jabber client not authenticating outside of network

    Everything works inside of our network... ie authenticating with the VCS but not outside the network.
    I started a log on the Expressway and then went outside of our network and tried to connect to Jabber.
    I have my expressway zones set to do not check credentials and my control settings set to check credentials.
    the control is connected to AD.... and the expressway is connected to LDAP (not sure if that matters)
    I've got the jabber template set up in TMS with the VCSE address in.
    I'm not too technical with this but would anybody be able to help.
    This is the log below.. any ideas why it won't log in?
    Detail="Receive Request Method=SUBSCRIBE, Request-URI=sip:[email protected], [email protected]"
    2013-08-07T14:24:20+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:20,949" Module="network.sip" Level="DEBUG":  Src-ip="82.132.234.165"  Src-port="39014"
    SIPMSG:
    |SUBSCRIBE sip:[email protected] SIP/2.0
    Via: SIP/2.0/TLS 10.5.161.68:54616;branch=z9hG4bKb90dd0448af3919e2bf7b557b3e264e4.1;received=82.132.234.165;rport=39014
    Call-ID: [email protected]
    CSeq: 201 SUBSCRIBE
    Contact: <sip:[email protected]:54616;transport=tls>
    From: <sip:[email protected]>;tag=2c7a45453c26f945
    To: <sip:[email protected]>
    Max-Forwards: 70
    Route: <sip:vcse ip address:5061;lr;transport=tls>
    User-Agent: TANDBERG/774 (MCX 4.5.7.16762) - Windows
    Expires: 300
    Event: ua-profile;model=movi;vendor=tandberg.com;profile-type=user;version=4.5.7.16762;clientid="S-1-5-21-3613096711-2978834610-2195627325";connectivity=1
    Accept: application/pidf+xml
    Content-Length: 0
    |
    2013-08-07T14:24:20+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:20,951" Module="network.sip" Level="INFO":  Dst-ip="82.132.234.165"  Dst-port="39014"   Detail="Sending Response Code=404, Method=SUBSCRIBE, To=sip:[email protected], [email protected]"
    2013-08-07T14:24:20+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:20,951" Module="network.sip" Level="DEBUG":  Dst-ip="82.132.234.165"  Dst-port="39014"
    SIPMSG:
    |SIP/2.0 404 Not Found
    Via: SIP/2.0/TLS 10.5.161.68:54616;branch=z9hG4bKb90dd0448af3919e2bf7b557b3e264e4.1;received=82.132.234.165;rport=39014;ingress-zone=DefaultZone
    Call-ID: [email protected]
    CSeq: 201 SUBSCRIBE
    From: <sip:[email protected]>;tag=2c7a45453c26f945
    To: <sip:[email protected]>;tag=ac4e538d118e31a0
    Server: TANDBERG/4120 (X7.2.1)
    Warning: 399 192.168.10.10:5061 "Policy Response"
    Content-Length: 0
    |
    2013-08-07T14:24:21+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:21,125" Module="network.tcp" Level="DEBUG":  Src-ip="82.132.234.165" Src-port="39014" Dst-ip="192.168.10.10" Dst-port="5061" Detail="TCP Connection Closed"
    2013-08-07T14:24:34+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:34,501" Module="network.h323" Level="INFO":  Src-ip="10.10.1.70"  Src-port="1719"
      Detail="Received RAS NST  SeqNum=22573  ASSENT Probe"
    2013-08-07T14:24:34+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:34,501" Module="network.h323" Level="DEBUG":  Src-ip="10.10.1.70"  Src-port="1719"
    Received RAS PDU:
    value RasMessage ::= nonStandardMessage :
       requestSeqNum 22573,
       nonStandardData
         nonStandardIdentifier h221NonStandard :
           t35CountryCode 130,
           t35Extension 1,
           manufacturerCode 256
         data '03000004'H
       genericData
           id nonStandard : 'C2F2D2A2152711DDA1230FC456D89593'H,
           parameters
               id nonStandard : 'C2F2D2A2152711DDA1230FC456D89593'H,
               content raw : '3C7265736F757263657573616765696E666F3E3C74726176657273616C63616C6C7361 ...'H
    2013-08-07T14:24:34+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:34,501" Module="network.h323" Level="INFO":  Dst-ip="10.10.1.70"  Dst-port="1719"
      Detail="Sending RAS NST  SeqNum=22573  ASSENT Probe"
    2013-08-07T14:24:34+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:34,501" Module="network.h323" Level="DEBUG":  Dst-ip="10.10.1.70"  Dst-port="1719"
    Sending RAS PDU:
    value RasMessage ::= nonStandardMessage :
       requestSeqNum 22573,
       nonStandardData
         nonStandardIdentifier h221NonStandard :
           t35CountryCode 130,
           t35Extension 1,
           manufacturerCode 256
         data '03000004'H
       genericData
           id nonStandard : 'C2F2D2A2152711DDA1230FC456D89593'H,
           parameters
               id nonStandard : 'C2F2D2A2152711DDA1230FC456D89593'H,
               content raw : '3C7265736F757263657573616765696E666F3E3C74726176657273616C63616C6C7361 ...'H
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,911" Module="network.sip" Level="INFO":  Src-ip="10.10.1.70"  Src-port="25596"   Detail="Receive Request Method=OPTIONS, Request-URI=sip:192.168.10.10:7001;transport=tcp, [email protected]"
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,912" Module="network.sip" Level="DEBUG":  Src-ip="10.10.1.70"  Src-port="25596"
    SIPMSG:
    |OPTIONS sip:192.168.10.10:7001;transport=tcp SIP/2.0
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK5380daf2a89606ecf38ba965c659b393156967;received=10.10.1.70;rport=25596
    Call-ID: [email protected]
    CSeq: 57054 OPTIONS
    From: <sip:10.10.1.70>;tag=719e3d6280295d7b
    To: <sip:192.168.10.10:7001>
    Max-Forwards: 0
    User-Agent: TANDBERG/4120 (X7.2.1)
    Supported: com.tandberg.vcs.resourceusage
    Content-Type: text/xml
    Content-Length: 250
    <resourceusageinfo><traversalcallsavailable>250</traversalcallsavailable><nontraversalcallsavailable>750</nontraversalcallsavailable><registrationsavailable>2492</registrationsavailable><turnrelaysavailable>0</turnrelaysavailable></resourceusageinfo>|
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,912" Module="network.sip" Level="INFO":  Dst-ip="10.10.1.70"  Dst-port="25596"   Detail="Sending Response Code=401, Method=OPTIONS, To=sip:192.168.10.10:7001, [email protected]"
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,912" Module="network.sip" Level="DEBUG":  Dst-ip="10.10.1.70"  Dst-port="25596"
    SIPMSG:
    |SIP/2.0 401 Unauthorised
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK5380daf2a89606ecf38ba965c659b393156967;received=10.10.1.70;rport=25596
    Call-ID: [email protected]
    CSeq: 57054 OPTIONS
    From: <sip:10.10.1.70>;tag=719e3d6280295d7b
    To: <sip:192.168.10.10:7001>;tag=f930caa190c2a48b
    Server: TANDBERG/4120 (X7.2.1)
    WWW-Authenticate: Digest realm="TraversalZone", nonce="feba5014f914c7743ace26e95b2ed4214410a1116851e6125ba93c836de2", opaque="AQAAAJEZC9EK4+dBfO64t+LS/P173VZ7", stale=FALSE, algorithm=MD5, qop="auth"
    Content-Length: 0
    |
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,914" Module="network.sip" Level="INFO":  Src-ip="10.10.1.70"  Src-port="25596"   Detail="Receive Request Method=OPTIONS, Request-URI=sip:192.168.10.10:7001;transport=tcp, [email protected]"
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,914" Module="network.sip" Level="DEBUG":  Src-ip="10.10.1.70"  Src-port="25596"
    SIPMSG:
    |OPTIONS sip:192.168.10.10:7001;transport=tcp SIP/2.0
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK2c6b4eb262bcae2e8b888fc0e7b918ab156968;received=10.10.1.70;rport=25596
    Call-ID: [email protected]
    CSeq: 57055 OPTIONS
    From: <sip:10.10.1.70>;tag=719e3d6280295d7b
    To: <sip:192.168.10.10:7001>
    Max-Forwards: 0
    User-Agent: TANDBERG/4120 (X7.2.1)
    Authorization: Digest nonce="feba5014f914c7743ace26e95b2ed4214410a1116851e6125ba93c836de2", realm="TraversalZone", opaque="AQAAAJEZC9EK4+dBfO64t+LS/P173VZ7", algorithm=MD5, uri="sip:192.168.10.10:7001;transport=tcp", username="admin", response="2658c3d3bbf7d48840e5ec32de3f20e9", qop=auth, cnonce="2aac9373e769726b6081804648fb9451f601dbbb9c4de38ab124c5a2ee0b", nc=00000001
    Supported: com.tandberg.vcs.resourceusage
    Content-Type: text/xml
    Content-Length: 250
    <resourceusageinfo><traversalcallsavailable>250</traversalcallsavailable><nontraversalcallsavailable>750</nontraversalcallsavailable><registrationsavailable>2492</registrationsavailable><turnrelaysavailable>0</turnrelaysavailable></resourceusageinfo>|
    2013-08-07T14:24:37+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:37,915" Module="network.http" Level="DEBUG":  Message="Request" Method="POST" URL="http://127.0.0.1:9998/credential/name/admin" Ref="0x4f7dc60"
    2013-08-07T14:24:37+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:37,917" Module="network.http" Level="DEBUG":  Message="Response" Src-ip="127.0.0.1" Src-port="9998" Dst-ip="127.0.0.1" Dst-port="48225" Response="200 OK" ResponseTime="0.002104" Ref="0x4f7dc60"
    2013-08-07T14:24:37+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:37,917" Module="network.ldap" Level="INFO":   Detail="Authentication credential found in directory for identity: admin"
    2013-08-07T14:24:37+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:37,918" Module="network.sip" Level="INFO":  Dst-ip="10.10.1.70"  Dst-port="25596"   Detail="Sending Response Code=200, Method=OPTIONS, To=sip:192.168.10.10:7001, [email protected]"
    2013-08-07T14:24:37+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:37,918" Module="network.sip" Level="DEBUG":  Dst-ip="10.10.1.70"  Dst-port="25596"
    SIPMSG:
    |SIP/2.0 200 OK
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK2c6b4eb262bcae2e8b888fc0e7b918ab156968;received=10.10.1.70;rport=25596
    Call-ID: [email protected]
    CSeq: 57055 OPTIONS
    From: <sip:10.10.1.70>;tag=719e3d6280295d7b
    To: <sip:192.168.10.10:7001>;tag=84b7be29d1c57166
    Server: TANDBERG/4120 (X7.2.1)
    Supported: com.tandberg.vcs.resourceusage,path,outbound,gruu
    Content-Type: text/xml
    Content-Length: 253

    Thanks Alok.
    Yes there was a device provisioning key on the expressway so i deleted it, rebooted and created a log again.
    See below:
    Module="network.tcp" Level="DEBUG":  Src-ip="82.132.238.203" Src-port="14453" Dst-ip="192.168.10.10" Dst-port="5061" Detail="TCP Connecting"
    2013-08-23T09:43:33+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:33,440" Module="network.tcp" Level="DEBUG":  Src-ip="82.132.238.203" Src-port="14453" Dst-ip="192.168.10.10" Dst-port="5061" Detail="TCP Connection Established"
    2013-08-23T09:43:34+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:34,391" Module="network.sip" Level="INFO":  Src-ip="82.132.238.203"  Src-port="14453"   Detail="Receive Request Method=SUBSCRIBE, Request-URI=sip:[email protected], [email protected]"
    2013-08-23T09:43:34+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:34,391" Module="network.sip" Level="DEBUG":  Src-ip="82.132.238.203"  Src-port="14453"
    SIPMSG:
    |SUBSCRIBE sip:[email protected] SIP/2.0
    Via: SIP/2.0/TLS 10.86.172.38:63574;branch=z9hG4bK903ff4692dfe38138afbaad34d190d4f.1;received=82.132.238.203;rport=14453
    Call-ID: [email protected]
    CSeq: 401 SUBSCRIBE
    Contact:
    From: [email protected]>;tag=eb987793775b735c
    To: [email protected]>
    Max-Forwards: 70
    Route:
    User-Agent: TANDBERG/774 (MCX 4.5.7.16762) - Windows
    Expires: 300
    Event: ua-profile;model=movi;vendor=tandberg.com;profile-type=user;version=4.5.7.16762;clientid="S-1-5-21-3613096711-2978834610-2195627325";connectivity=1
    Accept: application/pidf+xml
    Content-Length: 0
    |
    2013-08-23T09:43:34+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:34,393" Module="network.sip" Level="INFO":  Dst-ip="82.132.238.203"  Dst-port="14453"   Detail="Sending Response Code=404, Method=SUBSCRIBE, To=sip:[email protected], [email protected]"
    2013-08-23T09:43:34+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:34,393" Module="network.sip" Level="DEBUG":  Dst-ip="82.132.238.203"  Dst-port="14453"
    SIPMSG:
    |SIP/2.0 404 Not Found
    Via: SIP/2.0/TLS 10.86.172.38:63574;branch=z9hG4bK903ff4692dfe38138afbaad34d190d4f.1;received=82.132.238.203;rport=14453;ingress-zone=DefaultZone
    Call-ID: [email protected]
    CSeq: 401 SUBSCRIBE
    From: [email protected]>;tag=eb987793775b735c
    To: [email protected]>;tag=b9f0520ef1275ce7
    Server: TANDBERG/4120 (X7.2.1)
    Warning: 399 192.168.10.10:5061 "Policy Response"
    Content-Length: 0
    |
    2013-08-23T09:43:34+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:34,559" Module="network.tcp" Level="DEBUG":  Src-ip="82.132.238.203" Src-port="14453" Dst-ip="192.168.10.10" Dst-port="5061" Detail="TCP Connection Closed"
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,117" Module="network.sip" Level="INFO":  Src-ip="10.10.1.70"  Src-port="26542"   Detail="Receive Request Method=OPTIONS, Request-URI=sip:192.168.10.10:7001;transport=tcp, [email protected]"
    2013-08-23T09:43:38+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:38,118" Module="network.sip" Level="DEBUG":  Src-ip="10.10.1.70"  Src-port="26542"
    SIPMSG:
    |OPTIONS sip:192.168.10.10:7001;transport=tcp SIP/2.0
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK16dd0968b715a30f8c55713c807357dc325019;received=10.10.1.70;rport=26542
    Call-ID: [email protected]
    CSeq: 53437 OPTIONS
    From: ;tag=cb2f0d0b23477f46
    To:
    Max-Forwards: 0
    User-Agent: TANDBERG/4120 (X7.2.1)
    Supported: com.tandberg.vcs.resourceusage
    Content-Type: text/xml
    Content-Length: 250
    25075024920|
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,118" Module="network.sip" Level="INFO":  Dst-ip="10.10.1.70"  Dst-port="26542"   Detail="Sending Response Code=401, Method=OPTIONS, To=sip:192.168.10.10:7001, [email protected]"
    2013-08-23T09:43:38+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:38,118" Module="network.sip" Level="DEBUG":  Dst-ip="10.10.1.70"  Dst-port="26542"
    SIPMSG:
    |SIP/2.0 401 Unauthorised
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK16dd0968b715a30f8c55713c807357dc325019;received=10.10.1.70;rport=26542
    Call-ID: [email protected]
    CSeq: 53437 OPTIONS
    From: ;tag=cb2f0d0b23477f46
    To: ;tag=257e23d5cd1864a0
    Server: TANDBERG/4120 (X7.2.1)
    WWW-Authenticate: Digest realm="TraversalZone", nonce="0f1936bcd3c4c58b86d27e88a7178d43c0c8a2e34c5b6afe88e779d0be5b", opaque="AQAAAHHRU8cD8y+XxpFAF9j93sa6Vrns", stale=FALSE, algorithm=MD5, qop="auth"
    Content-Length: 0
    |
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,119" Module="network.sip" Level="INFO":  Src-ip="10.10.1.70"  Src-port="26542"   Detail="Receive Request Method=OPTIONS, Request-URI=sip:192.168.10.10:7001;transport=tcp, [email protected]"
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,119" Module="network.sip" Level="DEBUG":  Src-ip="10.10.1.70"  Src-port="26542"
    SIPMSG:
    |OPTIONS sip:192.168.10.10:7001;transport=tcp SIP/2.0
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bKbe71a5d177af210e973b8f490f2e9f36325020;received=10.10.1.70;rport=26542
    Call-ID: [email protected]
    CSeq: 53438 OPTIONS
    From: ;tag=cb2f0d0b23477f46
    To:
    Max-Forwards: 0
    User-Agent: TANDBERG/4120 (X7.2.1)
    Authorization: Digest nonce="0f1936bcd3c4c58b86d27e88a7178d43c0c8a2e34c5b6afe88e779d0be5b", realm="TraversalZone", opaque="AQAAAHHRU8cD8y+XxpFAF9j93sa6Vrns", algorithm=MD5, uri="sip:192.168.10.10:7001;transport=tcp", username="admin", response="fc47aac5c0320dbad26cb6d43a6758fc", qop=auth, cnonce="d8603e834a51f9136ed7b542dc3a1ed704e28c36d8fff6dfb4da8d64190c", nc=00000001
    Supported: com.tandberg.vcs.resourceusage
    Content-Type: text/xml
    Content-Length: 250
    25075024920|
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,120" Module="network.http" Level="DEBUG":  Message="Request" Method="POST" URL="http://127.0.0.1:9998/credential/name/admin" Ref="0x7f1a3c230610"
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,122" Module="network.http" Level="DEBUG":  Message="Response" Src-ip="127.0.0.1" Src-port="9998" Dst-ip="127.0.0.1" Dst-port="45324" Response="200 OK" ResponseTime="0.002064" Ref="0x7f1a3c230610"
    2013-08-23T09:43:38+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:38,122" Module="network.ldap" Level="INFO":   Detail="Authentication credential found in directory for identity: admin"
    2013-08-23T09:43:38+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:38,122" Module="network.sip" Level="INFO":  Dst-ip="10.10.1.70"  Dst-port="26542"   Detail="Sending Response Code=200, Method=OPTIONS, To=sip:192.168.10.10:7001, [email protected]"
    2013-08-23T09:43:38+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:38,122" Module="network.sip" Level="DEBUG":  Dst-ip="10.10.1.70"  Dst-port="26542"
    SIPMSG:
    |SIP/2.0 200 OK
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bKbe71a5d177af210e973b8f490f2e9f36325020;received=10.10.1.70;rport=26542
    Call-ID: [email protected]
    CSeq: 53438 OPTIONS
    From: ;tag=cb2f0d0b23477f46
    To: ;tag=4b12e3f894cbea8a
    Server: TANDBERG/4120 (X7.2.1)
    Supported: com.tandberg.vcs.resourceusage,path,outbound,gruu
    Content-Type: text/xml
    Content-Length: 253
    Thanks!

  • Client not working after 10.4.7 update

    I am supporting friends and family overseas, all on PowerPC's (I am in Australia, clients are in UK).
    I have 5 systems in my master list, each can connect successfully. One dropped out of list after Dynamic DNS lapsed. Have reset Dynamic DNS successfully, remoted into his router and reset Firewall rules configuration as well as confirming IP set-up via the router.
    Cannot connect... When trying to add to Master List ARD is unable to verify the username and password. Have had user double check uname/pwd combo and started/restarted service but no fix.
    Given that the only configuration change is his update to 10.4.7 and I have double checked all settings as well as confirming I can connect to all other clients does anyone have any suggestions?
    Is there a way to uninstall his client completely then email him a .pkg to reinstall it? Any help is appreciated.
    G4 Mac mini   Mac OS X (10.4.7)   ARD 2.2

    to uninstall the client:
    http://docs.info.apple.com/article.html?artnum=108021
    you can create a client installer with the admin
    under File, Create Client Installer...
    Thanks for this. I will look into it further. The document you refer to states that 10.4 Clients should only be stopped rather than uninstalled, this concerns me a little. As I have tried simply stopping the service I will escalate to uninstalling the client and then see if reinstalling resolves the issue. Many thanks for your response.

  • Clients Not Updating After Migration from Server 10.7 to 10.8 (update to cashing server)

    My school has been providing updates using Update Server on Lion.  With the update to Mountain Lion Server we switched to Cashing Server for updates and I removed the WG Manager (please no lecutres on WGM, I am transitioning) setting that pointed to the Update Server.  Some of my clients are not updating now.  My guess is that they are still looking to my update server. 
    Is this an accurate diagnosis and how can I clear out this pointer?

    My school has been providing updates using Update Server on Lion.  With the update to Mountain Lion Server we switched to Cashing Server for updates and I removed the WG Manager (please no lecutres on WGM, I am transitioning) setting that pointed to the Update Server.  Some of my clients are not updating now.  My guess is that they are still looking to my update server. 
    Is this an accurate diagnosis and how can I clear out this pointer?

  • Skype for Business client not responding after audio/video/screen sharing

    Hi Everyone,
    I have a strange situation in my organisation. We have more than 200 clients and we are using Lync 2013. When Skype for Business (SFB) came out I tested it and found one problem - every time when I trying to make a audio or video call or what ever kind of
    file sharing or screen sharing then SFB client will hang and have error "SFB not responding". I can click restart the client and close button. So it´s not possible to call or share anything with that. Specially bad is that is eferyone else is calling
    to me it cause the same problem - client will die. So it´s very easy to kill my client :) At the beginning I thought that it´s my computer problem but then it turned out that allmost all clients have the same problem. Computers are different kind of Lenovo
    laptops. 
    What can cause the problem? I have installed and reinstalled the client. I have updated all the drivers. I have removed Personal Skype to make sure that it won´t cause the problem but problem is still there. Server itself is updated with latest CU and Skype
    for Business UI is enabled as default UI. 
    Br,
    Taavi

    Hi,
    Please try to uninstall the default Sound Card, VGA Device/Video Card, Graphic Card, and use the default system driver to test the issue. Because sometimes update driver to the latest version doesn't work but only use the default system.
    Please also make sure OS system update to the latest version.
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • All videos require reload of Adobe Flash & will not play after reload

    ALL videos ask for an Adobe Flash update reload but do not allow the video to play. Firefox plug-in menu shows Shockwave Flash 10.1.82.76 installed & enabled. What more can be done?

    This seems like a problem with Flash. Have you contacted Adobe about this?

  • VPN DNS (no clients) not working after installing SL; resolver w/ no domain

    Unfortunately, Snow Leopard has broken VPN DNS (thanks go out to Apple's QA department).
    I've tried several methods of "fixing it", but I end up seeing the following issue (output from scutil --dns):
    DNS configuration
    resolver #1
    domain : xxxx.cc
    nameserver[0] : 192.168.0.1
    order : 200000
    resolver #2
    nameserver[0] : 10.0.2.1
    nameserver[1] : 10.0.2.2
    order : 100000
    Notice how there is no domain on resolver #2. No matter what I do, I can't get one to populate. So, requests to my VPN domain never get to the correct DNS servers and my connections fail. I've tried manually specifying DNS servers and domains for the VPN connection, but the domain still doesn't populate. I've also tried removing all files under /Library/Preferences/SystemConfiguration/ and rebooting, however that only resolved an earlier issue with simply connecting to the VPN endpoint.
    Does anyone have any suggestions on how to populate a domain name in my second resolver?

    I Hope someone can figure this out. I too an having a similar problem. Its been a three fold issue. First it took me 3 days to install Snow Leopard (Disk kept ejecting during install), but once I got past that (with help from this forum) I got it installed. Once installed SL broke my internet connections. Network preferences said I was connected to my router and online (Skype showed I was connected), but iChat and Safari wouldn't connect. Again I was able to find a work around (not a true fix) on this forum which was, I had to move my system config file to the desktop and reboot, forcing the mac to create a new system config file for the internet. Now it would connect to my router and get on the internet. It did this like I was a brand new client connecting to my router. I had to re enter network key etc. Again internet is now working, however all my network profiles were gone. this now leads me to the 3rd and unresolved issue. I go through and reenter my settings and things seem to work until I get to the VPN. I use the standard PPTN VPN connection and enter my settings exactly the same as before. and it appears to work. It connects with my server, but not my compant "Intranet" Its accepts my company DNS and search domains but does nothing with them. I can't view anything internally. This exact same setup worked flawlessly in 10.5.8. Am I missing something or did I do something wrong? Please help. Need to access company resources or I will have to downgrade back to Leopard.
    Thanks,
    Nate

Maybe you are looking for