1242AG WGB and Client Devices

Hi, is there a way to connect multiples AP to a root AP which is connected to the LAN and at the same time allowing client devices to connect to those AP. Perhaps, using 2.4 Ghz for client devices and 5 Ghz for WGB. Or perhaps using the AP as a repeater?

Daniel,
The simple answer is yes - the only thing that could change the way they are configured is - are you AP's LWAPP or Autonomous
HTH.

Similar Messages

  • How the sound - microphone - and bluetooth devices works in Windows 8.1 Client Hyper-V

    How the sound - microphone - and bluetooth devices works in Windows 8.1 Client Hyper-V
    I would like to get some resources about detailed information on the subject above.
    Any help would be greatly appreciated.
    Thank you,
    carloss

    check this
    Hyper-V in Windows Server 2012 R2 Client Hyper-V Enhanced Session Mode in Windows 8.1
    Starting with Hyper-V in Windows Server 2012 R2, Hyper-V can now redirect local resources to a virtual machine session through Virtual Machine Connection tool. The enhanced session mode connection uses a Remote Desktop Connection session via the virtual
    machine bus (VMBus), so no network connection to the virtual machine is required
    https://technet.microsoft.com/en-us/library/dn282274.aspx

  • Multicast for Aironet 1310 WGB and 1242 AP

    I have configured a Aironet 1310 bridge as a WGB and is connected to a Aironet 1242AG AP wirelessly!
    A sensor(IP device) is wired into the 1310WGB. The sensor needs MULTICAST to operate!
    I checked the DETAILED STATUS of the RADIO and both the 1310 and 1242 are blocking multicast!
    The RELIABLE MULTICAST TO WGB option is enabled on the 1242AP already! No luck as yet!
    Any thoughts??

    Have you seen this thread??
    https://supportforums.cisco.com/message/3061760#3061760
    Worked for me.
    AndyH

  • Question about bluetooth communication between PC and mobile device

    I am a newbie of bluetooth communication. This time I need to have connumication between PC and mobile device (mainly mobile phone) by sending strings. PC is acted as server and mobile device act as client.
    For using bluetooth in PC, I use bluecove 2.0.1
    I have already connected them successfully.
    When I want to send strings between them, it is found that it can only do one cycle of communication (client -> server -> client).
    For my design, they can communicate multiple times.
    I simulate the core class of the system, the performance is fine.
    Cound anyone help me to watch the code and give me some advices?
    Server Side - ServerBox.java
    public class ServerBox implements Runnable {
       LocalDevice localDevice;
       StreamConnectionNotifier notifier;
       ServiceRecord record;
       boolean isClosed;
       ClientProcessor processor;
       CMDProcessor cmd;
       MainInterface midlet;
       private static final UUID ECHO_SERVER_UUID = new UUID(
               "F0E0D0C0B0A000908070605040302010", false);
       public ServerBox(MainInterface midlet) {
           this.midlet = midlet;
       public void run() {
           boolean isBTReady = false;
           try {
               localDevice = LocalDevice.getLocalDevice();
               if (!localDevice.setDiscoverable(DiscoveryAgent.GIAC)) {
                   midlet.showInfo("Cannot set to discoverable");
                   return;
               // prepare a URL to create a notifier
               StringBuffer url = new StringBuffer("btspp://");
               url.append("localhost").append(':');
               url.append(ECHO_SERVER_UUID.toString());
               url.append(";name=Echo Server");
               url.append(";authorize=false");
               // create notifier now
               notifier = (StreamConnectionNotifier) Connector.open(url.toString());
               record = localDevice.getRecord(notifier);
               isBTReady = true;
           } catch (Exception e) {
               e.printStackTrace();
           // nothing to do if no bluetooth available
           if (isBTReady) {
               midlet.showInfo("Initalization complete. Waiting for connection");
               midlet.completeInitalization();
           } else {
               midlet.showInfo("Initalization fail. Exit.");
               return;
           // produce client processor
           processor = new ClientProcessor();
           cmd = new CMDProcessor();
           // start accepting connections then
           while (!isClosed) {
               StreamConnection conn = null;
               try {
                   conn = notifier.acceptAndOpen();
               } catch (IOException e) {
                   // wrong client or interrupted - continue anyway
                   continue;
               processor.addConnection(conn);
       // activate the set up of process
       public void publish() {
           isClosed = false;
           new Thread(this).start();
       // stop the service
       public void cancelService() {
           isClosed = true;
           midlet.showInfo("Service Terminate.");
           midlet.completeTermination();
       // inner private class for handling connection and activate connection handling
       private class ClientProcessor implements Runnable {
           private Thread processorThread;
           private Vector queue = new Vector();
           private boolean isOk = true;
           ClientProcessor() {
               processorThread = new Thread(this);
               processorThread.start();
           public void run() {
               while (!isClosed) {
                   synchronized (this) {
                       if (queue.size() == 0) {
                           try {
                               // wait for new client
                               wait();
                           } catch (InterruptedException e) { }
                   StreamConnection conn;
                   synchronized (this) {
                       if (isClosed) {
                           return;
                       conn = (StreamConnection) queue.firstElement();
                       queue.removeElementAt(0);
                       processConnection(conn);
           // add stream connection and notify the thread
           void addConnection(StreamConnection conn) {
               synchronized (this) {
                   queue.addElement(conn);
                   midlet.showInfo("A connection is added.");
                   notify();    // for wait() command in run()
       // receive string
       private String readInputString(StreamConnection conn) {
           String inputString = null;
           try {
               DataInputStream dis = conn.openDataInputStream();
               inputString = dis.readUTF();
               dis.close();
           } catch (Exception e) {
               e.printStackTrace();
           return inputString;
       private void sendOutputData(String outputData, StreamConnection conn) {
           try {
               DataOutputStream dos = conn.openDataOutputStream();
               dos.writeUTF(outputData);
               dos.close();
           } catch (IOException e) {
       // process connecion
       private void processConnection(StreamConnection conn) {
           String inputString = readInputString(conn);
           String outputString = cmd.reactionToCMD(inputString);
           sendOutputData(outputString, conn);
    /*       try {
               conn.close();
           } catch (IOException e) {}*/
           midlet.showInfo("Client input: " + inputString + ", successfully received.");
    }For "CMDProcessor" , it is the class of message processing before feedback to client.
    Client side - ClientBox.java
    public class ClientBox implements Runnable, CommandListener{
        StringItem result = new StringItem("","");
        private DiscoveryAgent discoveryAgent;
        private String connString;
        private boolean isClosed = false;
        private boolean boxReady = false;
        StreamConnection conn;
        private static final UUID ECHO_SERVER_UUID = new UUID( "F0E0D0C0B0A000908070605040302010", false);
        Form process = new Form("Process");
        ClientInterface midlet;
        public ClientBox(ClientInterface mid){
            this.midlet = mid;
            process.append(result);
            process.addCommand(new Command("Cancel",Command.CANCEL,1));
            process.setCommandListener(this);
            new Thread(this).start();
        public void commandAction(Command arg0, Displayable arg1) {    
            if(arg0.getCommandType()==Command.CANCEL){
                isClosed = true;
                midlet.notifyDestroyed();
        public synchronized void run() {
            LocalDevice localDevice = null;
            boolean isBTReady = false;
            /* Process Gauge screen */
            midlet.displayPage(process);
            Gauge g=new Gauge(null,false,Gauge.INDEFINITE,Gauge.CONTINUOUS_RUNNING);
            process.append(g);
            showInfo("Initalization...");
            System.gc();
            try {
                localDevice = LocalDevice.getLocalDevice();
                discoveryAgent = localDevice.getDiscoveryAgent();
                isBTReady = true;
            } catch (Exception e) {
                e.printStackTrace();
            if (!isBTReady) {
                showInfo("Bluetooth is not avaliable. Please check the device.");
                return;
            if(!isClosed){
                try {
                    connString = discoveryAgent.selectService(ECHO_SERVER_UUID, ServiceRecord.NOAUTHENTICATE_NOENCRYPT, false);
                } catch (BluetoothStateException ex) {
                    ex.printStackTrace();
            else return;
            if (connString == null) {
                showInfo("Cannot Find Server. Please check the device.");
                return;
            else showInfo("Can Find Server, stand by for request.");
            boxReady = true;
        /* True if the clientbox is ready */
        public boolean getBoxReady(){
            return boxReady;
        /* True if the clientbox is closed in run() */
        public boolean getIsClosed(){
            return isClosed;
        public String accessService(String input) {
            String output = null;
            try {
                /* Connect to server */
                StreamConnection conn = (StreamConnection) Connector.open(connString);
                /* send string */
                DataOutputStream dos = conn.openDataOutputStream();
                dos.writeUTF(input);
                dos.close();
                /* receive string */
                DataInputStream dis = conn.openDataInputStream();
                output = dis.readUTF();
                dis.close();
            } catch (IOException ex){
                showInfo("Fail connect to connect to server.");
            return output;
        private void showInfo(String s){
            StringBuffer sb=new StringBuffer(result.getText());
            if(sb.length()>0){ sb.append("\n"); }
            sb.append(s);
            result.setText(sb.toString());
    }Client side - ClientInterface.java
    public class ClientInterface extends MIDlet implements Runnable, CommandListener{
        private ClientBox cb = new ClientBox(this);
        private Form temp = new Form("Temp");
        private Command select = new Command("Select", Command.OK, 1);
        private Command back = new Command("Back", Command.BACK, 1);
        Alert alert;
        String[] element;
        String out;
        List list;
        public void run(){
            /* Send message and get reply */
            out = cb.accessService("Proglist");
            element = split(out,",");
            /* Use the reply to make list */
            list = createList(element[0], List.IMPLICIT, out);
            list.addCommand(select);
            list.addCommand(back);
            list.setCommandListener(this);
            Display.getDisplay(this).setCurrent(list);
        public void startApp() {
            System.gc();
            waitForBoxSetUp(); /* Recursively check for clientbox status */
            new Thread(this).start();
        public void pauseApp() {
        public void destroyApp(boolean unconditional) {
            notifyDestroyed();
        public void displayPage(Displayable d){
            Display.getDisplay(this).setCurrent(d);
        private void waitForBoxSetUp(){
            while(!cb.getBoxReady()){
                if(cb.getIsClosed())
                    notifyDestroyed();
        public void commandAction(Command c, Displayable d){
            if (c.getCommandType() == Command.OK){
                if (d == list){
                    /* Send the choice to server */
                    out = cb.accessService(list.getString(list.getSelectedIndex()));
                    alert = new Alert("Output", "selected = "+out, null, AlertType.ALARM);
                    alert.setTimeout(2000);
                    Display.getDisplay(this).setCurrent(alert,list);
            if (c.getCommandType() == Command.BACK){
                notifyDestroyed();
        public void showWarning(String title, String content){
            alert = new Alert("Output", "selected = "+list.getString(list.getSelectedIndex()), null, AlertType.ALARM);
            alert.setTimeout(3000);
            Display.getDisplay(this).setCurrent(alert,list);
        private List createList(String name, int type, String message){
            List temp;
            String[] source = split(message,",") ;
            temp = new List(name, type, source, null);
            return temp;
        private static String[] split(String original,String regex)
            int startIndex = 0;
            Vector v = new Vector();
            String[] str = null;
            int index = 0;
            startIndex = original.indexOf(regex);
            while(startIndex < original.length() && startIndex != -1)
                String temp = original.substring(index,startIndex);
                v.addElement(temp);
                index = startIndex + regex.length();
                startIndex = original.indexOf(regex,startIndex + regex.length());
            v.addElement(original.substring(index + 1 - regex.length()));
            str = new String[v.size()];
            for(int i=0;i<v.size();i++)
                str[i] = (String)v.elementAt(i);
            return str;
    }

    i haven't worked with devices but only with the toolkit emulators;
    it definitely is possible...
    u have to send the image as a bytestream and receive the image at the jsp end...
    and then reconstruct the image.
    the Stream classes in J2ME AND J2SE are all u will require.
    also the Image class.
    i have not done this but i have successfully sent an image frm a jsp and displayed it on the emulator.

  • Labview Remote Panel and Client Aspect Ratio

    Dear all professionals,
    I had create an application with remote panel (webserver) enabled. I found that there is relationship between aspect ratio of client device display and the remote panel screen size. Here i attached two images of remote panel in browser which both remote panel are opened using different aspect ratio of client device. 
    The left 1 is the device with 1.5 aspect ratio while the right 1 is the device with 1.78 aspect ratio. 
    As you can seen from the images, both remote panel are shown in different size. May i ask do i miss something in the remote panel configuration? 

    Hi Michel,
    Thank you for your reply. I also notice that the zoom % of browser is one of the issue that caused this behaviour. In the same aspect ratio with server computer( where the application running), changing zoom to 100% will help to fit remote panel that I already set when I developing the remote panel vi. But if for different aspect ratio, no matter how u change the zoom % , it won't fit the frame. I just wondering whether got another solution for this issue or not :-(

  • WLC 5508 and client disconnections

    Hello, all!
    have an issue - one client is disconnecting sometime.
    that is the log from debug client
    (Cisco Controller) >*apfReceiveTask: Oct 26 16:31:42.120: 68:09:27:81:da:8f Deleting mobile on AP 00:3a:99:81:dc:10(0)
    *dot1xMsgTask: Oct 31 14:20:26.178: 44:2a:60:f6:d9:ec Key exchange done, data packets from mobile 44:2a:60:f6:d9:ec should be forwarded shortly
    *dot1xMsgTask: Oct 31 14:20:26.178: 44:2a:60:f6:d9:ec Sending EAPOL-Key Message to mobile 44:2a:60:f6:d9:ec
                                                                                                                  state PTKINITDONE (message 5 - group), replay counter 00.00.00.00.00.00.00.03
    *dot1xMsgTask: Oct 31 14:20:26.178: 44:2a:60:f6:d9:ec Updated broadcast key sent to mobile 44:2A:60:F6:D9:EC
    *Dot1x_NW_MsgTask_4: Oct 31 14:20:26.186: 44:2a:60:f6:d9:ec Received EAPOL-Key from mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:20:26.186: 44:2a:60:f6:d9:ec Received EAPOL-key in REKEYNEGOTIATING state (message 6) from mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:20:26.186: 44:2a:60:f6:d9:ec Stopping retransmission timer for mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:20:26.721: 44:2a:60:f6:d9:ec Received EAPOL-Key from mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:20:26.721: 44:2a:60:f6:d9:ec Received EAPOL-key to initiate new key exchange from mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:20:26.721: 44:2a:60:f6:d9:ec Initializing EAPOL-Key Request replay counter to 00 00 00 00 00 00 00 00 for client 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:20:26.721: 44:2a:60:f6:d9:ec Starting key exchange to mobile 44:2a:60:f6:d9:ec, data packets will be dropped
    *Dot1x_NW_MsgTask_4: Oct 31 14:20:26.721: 44:2a:60:f6:d9:ec Sending EAPOL-Key Message to mobile 44:2a:60:f6:d9:ec
                                                                                                                        state INITPMK (message 1), replay counter 00.00.00.00.00.00.00.04
    *Dot1x_NW_MsgTask_4: Oct 31 14:20:26.721: 44:2a:60:f6:d9:ec Received EAPOL-key MIC err message from  mobile 44:2a:60:f6:d9:ec
    *dot1xMsgTask: Oct 31 14:20:27.778: 44:2a:60:f6:d9:ec Failure sending WPA EAPOL-Key due to invalid state 2 to mobile 44:2a:60:f6:d9:ec
    *dot1xMsgTask: Oct 31 14:20:27.778: 44:2a:60:f6:d9:ec Unable to send WPA key to mobile 44:2a:60:f6:d9:ec
    *dot1xMsgTask: Oct 31 14:20:27.778: 44:2a:60:f6:d9:ec Unable to update broadcast key to mobile 44:2A:60:F6:D9:EC
    *osapiBsnTimer: Oct 31 14:20:31.778: 44:2a:60:f6:d9:ec 802.1x 'timeoutEvt' Timer expired for station 44:2a:60:f6:d9:ec and for message = M2
    *dot1xMsgTask: Oct 31 14:20:31.778: 44:2a:60:f6:d9:ec Retransmit 1 of EAPOL-Key M1 (length 99) for mobile 44:2a:60:f6:d9:ec
    *osapiBsnTimer: Oct 31 14:20:36.777: 44:2a:60:f6:d9:ec 802.1x 'timeoutEvt' Timer expired for station 44:2a:60:f6:d9:ec and for message = M2
    *dot1xMsgTask: Oct 31 14:20:36.778: 44:2a:60:f6:d9:ec Retransmit 2 of EAPOL-Key M1 (length 99) for mobile 44:2a:60:f6:d9:ec
    *osapiBsnTimer: Oct 31 14:20:41.777: 44:2a:60:f6:d9:ec 802.1x 'timeoutEvt' Timer expired for station 44:2a:60:f6:d9:ec and for message = M2
    *dot1xMsgTask: Oct 31 14:20:41.778: 44:2a:60:f6:d9:ec Retransmit 3 of EAPOL-Key M1 (length 99) for mobile 44:2a:60:f6:d9:ec
    *osapiBsnTimer: Oct 31 14:20:46.777: 44:2a:60:f6:d9:ec 802.1x 'timeoutEvt' Timer expired for station 44:2a:60:f6:d9:ec and for message = M2
    *dot1xMsgTask: Oct 31 14:20:46.778: 44:2a:60:f6:d9:ec Retransmit 4 of EAPOL-Key M1 (length 99) for mobile 44:2a:60:f6:d9:ec
    *osapiBsnTimer: Oct 31 14:20:51.777: 44:2a:60:f6:d9:ec 802.1x 'timeoutEvt' Timer expired for station 44:2a:60:f6:d9:ec and for message = M2
    *dot1xMsgTask: Oct 31 14:20:51.778: 44:2a:60:f6:d9:ec Retransmit failure for EAPOL-Key M1 to mobile 44:2a:60:f6:d9:ec, retransmit count 5, mscb deauth count 0
    *dot1xMsgTask: Oct 31 14:20:51.778: 44:2a:60:f6:d9:ec Resetting MSCB PMK Cache Entry 0 for station 44:2a:60:f6:d9:ec
    *dot1xMsgTask: Oct 31 14:20:51.778: 44:2a:60:f6:d9:ec Setting active key cache index 0 ---> 8
    *dot1xMsgTask: Oct 31 14:20:51.779: 44:2a:60:f6:d9:ec Sent Deauthenticate to mobile on BSSID 00:3a:98:ef:5c:f0 slot 0(caller 1x_ptsm.c:546)
    *dot1xMsgTask: Oct 31 14:20:51.779: 44:2a:60:f6:d9:ec Scheduling deletion of Mobile Station:  (callerId: 57) in 10 seconds
    *osapiBsnTimer: Oct 31 14:21:01.777: 44:2a:60:f6:d9:ec apfMsExpireCallback (apf_ms.c:591) Expiring Mobile!
    *apfReceiveTask: Oct 31 14:21:01.778: 44:2a:60:f6:d9:ec apfMsExpireMobileStation (apf_ms.c:5604) Changing state for mobile 44:2a:60:f6:d9:ec on AP 00:3a:98:ef:5c:f0 from Associated to Disassociated
    *apfReceiveTask: Oct 31 14:21:01.778: 44:2a:60:f6:d9:ec Scheduling deletion of Mobile Station:  (callerId: 45) in 10 seconds
    *osapiBsnTimer: Oct 31 14:21:11.777: 44:2a:60:f6:d9:ec apfMsExpireCallback (apf_ms.c:591) Expiring Mobile!
    *apfReceiveTask: Oct 31 14:21:11.779: 44:2a:60:f6:d9:ec Sent Deauthenticate to mobile on BSSID 00:3a:98:ef:5c:f0 slot 0(caller apf_ms.c:5698)
    *apfReceiveTask: Oct 31 14:21:11.779: 44:2a:60:f6:d9:ec apfMsAssoStateDec
    *apfReceiveTask: Oct 31 14:21:11.779: 44:2a:60:f6:d9:ec apfMsExpireMobileStation (apf_ms.c:5736) Changing state for mobile 44:2a:60:f6:d9:ec on AP 00:3a:98:ef:5c:f0 from Disassociated to Idle
    *apfReceiveTask: Oct 31 14:21:11.779: 44:2a:60:f6:d9:ec Scheduling deletion of Mobile Station:  (callerId: 47) in 10 seconds
    *osapiBsnTimer: Oct 31 14:21:21.777: 44:2a:60:f6:d9:ec apfMsExpireCallback (apf_ms.c:591) Expiring Mobile!
    *apfReceiveTask: Oct 31 14:21:21.778: 44:2a:60:f6:d9:ec pemApfDeleteMobileStation2: APF_MS_PEM_WAIT_L2_AUTH_COMPLETE = 0.
    *apfReceiveTask: Oct 31 14:21:21.778: 44:2a:60:f6:d9:ec 192.168.46.133 RUN (20) Deleted mobile LWAPP rule on AP [00:3a:98:ef:5c:f0]
    *apfReceiveTask: Oct 31 14:21:21.778: 44:2a:60:f6:d9:ec apfMsRunStateDec
    *apfReceiveTask: Oct 31 14:21:21.778: 44:2a:60:f6:d9:ec apfMs1xStateDec
    *apfReceiveTask: Oct 31 14:21:21.778: 44:2a:60:f6:d9:ec Deleting mobile on AP 00:3a:98:ef:5c:f0(0)
    *apfMsConnTask_1: Oct 31 14:21:56.744: 44:2a:60:f6:d9:ec Adding mobile on LWAPP AP 00:3a:98:ef:5c:f0(0)
    *apfMsConnTask_1: Oct 31 14:21:56.744: 44:2a:60:f6:d9:ec Association received from mobile on AP 00:3a:98:ef:5c:f0
    *apfMsConnTask_1: Oct 31 14:21:56.744: 44:2a:60:f6:d9:ec 0.0.0.0 START (0) Changing IPv4 ACL 'none' (ACL ID 255) ===> 'none' (ACL ID 255) --- (caller apf_policy.c:1709)
    *apfMsConnTask_1: Oct 31 14:21:56.744: 44:2a:60:f6:d9:ec 0.0.0.0 START (0) Changing IPv6 ACL 'none' (ACL ID 255) ===> 'none' (ACL ID 255) --- (caller apf_policy.c:1876)
    *apfMsConnTask_1: Oct 31 14:21:56.744: 44:2a:60:f6:d9:ec Applying site-specific Local Bridging override for station 44:2a:60:f6:d9:ec - vapId 1, site 'default-group', interface 'management'
    *apfMsConnTask_1: Oct 31 14:21:56.744: 44:2a:60:f6:d9:ec Applying Local Bridging Interface Policy for station 44:2a:60:f6:d9:ec - vlan 0, interface id 0, interface 'management'
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec processSsidIE  statusCode is 0 and status is 0
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec processSsidIE  ssid_done_flag is 0 finish_flag is 0
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec STA - rates (8): 2 4 11 150 36 48 72 108 0 0 0 0 0 0 0 0
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec suppRates  statusCode is 0 and gotSuppRatesElement is 1
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec STA - rates (12): 2 4 11 150 36 48 72 108 12 18 24 96 0 0 0 0
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec extSuppRates  statusCode is 0 and gotExtSuppRatesElement is 1
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec Processing WPA IE type 221, length 24 for mobile 44:2a:60:f6:d9:ec
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec 0.0.0.0 START (0) Initializing policy
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec 0.0.0.0 START (0) Change state to AUTHCHECK (2) last state AUTHCHECK (2)
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec 0.0.0.0 AUTHCHECK (2) Change state to 8021X_REQD (3) last state 8021X_REQD (3)
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec 0.0.0.0 8021X_REQD (3) DHCP required on AP 00:3a:98:ef:5c:f0 vapId 1 apVapId 1for this client
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec Not Using WMM Compliance code qosCap 00
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec 0.0.0.0 8021X_REQD (3) Plumbed mobile LWAPP rule on AP 00:3a:98:ef:5c:f0 vapId 1 apVapId 1 flex-acl-name:
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec apfMsAssoStateInc
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec apfPemAddUser2 (apf_policy.c:270) Changing state for mobile 44:2a:60:f6:d9:ec on AP 00:3a:98:ef:5c:f0 from Idle to Associated
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec Stopping deletion of Mobile Station: (callerId: 48)
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec Sending Assoc Response to station on BSSID 00:3a:98:ef:5c:f0 (status 0) ApVapId 1 Slot 0
    *apfMsConnTask_1: Oct 31 14:21:56.745: 44:2a:60:f6:d9:ec apfProcessAssocReq (apf_80211.c:6309) Changing state for mobile 44:2a:60:f6:d9:ec on AP 00:3a:98:ef:5c:f0 from Associated to Associated
    *apfMsConnTask_1: Oct 31 14:21:56.747: 44:2a:60:f6:d9:ec Updating AID for REAP AP Client 00:3a:98:ef:5c:f0 - AID ===> 5
    *dot1xMsgTask: Oct 31 14:21:56.750: 44:2a:60:f6:d9:ec Creating a PKC PMKID Cache entry for station 44:2a:60:f6:d9:ec (RSN 0)
    *dot1xMsgTask: Oct 31 14:21:56.750: 44:2a:60:f6:d9:ec Setting active key cache index 8 ---> 8
    *dot1xMsgTask: Oct 31 14:21:56.750: 44:2a:60:f6:d9:ec Setting active key cache index 8 ---> 0
    *dot1xMsgTask: Oct 31 14:21:56.750: 44:2a:60:f6:d9:ec Initiating WPA PSK to mobile 44:2a:60:f6:d9:ec
    *dot1xMsgTask: Oct 31 14:21:56.750: 44:2a:60:f6:d9:ec dot1x - moving mobile 44:2a:60:f6:d9:ec into Force Auth state
    *dot1xMsgTask: Oct 31 14:21:56.750: 44:2a:60:f6:d9:ec Skipping EAP-Success to mobile 44:2a:60:f6:d9:ec
    *dot1xMsgTask: Oct 31 14:21:56.750: 44:2a:60:f6:d9:ec Starting key exchange to mobile 44:2a:60:f6:d9:ec, data packets will be dropped
    *dot1xMsgTask: Oct 31 14:21:56.750: 44:2a:60:f6:d9:ec Sending EAPOL-Key Message to mobile 44:2a:60:f6:d9:ec
                                                                                                                  state INITPMK (message 1), replay counter 00.00.00.00.00.00.00.00
    *osapiBsnTimer: Oct 31 14:22:01.777: 44:2a:60:f6:d9:ec 802.1x 'timeoutEvt' Timer expired for station 44:2a:60:f6:d9:ec and for message = M2
    *dot1xMsgTask: Oct 31 14:22:01.778: 44:2a:60:f6:d9:ec Retransmit 1 of EAPOL-Key M1 (length 99) for mobile 44:2a:60:f6:d9:ec
    *apfMsConnTask_1: Oct 31 14:22:05.624: 44:2a:60:f6:d9:ec Association received from mobile on AP 00:3a:98:ef:5c:f0
    *apfMsConnTask_1: Oct 31 14:22:05.624: 44:2a:60:f6:d9:ec 0.0.0.0 8021X_REQD (3) Changing IPv4 ACL 'none' (ACL ID 255) ===> 'none' (ACL ID 255) --- (caller apf_policy.c:1709)
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec 0.0.0.0 8021X_REQD (3) Changing IPv6 ACL 'none' (ACL ID 255) ===> 'none' (ACL ID 255) --- (caller apf_policy.c:1876)
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec Applying site-specific Local Bridging override for station 44:2a:60:f6:d9:ec - vapId 1, site 'default-group', interface 'management'
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec Applying Local Bridging Interface Policy for station 44:2a:60:f6:d9:ec - vlan 0, interface id 0, interface 'management'
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec processSsidIE  statusCode is 0 and status is 0
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec processSsidIE  ssid_done_flag is 0 finish_flag is 0
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec STA - rates (8): 2 4 11 150 36 48 72 108 12 18 24 96 0 0 0 0
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec suppRates  statusCode is 0 and gotSuppRatesElement is 1
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec STA - rates (12): 2 4 11 150 36 48 72 108 12 18 24 96 0 0 0 0
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec extSuppRates  statusCode is 0 and gotExtSuppRatesElement is 1
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec Processing WPA IE type 221, length 24 for mobile 44:2a:60:f6:d9:ec
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec 0.0.0.0 8021X_REQD (3) Initializing policy
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec 0.0.0.0 8021X_REQD (3) Change state to AUTHCHECK (2) last state 8021X_REQD (3)
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec 0.0.0.0 AUTHCHECK (2) Change state to 8021X_REQD (3) last state 8021X_REQD (3)
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec 0.0.0.0 8021X_REQD (3) DHCP required on AP 00:3a:98:ef:5c:f0 vapId 1 apVapId 1for this client
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec Not Using WMM Compliance code qosCap 00
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec 0.0.0.0 8021X_REQD (3) Plumbed mobile LWAPP rule on AP 00:3a:98:ef:5c:f0 vapId 1 apVapId 1 flex-acl-name:
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec apfPemAddUser2 (apf_policy.c:270) Changing state for mobile 44:2a:60:f6:d9:ec on AP 00:3a:98:ef:5c:f0 from Associated to Associated
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec Stopping deletion of Mobile Station: (callerId: 48)
    *apfMsConnTask_1: Oct 31 14:22:05.625: 44:2a:60:f6:d9:ec Sending Assoc Response to station on BSSID 00:3a:98:ef:5c:f0 (status 0) ApVapId 1 Slot 0
    *apfMsConnTask_1: Oct 31 14:22:05.626: 44:2a:60:f6:d9:ec apfProcessAssocReq (apf_80211.c:6309) Changing state for mobile 44:2a:60:f6:d9:ec on AP 00:3a:98:ef:5c:f0 from Associated to Associated
    *dot1xMsgTask: Oct 31 14:22:05.628: 44:2a:60:f6:d9:ec Creating a PKC PMKID Cache entry for station 44:2a:60:f6:d9:ec (RSN 0)
    *dot1xMsgTask: Oct 31 14:22:05.628: 44:2a:60:f6:d9:ec Setting active key cache index 0 ---> 8
    *dot1xMsgTask: Oct 31 14:22:05.628: 44:2a:60:f6:d9:ec Setting active key cache index 8 ---> 0
    *dot1xMsgTask: Oct 31 14:22:05.628: 44:2a:60:f6:d9:ec Initiating WPA PSK to mobile 44:2a:60:f6:d9:ec
    *dot1xMsgTask: Oct 31 14:22:05.628: 44:2a:60:f6:d9:ec dot1x - moving mobile 44:2a:60:f6:d9:ec into Force Auth state
    *dot1xMsgTask: Oct 31 14:22:05.628: 44:2a:60:f6:d9:ec Skipping EAP-Success to mobile 44:2a:60:f6:d9:ec
    *dot1xMsgTask: Oct 31 14:22:05.628: 44:2a:60:f6:d9:ec Starting key exchange to mobile 44:2a:60:f6:d9:ec, data packets will be dropped
    *dot1xMsgTask: Oct 31 14:22:05.628: 44:2a:60:f6:d9:ec Sending EAPOL-Key Message to mobile 44:2a:60:f6:d9:ec
                                                                                                                  state INITPMK (message 1), replay counter 00.00.00.00.00.00.00.00
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.634: 44:2a:60:f6:d9:ec Received EAPOL-Key from mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.634: 44:2a:60:f6:d9:ec Received EAPOL-key in PTK_START state (message 2) from mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.634: 44:2a:60:f6:d9:ec Stopping retransmission timer for mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.634: 44:2a:60:f6:d9:ec Sending EAPOL-Key Message to mobile 44:2a:60:f6:d9:ec
                                                                                                                        state PTKINITNEGOTIATING (message 3), replay counter 00.00.00.00.00.00.00.01
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec Received EAPOL-Key from mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec Received EAPOL-key in PTKINITNEGOTIATING state (message 4) from mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec apfMs1xStateInc
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 8021X_REQD (3) Change state to L2AUTHCOMPLETE (4) last state L2AUTHCOMPLETE (4)
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 L2AUTHCOMPLETE (4) State Update from Mobility-Incomplete to Mobility-Complete, mobility role=Local, client state=APF_MS_STATE_ASSOCIATED
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 L2AUTHCOMPLETE (4) DHCP required on AP 00:3a:98:ef:5c:f0 vapId 1 apVapId 1for this client
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec Not Using WMM Compliance code qosCap 00
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 L2AUTHCOMPLETE (4) Plumbed mobile LWAPP rule on AP 00:3a:98:ef:5c:f0 vapId 1 apVapId 1 flex-acl-name:
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 L2AUTHCOMPLETE (4) pemAdvanceState2 5287, Adding TMP rule
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 L2AUTHCOMPLETE (4) Adding Fast Path rule
      type = Airespace AP - Learn IP address
      on AP 00:3a:98:ef:5c:f0, slot 0, interface = 1, QOS = 3
      IPv4 ACL ID = 255
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 L2AUTHCOMPLETE (4) Fast Path rule (contd...) 802.1P = 0, DSCP = 0, TokenID = 15206  Local Bridging Vlan = 0, Local Bridging intf id = 0
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 L2AUTHCOMPLETE (4) Successfully plumbed mobile rule (IPv4 ACL ID 255, IPv6 ACL ID 255)
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 L2AUTHCOMPLETE (4) Change state to DHCP_REQD (7) last state DHCP_REQD (7)
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 DHCP_REQD (7) pemAdvanceState2 5303, Adding TMP rule
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 DHCP_REQD (7) Replacing Fast Path rule
      type = Airespace AP - Learn IP address
      on AP 00:3a:98:ef:5c:f0, slot 0, interface = 1, QOS = 3
      IPv4 ACL ID = 255,
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 DHCP_REQD (7) Fast Path rule (contd...) 802.1P = 0, DSCP = 0, TokenID = 15206  Local Bridging Vlan = 0, Local Bridging intf id = 0
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec 0.0.0.0 DHCP_REQD (7) Successfully plumbed mobile rule (IPv4 ACL ID 255, IPv6 ACL ID 255)
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.640: 44:2a:60:f6:d9:ec Stopping retransmission timer for mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.641: 44:2a:60:f6:d9:ec Key exchange done, data packets from mobile 44:2a:60:f6:d9:ec should be forwarded shortly
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.641: 44:2a:60:f6:d9:ec Sending EAPOL-Key Message to mobile 44:2a:60:f6:d9:ec
                                                                                                                        state PTKINITDONE (message 5 - group), replay counter 00.00.00.00.00.00.00.02
    *pemReceiveTask: Oct 31 14:22:05.642: 44:2a:60:f6:d9:ec 0.0.0.0 Added NPU entry of type 9, dtlFlags 0x0
    *pemReceiveTask: Oct 31 14:22:05.642: 44:2a:60:f6:d9:ec 0.0.0.0 Added NPU entry of type 9, dtlFlags 0x0
    *spamApTask0: Oct 31 14:22:05.643: 44:2a:60:f6:d9:ec Sent EAPOL-Key M5 for mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.648: 44:2a:60:f6:d9:ec Received EAPOL-Key from mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.648: 44:2a:60:f6:d9:ec Received EAPOL-key in REKEYNEGOTIATING state (message 6) from mobile 44:2a:60:f6:d9:ec
    *Dot1x_NW_MsgTask_4: Oct 31 14:22:05.648: 44:2a:60:f6:d9:ec Stopping retransmission timer for mobile 44:2a:60:f6:d9:ec
    *apfOrphanSocketTask: Oct 31 14:22:05.694: 44:2a:60:f6:d9:ec Orphan Packet from STA - IP 192.168.46.133
    *apfOrphanSocketTask: Oct 31 14:22:05.694: 44:2a:60:f6:d9:ec Static IP client associated to interface management which can support client subnet.
    *apfOrphanSocketTask: Oct 31 14:22:05.694: 44:2a:60:f6:d9:ec apfMsRunStateInc
    *apfOrphanSocketTask: Oct 31 14:22:05.694: 44:2a:60:f6:d9:ec 192.168.46.133 DHCP_REQD (7) Change state to RUN (20) last state RUN (20)
    *pemReceiveTask: Oct 31 14:22:05.695: 44:2a:60:f6:d9:ec 192.168.46.133 Removed NPU entry.
    *apfOrphanSocketTask: Oct 31 14:22:05.695: 44:2a:60:f6:d9:ec Assigning Address 192.168.46.133 to mobile
    *DHCP Socket Task: Oct 31 14:22:05.710: 44:2a:60:f6:d9:ec DHCP received op BOOTREQUEST (1) (len 324,vlan 0, port 1, encap 0xec00)
    *DHCP Socket Task: Oct 31 14:22:05.710: 44:2a:60:f6:d9:ec DHCP dropping looped REQUEST from DS (encap type 0xec00)
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP received op BOOTREPLY (2) (len 433,vlan 0, port 1, encap 0xec00)
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP processing DHCP ACK (5)
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   op: BOOTREPLY, htype: Ethernet, hlen: 6, hops: 0
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   xid: 0x18474c86 (407325830), secs: 0, flags: 0
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   chaddr: 44:2a:60:f6:d9:ec
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   ciaddr: 0.0.0.0,  yiaddr: 192.168.46.133
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   siaddr: 0.0.0.0,  giaddr: 0.0.0.0
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   server id: 192.168.45.111  rcvd server id: 192.168.45.111
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP received op BOOTREPLY (2) (len 433,vlan 0, port 1, encap 0xec03)
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP processing DHCP ACK (5)
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   op: BOOTREPLY, htype: Ethernet, hlen: 6, hops: 0
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   xid: 0x18474c86 (407325830), secs: 0, flags: 0
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   chaddr: 44:2a:60:f6:d9:ec
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   ciaddr: 0.0.0.0,  yiaddr: 192.168.46.133
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   siaddr: 0.0.0.0,  giaddr: 0.0.0.0
    *DHCP Socket Task: Oct 31 14:22:05.711: 44:2a:60:f6:d9:ec DHCP   server id: 192.168.45.111  rcvd server id: 192.168.45.111
    *DHCP Socket Task: Oct 31 14:22:56.251: 44:2a:60:f6:d9:ec DHCP received op BOOTREQUEST (1) (len 308,vlan 0, port 1, encap 0xec00)
    *DHCP Socket Task: Oct 31 14:22:56.251: 44:2a:60:f6:d9:ec DHCP dropping looped REQUEST from DS (encap type 0xec00)
    *DHCP Socket Task: Oct 31 14:22:56.251: 44:2a:60:f6:d9:ec DHCP received op BOOTREPLY (2) (len 410,vlan 0, port 1, encap 0xec03)
    *DHCP Socket Task: Oct 31 14:22:56.252: 44:2a:60:f6:d9:ec DHCP processing DHCP ACK (5)
    *DHCP Socket Task: Oct 31 14:22:56.252: 44:2a:60:f6:d9:ec DHCP   op: BOOTREPLY, htype: Ethernet, hlen: 6, hops: 0
    *DHCP Socket Task: Oct 31 14:22:56.252: 44:2a:60:f6:d9:ec DHCP   xid: 0x360eedf0 (906948080), secs: 0, flags: 0
    *DHCP Socket Task: Oct 31 14:22:56.252: 44:2a:60:f6:d9:ec DHCP   chaddr: 44:2a:60:f6:d9:ec
    *DHCP Socket Task: Oct 31 14:22:56.252: 44:2a:60:f6:d9:ec DHCP   ciaddr: 192.168.46.133,  yiaddr: 0.0.0.0
    *DHCP Socket Task: Oct 31 14:22:56.252: 44:2a:60:f6:d9:ec DHCP   siaddr: 0.0.0.0,  giaddr: 0.0.0.0
    *DHCP Socket Task: Oct 31 14:22:56.252: 44:2a:60:f6:d9:ec DHCP   server id: 192.168.45.111  rcvd server id: 192.168.45.111
    *DHCP Socket Task: Oct 31 14:22:56.253: 44:2a:60:f6:d9:ec DHCP received op BOOTREPLY (2) (len 410,vlan 0, port 1, encap 0xec03)
    *DHCP Socket Task: Oct 31 14:22:56.253: 44:2a:60:f6:d9:ec DHCP processing DHCP ACK (5)
    *DHCP Socket Task: Oct 31 14:22:56.253: 44:2a:60:f6:d9:ec DHCP   op: BOOTREPLY, htype: Ethernet, hlen: 6, hops: 0
    *DHCP Socket Task: Oct 31 14:22:56.253: 44:2a:60:f6:d9:ec DHCP   xid: 0x360eedf0 (906948080), secs: 0, flags: 0
    *DHCP Socket Task: Oct 31 14:22:56.253: 44:2a:60:f6:d9:ec DHCP   chaddr: 44:2a:60:f6:d9:ec
    *DHCP Socket Task: Oct 31 14:22:56.253: 44:2a:60:f6:d9:ec DHCP   ciaddr: 192.168.46.133,  yiaddr: 0.0.0.0
    *DHCP Socket Task: Oct 31 14:22:56.253: 44:2a:60:f6:d9:ec DHCP   siaddr: 0.0.0.0,  giaddr: 0.0.0.0
    (Cisco Controller) >
    (Cisco Controller) >
    (Cisco Controller) >
    (Cisco Controller) >
    (Cisco Controller) >*DHCP Socket Task: Oct 31 14:22:56.253: 44:2a:60:f6:d9:ec DHCP   server id: 192.168.45.103  rcvd server id: 192.168.45.103
    *DHCP Socket Task: Oct 31 14:29:41.712: 44:2a:60:f6:d9:ec DHCP received op BOOTREQUEST (1) (len 308,vlan 0, port 1, encap 0xec00)
    *DHCP Socket Task: Oct 31 14:29:41.712: 44:2a:60:f6:d9:ec DHCP dropping looped REQUEST from DS (encap type 0xec00)
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP received op BOOTREPLY (2) (len 410,vlan 0, port 1, encap 0xec03)
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP processing DHCP ACK (5)
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP   op: BOOTREPLY, htype: Ethernet, hlen: 6, hops: 0
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP   xid: 0x6bd418e0 (1809062112), secs: 0, flags: 0
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP   chaddr: 44:2a:60:f6:d9:ec
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP   ciaddr: 192.168.46.133,  yiaddr: 0.0.0.0
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP   siaddr: 0.0.0.0,  giaddr: 0.0.0.0
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP   server id: 192.168.45.111  rcvd server id: 192.168.45.111
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP received op BOOTREPLY (2) (len 410,vlan 0, port 1, encap 0xec03)
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP processing DHCP ACK (5)
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP   op: BOOTREPLY, htype: Ethernet, hlen: 6, hops: 0
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP   xid: 0x6bd418e0 (1809062112), secs: 0, flags: 0
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP   chaddr: 44:2a:60:f6:d9:ec
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP   ciaddr: 192.168.46.133,  yiaddr: 0.0.0.0
    *DHCP Socket Task: Oct 31 14:29:41.713: 44:2a:60:f6:d9:ec DHCP   siaddr: 0.0.0.0,  giaddr: 0.0.0.0
    the selected potrion of log is just about lost connection. can you help me in understanding?

    Well then I would look at the client device since its one device right now. If you have other devices working, it's hard to say the wireless is broke. Upgrade the wireless adapter firmware since your client has Windows 7 running on a Mac air.
    Sent from Cisco Technical Support iPhone App

  • [jsr82] can a j2me app be a Bluetooth server and client role in parallel?

    I want to make my j2me app register a special service channel and listen to it, meanwhile, I also want to start a client to connect to other handset which has the same services. In Bluetooth protocol side, this is obviously OK, but in J2me is this design possible? some people said that in jsr82, the Bluetooth device is exclusive for J2me app, app cannot be both server role and client role at the same time. Can anybody give me a definite answer?

    No this design is not possible with JSR 82. Because when the device acts as a server it can't be used as a client as whenever you will run the client code the server mode will disappear.
    But what maximum you can do is when you need the client to run close the server and switch into the client mode but I think you don't need this solution.
    Shan!!!

  • Mac OS 10.4.10 and Tape Devices issues

    Subject: [BRUServer-Announce] Mac OS X 10.4.10 Announcement...
    I am posting this message out to the group for additional knowledge on
    this issue..
    We have a older G5 XServe with XRaid connected via Fibre Channel and an Adic
    Scalar 100 LTO-2 tape unit connected via SCSI.
    We have been seeing some issue with our tape unit lately and looking for
    suggestions on a fix or work-a-round.
    BRU suggest this:
    <snip>
    To resolve this issue, we strongly suggest that you downgrade to
    10.4.8, as 10.4.9 has been known to exhibit the same type of symptoms.
    <snip>
    My question would be if we select to downgrade to Mac OS 10.4.8,
    What would be the Best method to do downgrade to Mac OS 10.4.8 ?
    Regards,
    Roger Sinning
     PrePress System Administrator
    Schmidt
    Byron, MN 55920
    schmidt
    print solutions that deliver.
    ------ Forwarded Message
    From: <[email protected]>
    Reply-To: <[email protected]>
    Date: Tue, 23 Oct 2007 17:32:54 -0700
    To: <[email protected]>
    Subject: [BRUServer-Announce] Mac OS X 10.4.10 Announcement...
    Please do not reply to this message.
    This list is for announcements only.
    An Important Note for Mac Users of BRU Technology Under Mac OS X
    Since the release of 10.4.10, there are a number of issues that have
    surfaced with writing to tape and disk devices. For this reason,
    10.4.10 is not compatible with tape devices connected to Mac OS X
    10.4.10 via SCSI, FireWire, USB, SAS, or Fibre-Channel.
    This is not a BRU Server software problem, but rather an Apple Mac OS
    X problem when using any type of software that communicates with tape
    devices.
    Other problems with XRAID, Xsan, and other disk devices communicating
    over these channels may also be realized.
    http://www.attotech.com/troublemac.html
    http://knowledgebase.tolisgroup.com/?View=entry&EntryID=47
    http://support.overlandstorage.com/jive/entry!default.jspa?cateforyID=7&exte
    rnalID=6041&fromSearchPage=true
    http://www.google.com/search?hl=en&rls=en&q=10.4.10backup+tapeissues&btnG=
    Search
    To resolve this issue, we strongly suggest that you downgrade to
    10.4.8, as 10.4.9 has been known to exhibit the same type of symptoms.
    We apologize that we did not make the announcement sooner, however, we
    believed that 10.4.11, which fixes this problem, would be released
    much sooner than now. As of this announcement, 10.4.11 has yet to be
    released, nor has there been an announcement for its expected release
    date.

    an update on my client's situation:
    os: server 10.4.11
    scsi card: LSILogic Ultra320, 1.3.39.0 firmware
    tape: exabyte 1x10 library, vxa172 tape drive
    after a reboot, but still running 10.4.10, the tape drive appeared on the SCSI bus.
    after installing the 10.4.11 update, the OS can't see the tape drive, but the library is. basically, that's no different than before the update.
    does anyone have any ideas on how to scare the drive into reappearing? would unloading/reloading kexts help? the library is basically useless without the tape drive reliably recognized by the SCSI card.

  • WRT54G2: Searching For Client Device

    After logging into the router's web interface, and trying to access the "wireless" settings screen, I get the following message:
    Searching for your client device.
    Please wait...
    If you haven't clicked on the Wi-Fi Protected Setup button on your client device, please do so now.
    Which then hangs when it's 99% completed.
    I've posted a screen shot at
    www.peeniewallie.com/2008/07/searching_for_your_client_device.html
    (1) I set up this router several months ago, with two client devices. At the time, I did not get this message. Instead, I was able to access the web interface the way I always have with earlier Linksys routers.
    (2) This happens if I access the router via wireless or Ethernet cable.
    Any ideas on how I can get past this screen? The client devices are an iMac and MacBook Pro.
    Message Edited by Robert Racansky on 07-10-2008 07:24 AM

    Hard reset the router for 2-3 minutes ..... once resetted ... power down the router for few seconds ... power up & reconfigure the router ...
    See if it works or not ....

  • WebtoGo for laptop and mobile device - urgent

    Hi,
    I need to develop a web to Go application for both laptop and mobile device. The code which i generate for laptop should work on mobile device too.
    ie the single application should work for both mobile and laptop devices.
    Now coming to lightweight framework and small footprints what technologies should i use in J2EE.
    If i use struts is that going to be mess in mobile device. Some one guide me here about choosing the technologies.
    Thanks

    our java app that we have just ported from PDA to laptop uses AWT components as these work on the PDA. need to go for what will work on the windows mobile device, abnd this may restrict you to older and less functional components.
    NOTE platform is defined within the application on the server side (the name of the database on the client), and therefore you will need two applications in terms of oracle lite publications, so define the database name external to the code in some kind of a properties/config file

  • Possible to use wired 10/100 ethernet for client device?

    I can't seem to find an answer to this question...
    I have a Airport Express that I connect to my stereo for streamed music in my living room. It's connected to my existing wireless network (Linksys WRT54G, WPA on). Works great. Airport Express is not configured as a network extender, just connected to the existing network.
    With this configuration (or any other configuration) is it possible to connect a client device (in this case my Tivo) to the wired ethernet port on the Airport Express and have it function? I currently have a wire pulled down my hallway to connect my Tivo, I'd love to get rid of that wire. And since my Airport Express sits right behind my entertainment center, it would be great if I could use it in this fashion.
    Anyone know if this is possible? I guess the short version is, can I connect anything to the AE's 10/100 ethernet port and have it be a member of my network?

    Well, I gave it a try. It's not quite working though. I get through the entire WDS setup with no problems. Configuration went fine. Yes, it has to be WEP, not WAP for setup with WDS.
    It doesn't work though. The light on the Airport Express stays solid green, showing a valid connection. But I can't see my AE anymore, in iTunes or from the Airport Admin Utility.
    In the Airport Admin utility, I did set the ethernet port to be active. When I connect the AE to the router via the 10/100 port, everything works fine. But it simply won't show up with just the wireless. Maybe you can either connect the AE to your network via Wireless WDS OR the ethernet port can be active, but not both?

  • Cisco ISE posture assesment and client provisioning

    Hello,
    I have Cisco ISE and Cisco IOS device. I have configured RADIUS in between these device.
    Also I have configured RADIUSbetween Cisco ISE and Cisco ASA. Now I want to know that how to do posture assesment for these devices(Cisco ISE and Cisco ASA or Cisco ISE and Cisco IOS). Please give me whole steps to do posture assesment for cisco ios device in Cisco ise.
    Also, please provide me logs related to posture assesment and client provisioning.
    Thanks in advance.

    You may go through the below listed link to download a PDF link
    Posture assessment with ISE.
    http://www.cisco.com/web/CZ/expo2012/pdf/T_SECA4_ISE_Posture_Gorgy_Acs.pdf
    ~BR
    Jatin Katyal
    **Do rate helpful posts**

  • In RMI can I have server in j2se and client in j2me

    serious help needed guys
    I am doing final year project,
    I want to have a PC to run a server and client program on a mobile device.
    I am sending text messages from mobile device and those messages will be received by the server and displayed on the server itself
    Is it feasible to have a Remote Method Invocation like that?
    Please help, Thanks in advance

    serious help needed guys
    I am doing final year project,
    I want to have a PC to run a server and client program on a mobile device.
    I am sending text messages from mobile device and those messages will be received by the server and displayed on the server itself
    Is it feasible to have a Remote Method Invocation like that?
    Please help, Thanks in advance

  • SCREEN LOCKED error "Searching for your client device. Please wait..."

    This error is locking my routers configuration screen. "Searching for your client device. Please wait... If you haven't clicked on the Wi-Fi Protected Setup button on your client device, please do so now."
    Is there a fix for this issue without restoring to the factory defaults?.
    Your work around is not an option because restoring the factory defaults and reconfiguring the router manually is would be too time consuming in our small office and can afford the downtime. Is there a fix for this issue without restoring to the factory defaults? This problem has been crippling many of the Linksys routers for some time now; just search the error on goggle.
    Solved!
    Go to Solution.

    Power cycle the router. Unplug the power cord for 30 seconds and power it back on. If it still won't work, then you will have to reset and reconfigure the router. Please check the links below on how to reset the router and set it up for either cable or DSL:
    Title: Resetting the router to factory defaults and changing the router’s password
    Article ID: 19584
    http://kb.linksys.com/Linksys/GetArticle.aspx?docid=1e97db4854604b0fb5cc8c0d74491e35_19584.xml&pid=8...
    Title: Setting up a Linksys router for DSL Internet connection
    Article ID: 3687
    http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=20ee1457387f40178cd5f41d4b585db4_3687.xml&pid=80&r...
    Title: Setting up a Linksys router with Cable Internet service
    Article ID: 3686
    http://kb.linksys.com/Linksys/ukp.aspx?pid=80&vw=1&articleid=3686

  • Install right click tool and client troubleshooting tools.

    Hi Everyone,
    I need some information, I heave 2012 native mode environment with MacAfee firewall. But I need to install rite click tool and client troubleshoot tools. It is possible or
    not, if yes  Please give me the detailed Information.
    Thanks in advance.

    The fact that you're running ConfigMgr 2012 in HTTPS and have a McAfee firewall running, has nothing to do with the installation of right-click tools. If you have the permissions to install the right-click tools on a device, with the ConfigMgr console, you're
    good to go.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

Maybe you are looking for

  • ITunes 12.1 freezing upon launch due to "determining audio volume"

    My (Late 2011) MBP running Yosemite is freezing when I launch iTunes. It is 12.1, the latest version. Upon launch, it says "Determining Audio Volume" and is on the first of my several thousand songs. The spinning wheel eventually pops up and I am for

  • RAW support for the Olympus PEN E-PL7

    Hi, recently bought the E-PL7 (backup for the E-M1) and was very disappointed to realize that iPhoto does not support the RAW(ORF)-files the camera generates. The camera is on the market since three months and there seems to be no update.... Is there

  • Warehouse mgmt

    what is the role of storage location in where house mang. if i have where house management for my plant then bin will be the final point where i will be keeping the material so if i want to issue the goods then system should ask for bin or for storag

  • Portal Install Fails During "Load Java Database Content"

    Hi, I'm installing our production enterprise portal and it is failing on the following step: "Load Java Database Content" When I load at the jload.log I see the following error message: 20.06.06 14:11 com.sap.inst.jload.Jload main INFO: Jload -sec EP

  • New contract account suspended with £70 limit reached

    I applied for a contract via the Internet to be sent an email that it has been referred. Received another email to be told to ring for further information. Went through a further I.d check to be told I passed. My phone would be sent out and be delive