Strange Reassociation behaviour - help on troubleshoot

Hi there,
I have a production wlc wich has several ssid's working.
In a particular ssid, the wifi clients are bar code readers, using a wpa psk encription/authentication.
My client had bought a new bar code readers, and since then, we are having problems.
I had capture a debug client <mac> and attached here.
I cant find a reason for so much reassociation requests... even for the same AP.
Please give a light in here please.
My Best Regards,
Petrónio

Thank You leolaohoo,
I'll try it asap.
Do you detect any strange behaviour on the log ???
I detect a strange shortcut on the flow ...
START -> AUTHCHECK -> 8021X_REQD -> L2AUTHCOMPLETE -> RUN
*apfMsConnTask_0: Sep 23 13:41:06.809: e0:2a:82:68:b3:da 10.120.109.101 RUN (20) Change state to START (0) last state RUN (20)
*apfMsConnTask_0: Sep 23 13:41:06.809: e0:2a:82:68:b3:da 10.120.109.101 AUTHCHECK (2) Change state to 8021X_REQD (3) last state RUN (20)
*apfMsConnTask_0: Sep 23 13:41:06.809: e0:2a:82:68:b3:da 10.120.109.101 8021X_REQD (3) Plumbed mobile LWAPP rule on AP ac:a0:16:ca:b8:30 vapId 1 apVapId 1
*Dot1x_NW_MsgTask_2: Sep 23 13:41:06.878: e0:2a:82:68:b3:da 10.120.109.101 8021X_REQD (3) Change state to L2AUTHCOMPLETE (4) last state RUN (20)
*Dot1x_NW_MsgTask_2: Sep 23 13:41:06.878: e0:2a:82:68:b3:da 10.120.109.101 L2AUTHCOMPLETE (4) Change state to RUN (20) last state RUN (20)
From "Policy Enforcement Module (PEM)" Figure, in "http://www.cisco.com/en/US/products/hw/wireless/ps430/products_tech_note09186a008091b08b.shtml" i see it bypass dhcp states.
But nevertheless, if we have "RUN" states, then we could afirm, that " Client has successfully completed the required L2 and L3 policies and can now transmit traffic to the network" . Im i right ?
Petrónio

Similar Messages

  • Strange Text Behaviour [HELP]

    I have a movie clip that contains a multiline text field.  It has about 20 lines of text. Each line numbered.
    1. kjlkjasldkjlaskjlaskjd
    2. klasjlaksjdlaksdj
    3. kajshdkajhsdkjahsdkh
    etc.
    For some reason .. the entire first line of text disappears and then randomly comes back when you scroll it off screen.
    So when you scroll it off screen and then bring it back in to view..  the text starts at 2. kjahskdjhasdkjha
    if you keep scrolling up and down for a bit,  line 1 just randomly comes back.
    I have no idea whats causing this.
    Any ideas ?

    I'm beginning to think this is a bug - in the last fortnight I've had 3 people at the office ask me how to switch this off and they've all sworn blind that they didn't switch this feature on to begin with.
    Is there a key combination they are accidentally hitting which is switching this feature on? =0)

  • Strange memory behaviour using the System.Collections.Hashtable in object reference

    Dear all,
    Recently I came across a strange memory behaviour when comparing the system.collections.hashtable versus de scripting.dictionary object and thought to analyse it a bit in depth. First I thought I incorrectly destroyed references to the class and
    child classes but even when properly destroying them (and even implemented a "SafeObject" with deallocate method) I kept seeing strange memory behaviour.
    Hope this will help others when facing strange memory usage BUT I dont have a solution to the problem (yet) suggestions are welcome.
    Setting:
    I have a parent class that stores data in child classes through the use of a dictionary object. I want to store many differenct items in memory and fetching or alteging them must be as efficient as possible using the dictionary ability of retrieving key
    / value pairs. When the child class (which I store in the dictionary as value) contains another dictionary object memory handeling is as expected where all used memory is release upon the objects leaving scope (or destroyed via code). When I use a system.collection.hashtable
    no memory is released at all though apears to have some internal flag that marks it as useable for another system.collection.hashtable object.
    I created a small test snippet of code to test this behaviour with (running excel from the Office Plus 2010 version) The snippet contains a module to instantiate the parent class and child classes that will contain the data. One sub will test the Hash functionality
    and the other sub will test the dictionary functionality.
    Module1
    Option Explicit
    Sub testHash()
    Dim Parent As parent_class
    Dim d_Count As Double
    'Instantiate parent class
    Set Parent = New parent_class
    'Create a child using the hash collection object
    Parent.AddChildHash "TEST_hash"
    Dim d_CycleCount As Double
    d_CycleCount = 50000
    'Add dummy data records to the child container with x amount of data For d_Count = 0 To d_CycleCount
    Parent.ChildContainer("TEST_hash").InsertDataToHash CStr(d_Count), "dummy data"
    Next
    'Killing the parent when it goes out of scope should kill the childs. (Try it out and watch for the termination debug messages)
    'According to documentation and debug messages not really required!
    Set Parent.ChildContainer("TEST_hash") = Nothing
    'According to documentation not really as we are leaving scope but just to be consistent.. kill the parent!
    Set Parent = Nothing
    End Sub
    Sub testDict()
    Dim Parent As parent_class
    Dim d_Count As Double
    'Instantiate parent class
    Set Parent = New parent_class
    'Create a child using the dictionary object
    Parent.AddChildDict "TEST_dict"
    Dim d_CycleCount As Double
    d_CycleCount = 50000
    'Blow up the memory with x amount of records
    Dim s_SheetCycleCount As String
    s_SheetCycleCount = ThisWorkbook.Worksheets("ButtonSheet").Range("K2").Value
    If IsNumeric(s_SheetCycleCount) Then d_CycleCount = CDbl(s_SheetCycleCount)
    'Add dummy data records to the child container
    For d_Count = 0 To d_CycleCount
    Parent.ChildContainer("TEST_dict").InsertDataToDict CStr(d_Count), "dummy data"
    Next
    'Killing the parent when it goes out of scope should kill the childs. (Try it out and watch for the termination debug messages)
    'According to documentation and debug messages not really required!
    Set Parent.ChildContainer("TEST_dict") = Nothing
    'According to documentation not really as we are leaving scope but just to be consistent.. kill the parent!
    Set Parent = Nothing
    End Sub
    parent_class:
    Option Explicit
    Public ChildContainer As Object
    Private Counter As Double
    Private Sub Class_Initialize()
    Debug.Print "Parent initialized"
    Set ChildContainer = CreateObject("Scripting.dictionary")
    End Sub
    Public Sub AddChildHash(ByRef ChildKey As String)
    If Not ChildContainer.Exists(ChildKey) Then
    Dim TmpChild As child_class_hashtable
    Set TmpChild = New child_class_hashtable
    ChildContainer.Add ChildKey, TmpChild
    Counter = Counter + 1
    Set TmpChild = Nothing
    End If
    End Sub
    Public Sub AddChildDict(ByRef ChildKey As String)
    If Not ChildContainer.Exists(ChildKey) Then
    Dim TmpChild As child_class_dict
    Set TmpChild = New child_class_dict
    ChildContainer.Add ChildKey, TmpChild
    Counter = Counter + 1
    Set TmpChild = Nothing
    End If
    End Sub
    Private Sub Class_Terminate()
    Debug.Print "Parent being killed, first kill all childs (if there are any left!) - muahaha"
    Set ChildContainer = Nothing
    Debug.Print "Parent killed"
    End Sub
    child_class_dict
    Option Explicit
    Public MemmoryLeakObject As Object
    Private Sub Class_Initialize()
    Debug.Print "Child using Scripting.Dictionary initialized"
    Set MemmoryLeakObject = CreateObject("Scripting.Dictionary")
    End Sub
    Public Sub InsertDataToDict(ByRef KeyValue As String, ByRef DataValue As String)
    If Not MemmoryLeakObject.Exists(KeyValue) Then MemmoryLeakObject.Add KeyValue, DataValue
    End Sub
    Private Sub Class_Terminate()
    Debug.Print "Child using Scripting.Dictionary terminated"
    Set MemmoryLeakObject = Nothing
    End Sub
    child_class_hash:
    Option Explicit
    Public MemmoryLeakObject As Object
    Private Sub Class_Initialize()
    Debug.Print "Child using System.Collections.Hashtable initialized"
    Set MemmoryLeakObject = CreateObject("System.Collections.Hashtable")
    End Sub
    Public Sub InsertDataToHash(ByRef KeyValue As String, ByRef DataValue As String)
    If Not MemmoryLeakObject.ContainsKey(KeyValue) Then MemmoryLeakObject.Add KeyValue, DataValue
    End Sub
    Private Sub Class_Terminate()
    Debug.Print "Child using System.Collections.Hashtable terminated"
    Set MemmoryLeakObject = Nothing
    End Sub
    Statistics:
    TEST: (Chronologically ordered)
    1.1 Excel starting memory: 25.324 kb approximately
    Max memory usage after hash (500.000 records) 84.352 kb approximately
    Memory released: 0 %
    1.2 max memory usages after 2nd consequtive hash usage 81.616 kb approximately
    "observation:
    - memory is released then reused
    - less max memory consumed"
    1.3 max memory usages after 3rd consequtive hash usage 80.000 kb approximately
    "observation:
    - memory is released then reused
    - less max memory consumed"
    1.4 Running the dictionary procedure after any of the hash runs will start from the already allocated memory
    In this case from 80000 kb to 147000 kb
    Close excel, free up memory and restart excel
    2.1 Excel starting memory: 25.324 kb approximately
    Max memory usage after dict (500.000 records) 90.000 kb approximately
    Memory released: 91,9%
    2.2 Excel starting memory 2nd consequtive dict run: 27.552 kb approximately
    Max memory usage after dict (500.000 records) 90.000 kb approximately
    Memory released: 99,4%
    2.3 Excel starting memory 3rd consequtive dict run: 27.712 kb approximately
    Max memory usage after dict (500.000 records) 90.000 kb approximately
    Memory released:

    Hi Cor,
    Thank you for going through my post and took the time to reply :) Most apreciated. The issue I am facing is that the memory is not reallocated when using mixed object types and is not behaving the same. I not understand that .net versus the older methods
    use memory allocation differently and perhaps using the .net dictionary object (in stead of the scripting.dictionary) may lead to similar behaviour. {Curious to find that out -> put to the to do list of interesting thingies to explore}
    I agree that allocated memory is not a bad thing as the blocks are already assigned to the program and therefore should be reallocated with more performance. However the dictionary object versus hashtable perform almost identical (and sometimes even favor
    the dictionary object)
    The hashtable is clearly the winner when dealing with small sets of data.
    The issue arises when I am using the hash table in conjunction with another type, for example a dictionary, I see that the dictionary object's memory is stacked on top of the claimed memory space of the hashtable. It appears that .net memory allocation and
    reuse is for .net references only. :) (Or so it seems)
    In another example I got with the similar setup, I see that the total used memory is never released or reclaimed and leakage of around 20% allocated memory remains to eventually crash the system with the out of memory message. (This is when another class
    calls the parent class that instantiates the child class but thats not the point of the question at hand)
    This leakage drove me to investigate and create the example of this post in the first place. For the solution with the class -> parent class -> child class memory leak I switched all to dictionaries and no leakage occurs anymore but nevertheless thought
    it may be good to share / ask if anyone else knows more :D (Never to old to learn something new)

  • Strange repaint behaviour with JList & Keyboard actions

    Hi everyone,
    This is my first post to the forum. You guys have been a great help in the past and I hope to contribute more in the future.
    Anyways, I've encountered some strange repainting behaviour with a JDialog that uses a JList and a JButton. The dialog is fairly straight-forward and basically this is how it works (like an open file dialog - yes I'm implementing my own filechooser of sorts):
    * JList lists a number of simple items that the user can select from.
    * Once a selection is made, an Open button (JButton) is enabled.
    * <ENTER> key is registered (using registerKeyboardAction()) with a JPanel which is used as the main content pane in the dialog.
    * The user can either click on the Open Button or hit the <ENTER> key which then closes the dialog and runs whatever logic that needs to.
    Now, the repaint problem comes in when:
    1. User selects an item.
    2. User hits the <ENTER> button
    3. Dialog closes
    4. User brings the dialog back up. This entails reloading the list by removing all elements from the list and adding new ones back in.
    5. Now... if the user uses the mouse to select an item lower in the list than what was done in step #1, the selection is made, but the JList doesn't repaint to show that the new selection was made.
    I didn't include a code sample because the dialog setup is totally straight-forward and I'm not doing anything trick (I've been doing this kind of thing for years now).
    If I remove the key registration for the <ENTER> key from the dialog, this problem NEVER happens. Has anyone seen anything like this? It's a minor problem since my workaround is to use a ListSelectionListener which manually calls repaint() on the JList inside the valueChanged() method.
    Just curious,
    Huy

    Oh, my bad. I'm actually using a JToggleButton and not a JButton, so the getRootPane().setDefaultButton() doesn't apply because it only takes JButton as an input param. I wonder why it wasn't implemented to take AbstractButton. hmmm.

  • Strange JTable behaviour - everything is highlighted

    Hello all,
    im experiencing some strange JTable behaviour, and im not so sure why. When i run my program, the JTable appears, but all the cells are highlighted in advance. Also, i can now only select one cell at a time. I have set myTable.setSelectionModeListSelectionModel.SINGLE_INTERVAL_SELECTION);  myTable.setCellSelectionEnabled(true);and my renderer code is below. I call the renderer by using the setDefaultRenderer method with(Object.class,myRenderer).
    I have also changed isCellEditable to return true. If i dont use Object.class, and try to use my own custom class, the JTable is not all highlighted, but it doesnt seem to use myRenderer, and when i click on the header of Column A, all cells from column B and beyond become highlight, which is not normal behaviour. I thought the colum you selected should be highlighted.
    Sorry for the long post, i hope the above makes sense...this is really quite bizzare, and im not so sure why this is happening. Thanks for any advice you can give, regards, Rupz
    import javax.swing.*;
    import javax.swing.table.DefaultTableCellRenderer;
    import javax.swing.border.*;
    import java.awt.Component;
    import java.awt.Color;
    import java.awt.Rectangle;
    import java.util.*;
    import java.awt.*;
    public class MyTableCellRenderer extends DefaultTableCellRenderer{
         private Font cellFont;
         private LineBorder  selectBorder;
        private EmptyBorder emptyBorder;
         public MyTableCellRenderer() {
              super();
              setOpaque(true);
              emptyBorder  = new EmptyBorder(1, 2, 1, 2);
              cellFont = new Font("Times", Font.PLAIN, 10);
              setFont(cellFont);
              selectBorder = new LineBorder(Color.red);
         private boolean isHeaderCell(int row, int column){return column == 0;}
         public Component getTableCellRendererComponent (JTable myTable, Object value, boolean isSelected, boolean hasFocus, int row, int column){
              //super.getTableCellRendererComponent(myTable, value, isSelected, hasFocus,row, column);
              if (isSelected){
                   super.setForeground(myTable.getSelectionForeground());
                   super.setBackground(myTable.getSelectionBackground());
                   setBorder(selectBorder);
              else{
                   super.setForeground(myTable.getSelectionForeground());
                   super.setBackground(myTable.getSelectionBackground());
                   setBorder(emptyBorder);
         if (hasFocus) {
              setBorder(selectBorder);
              if (myTable.isCellEditable(row,column)) {
                   super.setForeground(UIManager.getColor("Table.focusCellForeground"));
                   super.setBackground(UIManager.getColor("Table.focusCellBackground"));
         else {setBorder(noFocusBorder);}
         setValue(value, isSelected, hasFocus, row, column);
    //      Color bDis = getBackground();
    //      boolean colourEquals = (bDis != null) && (bDis.equals(myTable.getBackground()) ) & myTable.isOpaque();
    //      setOpaque (!colourEquals);
         return this;
         public void setValue (Object value, boolean hasFocus, boolean isSelected, int row, int column){
              if (value instanceof myCell){
                   myCell foo = (myCell)value;
                   Object data = foo.getValue(row,column);
                   if (isHeaderCell(row, column)) {
                    //label cells are center aligned
                        setHorizontalAlignment(JTextField.CENTER);
                       }else {
                              if (data instanceof Number) {
                                  //numbers are right justified
                            setHorizontalAlignment(JTextField.RIGHT);
                              }else {
                                  //everything else is left justified
                            setHorizontalAlignment(JTextField.LEFT);
                          //value to display in table
                       setText((data == null) ? "" : data.toString());
               else {
                          //not cell object so render with toString of that object
                          setText((value == null) ? "" : value.toString());

    Hi VV!
    thanks for the reply - now the table isnt all highlight when loaded, but as for cell celection..thats a different matter. I did have myTable.setCellSelectionEnabled(true); but no, the cell behaviour is really, eally weird, quite hard to explain, but here goes.
    If i try to select cell D1 and D2 - D1 is selected, D2, E2,F2 and so on become selected. If i try to add D3 to the mix, the entire row 3 is selected, and as soon as i let go of the mouse button, the entire table except row 1 gets selected. really really weird. Below is my tableModel and what i do to the table. Thanks for your help,
    regards
    Rupz
    myTable.setModel(new myTableModel(this,40,40));
         // Create a row-header to display row numbers.
         // This row-header is made of labels whose Borders,
         // Foregrounds, Backgrounds, and Fonts must be
         // the one used for the table column headers.
         // Also ensure that the row-header labels and the table
         // rows have the same height.
         numRows = myTable.getColumnCount();
         numCols = myTable.getRowCount();
         TableColumn       aColumn   = myTable.getColumnModel().getColumn(0);
         TableCellRenderer aRenderer = myTable.getTableHeader().getDefaultRenderer();
         Component aComponent = aRenderer.getTableCellRendererComponent(myTable, aColumn.getHeaderValue(), false, false, -1, 0);
         Font  aFont       = aComponent.getFont();
         Color aBackground = aComponent.getBackground();
         Color aForeground = aComponent.getForeground();
         Border      border  = (Border)UIManager.getDefaults().get("TableHeader.cellBorder");
         FontMetrics metrics = getFontMetrics(cellFont);
          * Creating a panel to be used as the row header.
          * Since I'm not using any LayoutManager,
          * a call to setPreferredSize().
         JPanel pnl = new JPanel((LayoutManager)null);
         Dimension dim = new Dimension( 40,  rowHeight*numRows);
         pnl.setPreferredSize(dim);
         // Adding the row header labels
         dim.height = rowHeight;
         for (int ii=0; ii<numRows; ii++) {
           JLabel lbl = new JLabel(Integer.toString(ii+1), SwingConstants.CENTER);
           lbl.setFont(aFont);
           lbl.setBackground(aBackground);
           lbl.setForeground(aForeground);
           lbl.setBorder(border);
           lbl.setBounds(0, ii*dim.height, dim.width, dim.height);
           pnl.add(lbl);
         JViewport vp = new JViewport();
         dim.height = rowHeight*numRows;
         vp.setViewSize(dim);
         vp.setView(pnl);
         // Set resize policy and make sure
         // the table's size is tailored
         // as soon as it gets drawn.
         myTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
         Dimension dimScpViewport = myTable.getPreferredScrollableViewportSize();
         if (numRows>30) dimScpViewport.height = 30*rowHeight;
         else           dimScpViewport.height  = numRows*rowHeight;
         if (numCols>15)
           dimScpViewport.width = 15*myTable.getColumnModel().getTotalColumnWidth()/numCols;
         else
           dimScpViewport.width = myTable.getColumnModel().getTotalColumnWidth();
         myTable.setPreferredScrollableViewportSize(dimScpViewport);
         myTable.repaint();
    And the table model
    public class myTableModel extends DefaultTableModel {
         private MySpread mySpreadsheet;
         public myTableModel (MySpread aSpreadsheet){
              super();
              mySpreadsheet = aSpreadsheet;
         public myTableModel (MySpread aSpreadsheet, int rows,int cols){
              super(rows,cols);
    //                 for(int x = 0; x < rows; x++) {
    //                      myCell temp = new myCell(new Integer(x+1));
    //                  super.setValueAt(temp, x, 0);
            for(int x =0 ; x < rows; x++)
             for (int y = 0; y < cols; y++)
              // we initialize it here
              super.setValueAt(new myCell(rows,cols,("")),x,y);
         mySpreadsheet = aSpreadsheet;
         public boolean isCellEditable(int row, int column) {return true;}  
         

  • Strange Portal Behaviour

    Hi All,
    I'm having problems with a portal since I added an applet to one of the portlets using an HTML <OBJECT> tag. The applet requires a java console to load up and once this is complete, for some reason the default portlet of the portal is refreshed (More precisely the begin action is fired).
    I'm assuming that this is related to the java console because repeating the action above once the console has loaded does not cause the default portlet to be refreshed again a second time.
    Has anyone experienced similar behaviour?
    If it helps, the code in the jsp is:
    <netui-data:repeater dataSource="{pageFlow.pieChart}">
    <netui-data:repeaterHeader>
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    height="200" width="650" hspace="10"
    standby="Loading Requested Chart........">
    <PARAM name="code" value="X_PieChart.class">
    <PARAM name="codebase" value="/mpsportal/javaScript/">
    <PARAM name="image" value="">
    <PARAM name="forecolor" value="555566">
    <PARAM name="activecolor" value="cc0000">
    <PARAM name="backcolor" value="ffffbe">
    <PARAM name="activecolor_shadow" value="ff0000">
    <PARAM name="distance" value="8">
    </netui-data:repeaterHeader>
    <netui-data:repeaterItem>
    <PARAM NAME='p<netui:content value="{container.index}"/>' value='<netui:content value="{container.item.name}"/>#<netui:content value="{container.item.value}"/>#0000AA#0000FF#<netui:content value="{container.item.name}"/> - <netui:content value="{container.item.value}"/>##'>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter>
    <PARAM name="showratios" value="1">
    <PARAM name="deep" value="8">
    <PARAM name="font" value="verdana#plain#12">
    <PARAM name="title" value="">
    <PARAM name="titlealign" value="2">
    </OBJECT>
    </netui-data:repeaterFooter>
    </netui-data:repeater>

    Hi all,
    I am closing this thread as i came to know that i cannot open two threads parallely, about an issue  in different forums .
    If u have more suggetions reg this issue, please post them in the following thread :
    Strange Portal Behaviour in Internet Explorer 8
    Regards,
    Anupama

  • STRANGE GRAPHICS BEHAVIOUR !!!!

    I've posted this in another forum but didn't get any good help...
    So I hope U guys could help me!
    I made a bit of complex GUI wih a lot of different layoutmanagers and components.
    The problem is that when I open a frame/dialog/optionpane above the GUI it leaves "footprints" on the GUI. The "footprints" is vertical stripes from where the frame/dialog/optionpane where.
    When a minimize my GUI and maximize it again the stripes are gone. It seems like the GUI needs to be updated/repainted or something more often (???)
    I'm thinking about writing a class using a thread to update/repaint the GUI each 10 milliseconds or something. What do you guys think?
    If you post me you're email-address I could send you a pic of the strange GUI behaviour.
    Thanks in advance!!!
    /Andrew

    Hi,
    try this
    everytime ur application regains focus call
    the updateUI() method.
    for this ur application has implement FocusListener interface and write this code in the focusGained method
    this should work
    hope this helps
    Regards,
    Partha

  • Strange graphic behaviour

    Hi everybody,
    on my MacBookPro Mid2010 I get a strange graphics behaviour:
    The screen sometimes looks like this:
    http://www.apfeltalk.de/forum/attachments/78146d1324206564-macbook-pro-grafikfeh ler-screenshot.jpg
    (This is not my own image, but my issue looks exactly the same!)
    Has anyone ever seen this?
    Does someone know, why it appears?
    Or things I can do against it?

    You can see this problem on my video : http://youtu.be/fvKaRJZlVco. With this problem Apple change my motherboard for free. I hope this video will help you.
    The problem happens when your macbook pro 15 core i7 mid-2010 passes the intel graphics card to nvidia 330M graphics card with iPhoto for example.
    Apple text :
    http://support.apple.com/kb/TS4088
    Sorry for my bad english.

  • Strange webcache behaviour

    Hello,
    I am faced with a strange webcache behaviour on my 9.0.4 portal. On conducting load tests on the vanilla portal install (on RedHat Linux 3.0 release), I find that the response is very smooth for sometime, with the the requests per second at a constant 800 req/sec for a certain user load, but after some time (like about 50 minutes), the throughput dramatically falls to about 40-50 rps. At this time, when I try to access the webpage, the response is very slow.
    I am trying to access some simple html pages and they are all being served straight out of the cache. Has anyone faced a similar situation?
    I tried accessing the Apache HTTP server directly and this problem disappears which leads me to conclude that the problem is probably with the web-cache. When I restart the webcache alone at this point of time, my throughput goes up back to normal, only to fail after a similar duration again.
    Any inputs on this would be very helpful.
    Thanks
    Jitendra

    There are lots of resources available, both in terms of memory and CPU. The machine is cerianly not taxed for resources. I will have to check if it is a machine specific issue.

  • How to set up VPN using MAC OSX 10.4.11, Please help I need someone to help me set up VPN using regular DSL connection on my home so someone can help me troubleshoot my XSAN system remotely. THANKS

    Hello,
    I'm having trouble setting up a VPN using MAC OSX 10.4.11 Server. I have and XSAN system and one of my volumes has been down for quite a while now. There is a very kind MAC IT professional that is willing to help be troubleshoot my system but he needs to be able to access my system remotely. I am able to connect the MDC to DSL but I haven't been able to set up the VPN. Please help, this is an emergency. Thanks!
    Marco

    have you forwared the ports on your router? Why not let him in via teamviewer? its free and mac compatable

  • HP Enterprise - Use Cloud-based HP Online Help to Troubleshoot Printing

    HP LaserJet Enterprise printers and HP Officejet Enterprise printers have cloud-based Online Help available to troubleshoot printing issues. HP Online Help users can scan a QR code on the printer display using a mobile phone or tablet, or click an error-specific link in the Event Log of the Embedded Web Server, to automatically retrieve the most relevant and up-to-date information or video to help resolve the issue at the control panel.
    Use Cloud-based HP Online Help to Troubleshoot Printing c04672002
    Setup and Configure Cloud-based HP Online Help  c04671899
    https://www.youtube.com/watch?v=IZyuyDz0Nz0
     

    Hi @Sunshyn2005
    I timed-out waiting for advice, and contacted HP Support, who helped me get the printer back on the air.  While we didn't manage to root-cause it, in the course of trying various things, the tech disabled Norton 360's firewall, which then allowed connecting to the printer, and restoring print service, which remains up after re-enabling the firewall. 
    The timing of the disconnection doesn't neatly corellate with any Windows updates.  My own theory is that it was caused by a 360 update, but am unable to find a smoking gun, since 360 doesn't provide update history.  The exact root-cause remains a mystery, but at least provides another thing for folks to try should they find themselves in similar straits.
    I really appreciated your hint that a Windows update might be the root cause, and your pointing out how to review the history and back-out updates: this morning, I found that Windows had installed a batch of updates overnight, and found that no browsers worked.  Using your advice, I rolled back the update, restoring browsing.
    Thanks,
    -rjs

  • My Imac is ejecting every disk inserted in it, I cannot access the disks, can any body help me troubleshoot the problem. I am using snow leopard.

    My Imac is ejecting every disk inserted in it, I cannot access the disks, can any body help me troubleshoot the problem. I am using snow leopard.

    Try resetting the SMC Intel-based Macs: Resetting the System Management Controller (SMC) - Apple Support
    and PRAM How to Reset NVRAM on your Mac - Apple Support
    If those don't help you can try a cleaning disc or a quick shot of compressed air. Chances are that your drive has failed, join the club it's not all that uncommon. You can either have it replaced or purchase an inexpensive external drive. Don't buy the cute little Apple USB Superdrive, it won't work on macs with internal drives working or not.

  • My Imac is ejecting every disk inserted in it, I cannot access the disks, can any body help me troubleshoot the problem.

    My Imac is ejecting every disk inserted in it, I cannot access the disks, can any body help me troubleshoot the problem

    The frist thing to try is a drive-n disk. They are cheap (US$5-15) and easy to use. Many unresponsive drives, even ones declared "dead" by an Apple tech, have returned to service after a cleaning.
    Check with home entertainment specialty shops, electronic superstores and office supply outlets that sell computer accessories.

  • PLease help me troubleshoot why my free download version of photoshop cc,Its 3D is not working.

    PLease help me troubleshoot why my free download version of photoshop cc,Its 3D is not working.

    This is My system info
    Adobe Photoshop Version: 2014.1.0 20140730.r.148 2014/07/30:23:59:59  x32
    Operating System: Windows 7 32-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:15, Stepping:13 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 2
    Processor speed: 2400 MHz
    Built-in memory: 3582 MB
    Free memory: 1169 MB
    Memory available to Photoshop: 1506 MB
    Memory used by Photoshop: 70 %
    3D Multitone Printing: Disabled.
    Touch Gestures: Disabled.
    Windows 2x UI: Disabled.
    Image tile size: 0K
    Image cache levels: 0
    Font Preview: Medium
    TextComposer: Latin
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Display: 2
    Display Bounds: top=0, left=1920, bottom=1080, right=3840
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGLGPUs=1
    NumCLGPUs=1
    glgpu[0].GLVersion="3.0"
    glgpu[0].GLMemoryMB=512
    glgpu[0].GLName="GeForce 8500 GT/PCIe/SSE2"
    glgpu[0].GLVendor="NVIDIA Corporation"
    glgpu[0].GLVendorID=4318
    glgpu[0].GLDriverVersion="9.18.13.4052"
    glgpu[0].GLRectTextureSize=8192
    glgpu[0].GLRenderer="GeForce 8500 GT/PCIe/SSE2"
    glgpu[0].GLRendererID=1057
    glgpu[0].HasGLNPOTSupport=1
    glgpu[0].GLDriver="nvd3dum.dll,nvwgf2um.dll,nvwgf2um.dll"
    glgpu[0].GLDriverDate="20140702000000.000000-000"
    glgpu[0].CanCompileProgramGLSL=1
    glgpu[0].GLFrameBufferOK=1
    glgpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="3.30 NVIDIA via Cg compiler"
    glgpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[1638 4]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[4]
    glgpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[96]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    glgpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[4096]
    glgpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[2048]
    glgpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[60]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    clgpu[0].CLPlatformVersion="1.1"
    clgpu[0].CLDeviceVersion="1.0 CUDA"
    clgpu[0].CLMemoryMB=512
    clgpu[0].CLName="GeForce 8500 GT"
    clgpu[0].CLVendor="NVIDIA Corporation"
    clgpu[0].CLVendorID=4318
    clgpu[0].CLDriverVersion="340.52"
    clgpu[0].CUDASupported=1
    clgpu[0].CUDAVersion="6.5.12"
    clgpu[0].CLBandwidth=0
    clgpu[0].CLCompute=0
    License Type: Tryout Version
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014 (32 Bit)\
    Temporary file path: C:\Users\PODGIG~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 465.7G, 342.8G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014 (32 Bit)\Required\Plug-ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014 (32 Bit)\Plug-ins\
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2014/04/14-23:42:44   79.554120   79.554120
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdbePM.dll   PatchMatch 2014/04/23-10:46:55   79.554276   79.554276
       AdobeLinguistic.dll   Adobe Linguisitc Library   8.0.0  
       AdobeOwl.dll   Adobe Owl 2014/03/05-14:49:37   5.0.33   79.552883
       AdobePDFL.dll   PDFL 2014/03/04-00:39:42   79.510482   79.510482
       AdobePIP.dll   Adobe Product Improvement Program   7.2.1.3399  
       AdobeXMP.dll   Adobe XMP Core 2014/01/13-19:44:00   79.155772   79.155772
       AdobeXMPFiles.dll   Adobe XMP Files 2014/01/13-19:44:00   79.155772   79.155772
       AdobeXMPScript.dll   Adobe XMP Script 2014/01/13-19:44:00   79.155772   79.155772
       adobe_caps.dll   Adobe CAPS   8,0,0,13  
       AGM.dll   AGM 2014/04/14-23:42:44   79.554120   79.554120
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       amtlib.dll   AMTLib   8.0.0.91 BuildVersion: 8.0; BuildDate: Tue May 27 2014 22:3:7)   1.000000
       ARE.dll   ARE 2014/04/14-23:42:44   79.554120   79.554120
       AXE8SharedExpat.dll   AXE8SharedExpat 2013/12/20-21:40:29   79.551013   79.551013
       AXEDOMCore.dll   AXEDOMCore 2013/12/20-21:40:29   79.551013   79.551013
       Bib.dll   BIB 2014/04/14-23:42:44   79.554120   79.554120
       BIBUtils.dll   BIBUtils 2014/04/14-23:42:44   79.554120   79.554120
       boost_date_time.dll   photoshopdva   8.0.0  
       boost_signals.dll   photoshopdva   8.0.0  
       boost_system.dll   photoshopdva   8.0.0  
       boost_threads.dll   photoshopdva   8.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.2.6.32411   2.2.6.32411
       CITThreading.dll   Adobe CITThreading   2.2.6.32411   2.2.6.32411
       CoolType.dll   CoolType 2014/04/14-23:42:44   79.554120   79.554120
       dvaaudiodevice.dll   photoshopdva   8.0.0  
       dvacore.dll   photoshopdva   8.0.0  
       dvamarshal.dll   photoshopdva   8.0.0  
       dvamediatypes.dll   photoshopdva   8.0.0  
       dvametadata.dll   photoshopdva   8.0.0  
       dvametadataapi.dll   photoshopdva   8.0.0  
       dvametadataui.dll   photoshopdva   8.0.0  
       dvaplayer.dll   photoshopdva   8.0.0  
       dvatransport.dll   photoshopdva   8.0.0  
       dvaui.dll   photoshopdva   8.0.0  
       dvaunittesting.dll   photoshopdva   8.0.0  
       dynamiclink.dll   photoshopdva   8.0.0  
       ExtendScript.dll   ExtendScript 2014/01/21-23:58:55   79.551519   79.551519
       icucnv40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090  
       icudt40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090  
       igestep30.dll   IGES Reader   9.3.0.113  
       imslib.dll   IMSLib DLL   7.0.0.145  
       JP2KLib.dll   JP2KLib 2014/03/12-08:53:44   79.252744   79.252744
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libiomp5md.dll   Intel(R) OpenMP* Runtime Library   5.0  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   7.2.1.3399  
       mediacoreif.dll   photoshopdva   8.0.0  
       MPS.dll   MPS 2014/03/25-23:41:34   79.553444   79.553444
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC 2014   15.1  
       Plugin.dll   Adobe Photoshop CC 2014   15.1  
       PlugPlugExternalObject.dll   Adobe(R) CEP PlugPlugExternalObject Standard Dll (32 bit)   5.0.0  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (32 bit)   5.0.0.74  
       PSArt.dll   Adobe Photoshop CC 2014   15.1  
       PSViews.dll   Adobe Photoshop CC 2014   15.1  
       SCCore.dll   ScCore 2014/01/21-23:58:55   79.551519   79.551519
       ScriptUIFlex.dll   ScriptUIFlex 2014/01/20-22:42:05   79.550992   79.550992
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   8.0.0.14 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   8.0.0.14
       VulcanControl.dll   Vulcan Application Control Library   5.0.0.82  
       VulcanMessage5.dll   Vulcan Message Library   5.0.0.82  
       WRServices.dll   WRServices Fri Mar 07 2014 15:33:10   Build 0.20204   0.20204
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Accented Edges 15.1
       Adaptive Wide Angle 15.1
       Angled Strokes 15.1
       Average 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Bas Relief 15.1
       BMP 15.1
       Camera Raw 8.6
       Camera Raw Filter 8.6
       Chalk & Charcoal 15.1
       Charcoal 15.1
       Chrome 15.1
       Cineon 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Clouds 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Collada 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Color Halftone 15.1
       Colored Pencil 15.1
       CompuServe GIF 15.1
       Conté Crayon 15.1
       Craquelure 15.1
       Crop and Straighten Photos 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Crop and Straighten Photos Filter 15.1
       Crosshatch 15.1
       Crystallize 15.1
       Cutout 15.1
       Dark Strokes 15.1
       De-Interlace 15.1
       Dicom 15.1
       Difference Clouds 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Diffuse Glow 15.1
       Displace 15.1
       Dry Brush 15.1
       Eazel Acquire 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Embed Watermark 4.0
       Entropy 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Export Color Lookup NO VERSION
       Extrude 15.1
       FastCore Routines 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Fibers 15.1
       Film Grain 15.1
       Filter Gallery 15.1
       Flash 3D 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Fresco 15.1
       Glass 15.1
       Glowing Edges 15.1
       Google Earth 4 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Grain 15.1
       Graphic Pen 15.1
       Halftone Pattern 15.1
       HDRMergeUI 15.1
       IFF Format 15.1
       IGES 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Ink Outlines 15.1
       JPEG 2000 15.1
       Kurtosis 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Lens Blur 15.1
       Lens Correction 15.1
       Lens Flare 15.1
       Liquify 15.1
       Matlab Operation 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Maximum 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Mean 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Measurement Core 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Median 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Mezzotint 15.1
       Minimum 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       MMXCore Routines 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Mosaic Tiles 15.1
       Multiprocessor Support 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Neon Glow 15.1
       Note Paper 15.1
       NTSC Colors 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Ocean Ripple 15.1
       OpenEXR 15.1
       Paint Daubs 15.1
       Palette Knife 15.1
       Patchwork 15.1
       Paths to Illustrator 15.1
       PCX 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Photocopy 15.1
       Photoshop 3D Engine 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Photoshop Touch 14.0
       Picture Package Filter 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Pinch 15.1
       Pixar 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Plaster 15.1
       Plastic Wrap 15.1
       PLY 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       PNG 15.1
       Pointillize 15.1
       Polar Coordinates 15.1
       Portable Bit Map 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Poster Edges 15.1
       Radial Blur 15.1
       Radiance 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Range 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Read Watermark 4.0
       Render Color Lookup Grid NO VERSION
       Reticulation 15.1
       Ripple 15.1
       Rough Pastels 15.1
       Save for Web 15.1
       ScriptingSupport 15.1
       Shake Reduction 15.1
       Shear 15.1
       Skewness 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Smart Blur 15.1
       Smudge Stick 15.1
       Solarize 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Spatter 15.1
       Spherize 15.1
       Sponge 15.1
       Sprayed Strokes 15.1
       Stained Glass 15.1
       Stamp 15.1
       Standard Deviation 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       STL 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Sumi-e 15.1
       Summation 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Targa 15.1
       Texturizer 15.1
       Tiles 15.1
       Torn Edges 15.1
       Twirl 15.1
       U3D 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Underpainting 15.1
       Vanishing Point 15.1
       Variance 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Virtual Reality Modeling Language | VRML 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Water Paper 15.1
       Watercolor 15.1
       Wave 15.1
       Wavefront|OBJ 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       WIA Support 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       Wind 15.1
       Wireless Bitmap 15.1 (2014.1.0 20140730.r.148 2014/07/30:23:59:59)
       ZigZag 15.1
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
    Installed TWAIN devices: NONE
    Thanks I hope this helps

  • Help to troubleshoot a 3G connection.

    Hello!
    I need help to troubleshoot a 3G connection.
    It's a CISCO2921/K9 with UC license and a 3G Interface.
    I used the manual to make the configuration, step by step, I can send and receive SMS by 3G network, and connect, take a IP, DNS etc, but I don't able to ping or send and receive data with the 3G connection.
    See the information:
    show ip int br
    Interface                  IP-Address      OK? Method Status                Protocol
    Embedded-Service-Engine0/0 unassigned      YES NVRAM  administratively down down    
    GigabitEthernet0/0         192.168.50.1    YES NVRAM  up                    up      
    GigabitEthernet0/1         192.168.6.253   YES DHCP   up                    up      
    GigabitEthernet0/2         unassigned      YES NVRAM  administratively down down    
    Cellular0/0/0              unassigned      YES NVRAM  up                    up      
    Cellular0/0/1              unassigned      YES unset  down                  down    
    Dialer1                    191.27.49.172   YES IPCP   up                    up      
    NVI0                       192.168.50.1    YES unset  up                    up      
    I have a radio ISP connected on interface G0/1 and my internal network is connected in G0/0 on a Layer 3 Switch.
    3G configuration:
    chat-script hspa-R7 "" "AT!SCACT=1,1" TIMEOUT 60 "OK"
    cellular 0/0/0 gsm profile create 1 zap.vivo.com.br PAP vivo vivo
    interface Cellular0/0/0
     ip address negotiated
     ip nat outside
     ip virtual-reassembly in
     encapsulation slip
     dialer persitent
     dialer pool-member 1
     async mode interactive
    interface Dialer1
     ip address negotiated
     ip nat outside
     ip virtual-reassembly in
     encapsulation slip
     dialer pool 1
     dialer idle-timeout 0
     dialer string hspa-R7
     dialer persistent
     dialer-group 99
    ip nat inside source list 1 interface GigabitEthernet0/1 overload
    ip nat inside source list 89 interface Cellular0/0/0 overload
    ip nat inside source list 90 interface Dialer1 overload
    access-list 1 permit any
    access-list 89 permit any
    access-list 90 permit any
    ip route 0.0.0.0 0.0.0.0 Dialer1
    ip route 0.0.0.0 0.0.0.0 192.168.6.1
    access-list 1 permit any
    access-list 89 permit any
    access-list 90 permit any
    line 0/0/0
     exec-timeout 0 0
     script dialer hspa-R7
     modem InOut
     no exec
     transport input all
    Dialer1 is up, line protocol is up (spoofing)
      Hardware is Unknown
      Internet address is 191.27.49.172/32
      MTU 1500 bytes, BW 56 Kbit/sec, DLY 20000 usec,
         reliability 255/255, txload 1/255, rxload 1/255
      Encapsulation SLIP, loopback not set
      Keepalive set (10 sec)
      DTR is pulsed for 1 seconds on reset
      Interface is bound to Ce0/0/0
      Last input never, output never, output hang never
      Last clearing of "show interface" counters 00:15:57
      Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
      Queueing strategy: fifo
      Output queue: 0/40 (size/max)
      5 minute input rate 0 bits/sec, 0 packets/sec
      5 minute output rate 0 bits/sec, 0 packets/sec
         0 packets input, 0 bytes
         508 packets output, 41923 bytes
    Bound to:
    Cellular0/0/0 is up, line protocol is up
      Hardware is QuadBand HSPA+R7/HSPA/UMTS QuadBand EDGE/GPRS and GPS for AT&T
      Description: PrimaryWANDesc_
      Internet address will be assigned dynamically by the network
      MTU 1500 bytes, BW 5760 Kbit/sec, DLY 20000 usec,
         reliability 255/255, txload 1/255, rxload 1/255
      Encapsulation SLIP, loopback not set
      Keepalive not supported
      Interface is bound to Di1 (Encapsulation SLIP)
      Last input never, output never, output hang never
      Last clearing of "show interface" counters never
      Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
      Queueing strategy: fifo
      Output queue: 0/10 (size/max)
      5 minute input rate 0 bits/sec, 0 packets/sec
      5 minute output rate 0 bits/sec, 0 packets/sec
         0 packets input, 0 bytes, 0 no buffer
         Received 0 broadcasts (0 IP multicasts)
         0 runts, 0 giants, 0 throttles
         0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
         508 packets output, 41923 bytes, 0 underruns
         0 output errors, 0 collisions, 0 interface resets
         0 unknown protocol drops
         0 output buffer failures, 0 output buffers swapped out
         0 carrier transitions
         DCD=up  DSR=up  DTR=up  RTS=up  CTS=up
    Profile Information
    ====================
    Profile password Encryption level: 7
    Profile 1 = ACTIVE* **
    PDP Type = IPv4
    PDP address = 191.27.49.172
    Access Point Name (APN) = zap.vivo.com.br
    Authentication = PAP
    Username: vivo
    Password: 0870191E5D495746335B2E
        Primary DNS address = 187.100.246.254
        Secondary DNS address = 187.100.246.251
    Profile 2 = INACTIVE
    PDP Type = IPv4
    Access Point Name (APN) = wap.cingular
    Authentication = None
    Username:
    Password: 03
      * - Default profile
    Data Connection Information
    ===========================
    Data Transmitted = 41923 bytes, Received = 0 bytes
    Profile 1, Packet Session Status = ACTIVE
        IP address = 191.27.49.172
        Primary DNS address = 187.100.246.254
        Secondary DNS address = 187.100.246.251
        Negotiated QOS Parameters:
        Precedence = Normal Priority, Delay = Class 2
        Reliability = Unack GTP, LLC, Ack RLC, Protected data
        Peak = 256 kB/sec, Mean = 50000 kB/hr
        Traffic Class = Interactive
        Uplink Max = 11.5Mbps, Guaranteed = Subscribed
        Downlink Max = 42Mbps, Guaranteed = Subscribed
        Max SDU size = 1500 bytes
        SDU error ratio = 1E-4, BER = 1E-5
    Profile 2, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 3, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 4, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 5, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 6, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 7, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 8, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 9, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 10, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 11, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 12, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 13, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 14, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 15, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Profile 16, Packet Session Status = INACTIVE
        Inactivity Reason = Normal inactivate state
    Network Information
    ===================
    Current Service Status = Normal, Service Error = None
    Current Service = Combined
    Packet Service = HSPA+ (Attached)
    Packet Session Status = Active
    Current Roaming Status = Home
    Network Selection Mode = Automatic
    Country = BRA, Network = VIVO
    Mobile Country Code (MCC) = 724
    Mobile Network Code (MNC) = 23
    Location Area Code (LAC) = 27135
    Routing Area Code (RAC) = 4
    Cell ID = 57743
    Primary Scrambling Code = 115
    PLMN Selection = Automatic
    Registered PLMN =  , Abbreviated =
    Service Provider = VIVO
    Radio Information
    =================
    Radio power mode = ON
    Current Band = WCDMA 850, Channel Number = 4385
    Current RSSI = -60 dBm
    Band Selected = Auto
    Number of nearby cells = 1
    Cell 1
        Primary Scrambling Code = 0x73
        RSCP = -63 dBm, ECIO = -7 dBm
    Modem Security Information
    ==========================
    Card Holder Verification (CHV1) = Disabled
    SIM Status = OK
    SIM User Operation Required = None
    Number of CHV1 Retries remaining = 3
    Incoming Message Information
    SMS stored in modem = 1
    SMS archived since booting up = 0
    Total SMS deleted since booting up = 0
    Storage records allocated = 30
    Storage records used = 1
    Number of callbacks triggered by SMS = 0
    Number of successful archive since booting up = 0
    Number of failed archive since booting up = 0

    Refer this URL for how to configure the modem through serial port
    http://docs.sun.com:80/ab2/coll.47.11/SYSADV2/@Ab2PageView/17395?DwebQuery=modem+configuration&Ab2Lang=C&Ab2Enc=iso-8859-1
    Thanks,
    Senthilkumar
    Developer Technical Support
    Sun Microsystems, Inc.
    http://www.sun.com/developers/support

Maybe you are looking for