[Cisco ISE 1.2 with 3850 - Trunk AP] Problem with MAB

Hi everyone,
After reading some documentation about using MAB in a trunk port with the 3850 I would like to know if someone has implemented ISE policies with a 3850 interface in trunk mode. My problem is that when I try using MAB in a trunk port the mac address of the AP it´s no visible in the "show mac address interface" and because of that the AP is not authenticated in ISE. The thing is that if I use a 2960 everything goes smoothly with no problems!
Let me show you what I have,
interface GigabitEthernet1/0/3
 description AP
 switchport trunk native vlan 999
 switchport mode trunk
 trust device cisco-phone
 authentication event fail action next-method
 authentication host-mode multi-host
 authentication order mab dot1x
 authentication priority dot1x mab
 authentication port-control auto
 mab
 snmp trap mac-notification change added
 snmp trap mac-notification change removed
 dot1x pae authenticator
 dot1x max-req 4
 auto qos voip cisco-phone
 service-policy input AutoQos-4.0-CiscoPhone-Input-Policy
 service-policy output AutoQos-4.0-Output-Policy
############################################# switch model - 3850 ##################################################
SW1#sh mac address-table interface GigabitEthernet1/0/3
          Mac Address Table
Vlan    Mac Address       Type        Ports
SW1#sh dot1x interface Gi1/0/3
Dot1x Info for GigabitEthernet1/0/3
PAE                       = AUTHENTICATOR
QuietPeriod               = 60
ServerTimeout             = 0
SuppTimeout               = 30
ReAuthMax                 = 2
MaxReq                    = 4
TxPeriod                  = 30
Switch Ports Model              SW Version        SW Image              Mode
*    1 56    WS-C3850-48P       03.03.03SE        cat3k_caa-universalk9 INSTALL
############################################# Different switch model - 2960 ##################################################
interface GigabitEthernet1/0/1
 description AP
 switchport trunk native vlan 999
 switchport mode trunk
 srr-queue bandwidth share 1 30 35 5
 priority-queue out
 authentication event fail action next-method
 authentication host-mode multi-host
 authentication order mab dot1x
 authentication priority dot1x mab
 authentication port-control auto
 mab
 snmp trap mac-notification change added
 snmp trap mac-notification change removed
 mls qos trust device cisco-phone
 mls qos trust cos
 dot1x pae authenticator
 dot1x max-req 4
 auto qos voip cisco-phone
 service-policy input AUTOQOS-SRND4-CISCOPHONE-POLICY
 SW1#$cation sessions interface GigabitEthernet1/0/1
            Interface:  GigabitEthernet1/0/1
          MAC Address:  xxxx.xxxx.4a38
           IP Address:  172.18.1.170
            User-Name:  xx-xx-xx-xx-4A-38
               Status:  Authz Success
               Domain:  DATA
       Oper host mode:  multi-host
     Oper control dir:  both
        Authorized By:  Authentication Server
          Vlan Policy:  N/A
      Session timeout:  N/A
         Idle timeout:  N/A
    Common Session ID:  0A18129D000060E39DAE8A8A
      Acct Session ID:  0x0000725D
               Handle:  0x0F00028C
Runnable methods list:
       Method   State
       mab      Authc Success
       Switch Ports Model              SW Version            SW Image                                                                                             
     1 28    WS-C2960X-24PS-L   15.0(2)EX5            C2960X-UNIVERSALK9-M      
 SW2#sh dot1x interface Gi1/0/1
Dot1x Info for GigabitEthernet1/0/1
PAE                       = AUTHENTICATOR
QuietPeriod               = 60
ServerTimeout             = 0
SuppTimeout               = 30
ReAuthMax                 = 2
MaxReq                    = 4
TxPeriod                  = 30
Am I doing something wrong?
BR,

I know what you mean and I agree with what you are saying :) Nonetheless, at the moment, the official stance from Cisco on this is that 802.1x is not supported on trunk ports. Now one can argue that MAB is different but I think we are just splitting hairs here :) 
Like I said, I have gotten stuff to work before but always had some goofy things happening so in general I have stayed away from doing it. 
Now in your situation, if your configuration is working fine on the 2960 but not on the 3850, then most likely the issue is with the XE code running on the 3850s. The XE code has been very problematic until recently so you are probably hitting some sort of a defect. As a result, I recommend that you upgrade the switch(es) to 3.3.5 or 3.6.1. Version 3.7.x is also out but it just came out 8 days ago so I would not recommend going to it. 
Thank you for rating helpful posts!

Similar Messages

  • Help with add file name problem with Photoshop CS4

    Frustrating problem: Help with add file name problem with Photoshop CS4. What happens is this. When I am in PS CS4 or CS3 and run the following script it runs fine. When I am in Bridge and go to tools/photoshop/batch and run the same script it runs until it wants interaction with preference.rulerunits. How do I get it to quit doing this so I can run in batch mode? Any help is appreciated. HLower
    Script follows:
    // this script is another variation of the script addTimeStamp.js that is installed with PS7
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.INCHES;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "Lower© ";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = " ";
    // Set font size in Points
    myTextRef.size = 10;
    //Set font - use GetFontName.jsx to get exact name
    myTextRef.font = "Arial";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 0;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 10, 99);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    you might want to try the scripting forum howard:
    http://www.adobeforums.com/webx?13@@.ef7f2cb

  • TS1538 Hello, I have an iphone 4 and it has recently come up with a connect to itunes logo, when i connect it to my computer itunes comes up with there is a problem with your iphone. What should i do?

    Hello, I have an iphone 4 and it has recently come up with the connect to itunes logo. When I connect it to my computer, itunes comes up with there is a problem with your iphone. What should i do? I need help ASAP

    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    Take your time... Pay particular attention to Steps 3 and 4.
    Some users have reported as many as 8 or 9 attempts were necessary before success.
    If the issue persists...
    Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • Since upgrading my Macbook pro with Yosemite, I have problem with my Xerox Work Centre 3045 - the printer works normally but it does not recognise the scanner, can you help with this?

    Since upgrading my Mac book pro with Yosemite, I have problems with my Xerox Work Centre 3045 printer. The printer works normally but it does not recognise scanner, I can not scan anything. Can you help?

    Open Disk Utility and select your hard drive, then Repair Permissions, it will probably return a very large number of errors, primarily printer and library errors, so run it a second time.  Then restart the MacBook Pro.  If it still will not scan, try using Image Capture from Finder > Applications and see if that will work.  If not, contact Xerox about updated drivers.

  • Exchange 2010 : Doubt with recipient type and problem with disappearance of the original recipient in the mail relay

    Hello. First of all, thank you very much for your attention.
    After that, I will expose the problem:
    I have a user domain called "comercial" with a corresponding mailbox "[email protected]"
    . This user
    has assigned multiple emails such as "[email protected]", "[email protected]", "[email protected]" , having as default   email "[email protected] ".
    On
    the other hand,
    another domain user
    called
    "menganito" with it's mailbox  "[email protected]" account, also has a few mail accounts "[email protected]", "[email protected]", " [email protected]"
    ...having
    as default   email "[email protected]
    The user "Comercial" is forwarding
    all of it's mails to the user "menganito".
    The problem is that "menganito" is not receiving the exact
    "comercial"
    sender email, but the email which appears by default ("[email protected]").
    "Menganito" would like to know
    from which email exactly the mails he is receiving have been sent ("[email protected]",
    or "[email protected]"
    or "[email protected]"). 
    Also, he would like to knowthe email of the original sender (from the outside of the domain) whom the user "Comercial"
    have received the email from.
    In another type of email servers (Kerio,...)
    this is not a problem, because forwarding by
    defaultis always showing
    the original sender and original receiver.
    Maybe the problem comes from the recipient type I'm using.
    Should I use another type of recipient? should I use a transport rule?
    Any idea ? Thanks again in advance.

    Hi Simon. First of all thanks for your answer.
    This happens with all accounts. I tried with news accounts and different browsers for OWA and Outlook anywhere and happens the same. Is not a cache problem
    The problem is
    when "[email protected]"(default
    and set as default answer
    account by
    exchange)
    receives
    a message in  "[email protected]" when
    forwards to "Menganito"
    this message will appear from"[email protected]"
    instead of "[email protected]".
    This happens with all accounts.
    I can understand that i can't avoid
    default reply address on the same
    domain, but also with different domains happens
    the same?
    The platform is only one clean and updated server 2012 as dc and another clean and updated server 2012 with exchange 2010 sp3 directly and after rollup 4 for exchange SP3, no previous versions and servicepacks of exchange 2010 was installed before. Before
    install exchange 2010 sp3, i installed all the filterpacks (3) and .net 3.5 and all updates that i finded for 2012 server (i tried for 2 days): No more updates for sure.  After, in powershell, i put this:
    Add-WindowsFeature NET-Framework-Core,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,Web-Mgmt-Tools,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,Web-Asp-Net,Web-Client-Auth,Web-Dir-Browsing,Web-Http-Errors,Web-Http-Logging,Web-Http-Redirect,Web-Http-Tracing,Web-ISAPI-Filter,Web-Request-Monitor,Web-Static-Content,Web-WMI,RPC-Over-HTTP-Proxy
    -Restart
    The machine and exchange works good (i3 with 4gb ram, and raid 1 1tb of HD) and the organization only has 15 mailboxes. No problems with even viewer and all is correct.
    Thanks again.

  • No problem with sdk 1.3- problem with 1.4!!!

    I am trying to make an interface using swing objects..
    The buttons are looking like images (2D) when compiling and running the program with sdk 1.4...
    although if I use 1.3 everything is ok??
    even with the new java version I still have the same problem..
    has anyone any idea how to fix this??
    thx in advance!

    /*                      BET                                 */
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
      * Summary description for BET
    public class BET extends JFrame
         // Variables declaration
         private JLabel jLabel1;
         private JLabel jLabel2;
         private JLabel jLabel3;
         private JTextField jTextField1;
         private JTextField jTextField2;
         private JTextField jTextField3;
         private JTextField jTextField4;
         private JTextField jTextField6;
         private JButton jButton1;
         private JButton jButton2;
         private JPanel contentPane;
         // End of variables declaration
         public BET()
              super();
              initializeComponent();
              // TODO: Add any constructor code after initializeComponent call
              this.setVisible(true);
          * This method is called from within the constructor to initialize the form.
          * WARNING: Do NOT modify this code. The content of this method is always regenerated
          * by the Windows Form Designer. Otherwise, retrieving design might not work properly.
          * Tip: If you must revise this method, please backup this GUI file for JFrameBuilder
          * to retrieve your design properly in future, before revising this method.
         private void initializeComponent()
              jLabel1 = new JLabel();
              jLabel2 = new JLabel();
              jLabel3 = new JLabel();
              jTextField1 = new JTextField();
              jTextField2 = new JTextField();
              jTextField3 = new JTextField();
              jTextField4 = new JTextField();
              jTextField6 = new JTextField();
              jButton1 = new JButton();
              jButton2 = new JButton();
              contentPane = (JPanel)this.getContentPane();
              // jLabel1
              jLabel1.setForeground(new Color(59, 241, 227));
              jLabel1.setText("<HTML><B><U>QUESTION</B><HTML>");
              // jLabel2
              jLabel2.setForeground(new Color(50, 245, 113));
              jLabel2.setText("<HTML><B><U>CHOICE</B><HTML>");
              // jLabel3
              jLabel3.setForeground(new Color(50, 245, 113));
              jLabel3.setText("<HTML><B><U>POINTS</B><HTML>");
              // jTextField1
              jTextField1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField1_actionPerformed(e);
              // jTextField2
              jTextField2.setText("YES");
              jTextField2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField2_actionPerformed(e);
              // jTextField3
              jTextField3.setText("10");
              jTextField3.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField3_actionPerformed(e);
              // jTextField4
              jTextField4.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField4_actionPerformed(e);
              // jTextField6
              jTextField6.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField6_actionPerformed(e);
              // jButton1
              jButton1.setBackground(new Color(117, 158, 145));
              jButton1.setText("OK");
              jButton1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jButton1_actionPerformed(e);
              // jButton2
              jButton2.setBackground(new Color(117, 158, 145));
              jButton2.setText("CANCEL");
              jButton2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jButton2_actionPerformed(e);
              // contentPane
              contentPane.setLayout(null);
              contentPane.setBackground(new Color(67, 97, 83));
              addComponent(contentPane, jLabel1, 172,8,60,18);
              addComponent(contentPane, jLabel2, 73,78,60,18);
              addComponent(contentPane, jLabel3, 211,76,60,18);
              addComponent(contentPane, jTextField1, 9,27,403,28);
              addComponent(contentPane, jTextField2, 24,101,134,22);
              addComponent(contentPane, jTextField3, 203,101,51,22);
              addComponent(contentPane, jTextField4, 21,151,137,22);
              addComponent(contentPane, jTextField6, 18,200,140,22);
              addComponent(contentPane, jButton1, 299,188,80,70);
              addComponent(contentPane, jButton2, 299,90,80,70);
              // BET
              this.setTitle("BET");
              this.setLocation(new Point(-2, 1));
              this.setSize(new Dimension(424, 316));
         /** Add Component Without a Layout Manager (Absolute Positioning) */
         private void addComponent(Container container,Component c,int x,int y,int width,int height)
              c.setBounds(x,y,width,height);
              container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTextField1_actionPerformed(ActionEvent e)
              System.out.println("\njTextField1_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField2_actionPerformed(ActionEvent e)
              System.out.println("\njTextField2_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField3_actionPerformed(ActionEvent e)
              System.out.println("\njTextField3_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField4_actionPerformed(ActionEvent e)
              System.out.println("\njTextField4_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField6_actionPerformed(ActionEvent e)
              System.out.println("\njTextField6_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jButton1_actionPerformed(ActionEvent e)
              System.out.println("\njButton1_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jButton2_actionPerformed(ActionEvent e)
              System.out.println("\njButton2_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
    //============================= Testing ================================//
    //=                                                                    =//
    //= The following main method is just for testing this class you built.=//
    //= After testing,you may simply delete it.                            =//
    //======================================================================//
         public static void main(String[] args)
              JFrame.setDefaultLookAndFeelDecorated(true);
              JDialog.setDefaultLookAndFeelDecorated(true);
              try
                   UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
              catch (Exception ex)
                   System.out.println("Failed loading L&F: ");
                   System.out.println(ex);
              new BET();
    //= End of Testing =
    This is my code.. the problem is that when i use sdk 1.3 everything is fine... I tried to use 1.4 and now 5 and I have a problem with the appearance of buttons... I have some comments in my code. is just a form with some textfields and labels and the 2 buttons!
    thx in advance

  • Success with iTunes but a problem with a temp file

    Further to my recent post, I have now had some form of success with opening iTunes but I can only do this if my external hard drive (which has the remnants of some file left).
    I have tried to copy and paste the files relating to iTunes but for some reason, I am unable to even access a file labelled "TEMP FILE".
    Can anybody help or indeed send via email a copy of the file as I dont think there is anything in it. I know that when I have my external drive repaired I will not be able to access iTunes.
    PLEASE HELP !!!!!!!

    iTunes cannot run because it has discovered a problem with your audio configuration.
    That one is most commonly caused by a problem with your QuickTime. (iTunes uses QuickTime for audio and video playback.)
    The following document may be of some assistance:
    iTunes 7 for Windows: iTunes has detected an audio configuration problem

  • Using Tiger 10.4.7 with AD 2003 and problems with rq'd Password Change

    I have been able to successfully change my password 4-5 times before in my scenario using Tiger v-.2->.6 and have never had a problems.
    Now I just changed my old expired password, as req'd from the AD policy, to my new Password on my XP box and have a Mobile account on my Powerbook that won't let me in now using my new Password. It says I am unable to use this <name> account at this time. Is there a propogation time to pass?
    Local Admin account on PB can sign in fine- My alternate Systems Admin account <mobile> can sign in as well fine. Other local accounts work well as well.
    As a mobile account I cannot change my password without being connected to the AD network at this point (no access through local System Prefs). Has anyone ever experienced this? Or is everyone still shying away from Mobile accounts usage and Homesync (Works great on my machine - problems with other accounts/computers)- I'm sort of a Mac/AD Daredevil here in XP-land, since we only really support Macs because our CEO won't (refuses to) use XP and I am a Jedi Knight inside the Dark Star (Just learning XP/AD to get steady work).
    Anyone out there have anything to add/suggest? THX

    The admonition not to use the Tiger install disk utility only applies to repairing permissions. You can use Disk Utility from the install disk for verifying and repairing your hard drives. However, with Tiger, you can now verify your boot drive with Disk Utility from your boot drive itself (this only works if you have disk journaling turned on and it's on by default). If the drive would need any repairs then you would have to boot from the installation disk to repair it.
    Disk Warrior is probably the best hard drive maintenance utility in the entire Macintosh universe and it works fine with Tiger. Just make sure you have the latest version which is 3.0.3 I believe.
    In my opinion the iLife suite of programs is absolutely essential for the complete Macintosh/OS X experience. There's nothing like it on any other platform, period. It's a true work of excellence.
    You will enjoy the stability and compatibility of Tiger especially when on the Internet. The latest version of Safari is the best yet.
    Dual 2.5GHz G5 Power Macintosh   Mac OS X (10.4.7)   1.5GB RAM 20" Apple Cinema Display

  • Slow wireless speed with new iMac Intel- problem with 802.11g?

    There IS a problem with the new Intel Mac, I have tried both the Intel iMac and the new Intel Mac mini and they both have the same problem with slow wireless speed (or rather it variates, if I do a ping to another computer on the network the speed goes from < 1 ms up to 1000 ms and then down to < 1 ms and so on). The older mac minis, my Linux boxes and my Windows PCs don´t have that problem. I have also read reports on the net and it appears that most users experiencing this problem have wireless card firmware version 101.3 (3.120.28.3) . A possible "fix" is to change to 802.11b on the router and then it works. No speed fluctuations and a stabile network! I know it is a bad solution, I would prefer to use 802.11g and get the speed. However I think this points to a problem with the drivers regarding 802.11g. I am starting up a new thread on this and those of you with problems, please try to switch to 802.11b and if it works let us make Apple aware of this.
    /Tobbe

    Which home hub do you have?
    There is some general help at this link    Wireless connection problems
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Problems with sonic extender application, Problems with sonic extender application, Problems with sonic extender application

    I installed Sonic Extender and at first had no problem with it.  Then I connected with a different internet connection and now it will not connect.  What is the easiest way to get technical support help.  I called and also submitted a request for someone to call me.  I had no luck or help with either.

    Hi Alex,
    I tried the process you described on my machine using LabVIEW 7.1 and could not reproduce the behavior.  If you can clarify the version you were using that will be helpful. I will have to clean a test machine and try it again without LabVIEW installed, and get back with you if the problem appears.  In the meanwhile, I found the following KB which, while not referring to the exact same problem you are describing, does address the evaluation message issue.  You can try to follow the steps at the end of the KB, and let me know if that worked.
    http://digital.ni.com/public.nsf/websearch/1E1FB3C19E8E0A9986256F8D0077D0E6?OpenDocument
    Regards,
    Aluma G.
    National Instruments

  • BCM43228 with broadcom_wl throwing warnings & problems with connection

    Hey there,
    I'm using a Thinkpad X131e with a BCM43228 wlan chip with broadcom-wl driver from AUR.
    Cut from `lspci -vvDnn`:
    0000:02:00.0 Network controller [0280]: Broadcom Corporation BCM43228 802.11a/b/g/n [14e4:4359]
    Subsystem: Broadcom Corporation Device [14e4:0607]
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 32 bytes
    Interrupt: pin A routed to IRQ 17
    Region 0: Memory at f0a00000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: [40] Power Management version 3
    Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=2 PME-
    Capabilities: [58] Vendor Specific Information: Len=78 <?>
    Capabilities: [48] MSI: Enable- Count=1/1 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    Capabilities: [d0] Express (v1) Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
    ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 128 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L1, Latency L0 <4us, L1 <64us
    ClockPM+ Surprise- LLActRep+ BwNot-
    LnkCtl: ASPM L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
    Capabilities: [100 v1] Advanced Error Reporting
    UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
    UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
    UESvrt: DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
    CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
    CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
    AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
    Capabilities: [13c v1] Virtual Channel
    Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
    Arb: Fixed- WRR32- WRR64- WRR128-
    Ctrl: ArbSelect=Fixed
    Status: InProgress-
    VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
    Status: NegoPending- InProgress-
    Capabilities: [160 v1] Device Serial Number 00-00-e6-ff-ff-fa-e0-06
    Capabilities: [16c v1] Power Budgeting <?>
    Kernel driver in use: wl
    Kernel modules: bcma, wl
    I often see in my `journalctl -xfn` these lines and my wpa_supplicant using nl80211 has problems with my connection. first it works for a while, then it suddenly dies and doesn't want to reconnect. After some time it works again until it suddenly dies the next time.
    Jun 01 01:55:53 gibson.local kernel: ------------[ cut here ]------------
    Jun 01 01:55:53 gibson.local kernel: WARNING: at net/wireless/sme.c:642 cfg80211_roamed+0x8c/0x90 [cfg80211]()
    Jun 01 01:55:53 gibson.local kernel: Hardware name: 3372CTO
    Jun 01 01:55:53 gibson.local kernel: Modules linked in: ppp_deflate zlib_deflate bsd_comp ppp_async crc_ccitt ppp_generic slhc sr_mod cdrom option usb_wwan u
    Jun 01 01:55:53 gibson.local kernel: snd rfkill ac button soundcore r8169 video mii battery processor ext4 crc16 mbcache jbd2 sd_mod usb_storage rtsx_pci_sdmmc mmc_core ahci lib...mmon rtsx_pci
    Jun 01 01:55:53 gibson.local kernel: Pid: 147, comm: wl_event_handle Tainted: P O 3.9.4-1-ARCH #1
    Jun 01 01:55:53 gibson.local kernel: Call Trace:
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff810580b0>] warn_slowpath_common+0x70/0xa0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8105819a>] warn_slowpath_null+0x1a/0x20
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa03b68dc>] cfg80211_roamed+0x8c/0x90 [cfg80211]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa0611a35>] wl_bss_connect_done.isra.21+0x105/0x1b0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa0611dbf>] wl_notify_connect_status+0x2df/0x3c0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa060e4e5>] wl_event_handler+0x55/0x1f0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa060e490>] ? wl_deinit_priv_mem+0xa0/0xa0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b600>] kthread+0xc0/0xd0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b540>] ? kthread_create_on_node+0x120/0x120
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff814d9dec>] ret_from_fork+0x7c/0xb0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b540>] ? kthread_create_on_node+0x120/0x120
    Jun 01 01:55:53 gibson.local kernel: ---[ end trace 92d276a463b89308 ]---
    Jun 01 01:55:53 gibson.local kernel: ------------[ cut here ]------------
    Jun 01 01:55:53 gibson.local kernel: WARNING: at net/wireless/sme.c:642 cfg80211_roamed+0x8c/0x90 [cfg80211]()
    Jun 01 01:55:53 gibson.local kernel: Hardware name: 3372CTO
    Jun 01 01:55:53 gibson.local kernel: Modules linked in: ppp_deflate zlib_deflate bsd_comp ppp_async crc_ccitt ppp_generic slhc sr_mod cdrom option usb_wwan u
    Jun 01 01:55:53 gibson.local kernel: snd rfkill ac button soundcore r8169 video mii battery processor ext4 crc16 mbcache jbd2 sd_mod usb_storage rtsx_pci_sdmmc mmc_core ahci lib...mmon rtsx_pci
    Jun 01 01:55:53 gibson.local kernel: Pid: 147, comm: wl_event_handle Tainted: P W O 3.9.4-1-ARCH #1
    Jun 01 01:55:53 gibson.local kernel: Call Trace:
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff810580b0>] warn_slowpath_common+0x70/0xa0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8105819a>] warn_slowpath_null+0x1a/0x20
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa03b68dc>] cfg80211_roamed+0x8c/0x90 [cfg80211]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa06118ac>] wl_notify_roaming_status+0xac/0x130 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa060e4e5>] wl_event_handler+0x55/0x1f0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffffa060e490>] ? wl_deinit_priv_mem+0xa0/0xa0 [wl]
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b600>] kthread+0xc0/0xd0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b540>] ? kthread_create_on_node+0x120/0x120
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff814d9dec>] ret_from_fork+0x7c/0xb0
    Jun 01 01:55:53 gibson.local kernel: [<ffffffff8107b540>] ? kthread_create_on_node+0x120/0x120
    Jun 01 01:55:53 gibson.local kernel: ---[ end trace 92d276a463b89309 ]---

    Well, sorry I can't be of more help than this.  I think the only reasonable thing to try would be to see if it happens in another distirbution with a similar kernel version.  At least then you could try to narrow it down to whether it is specific to your setup, or something that is actually wrong with the hardware.
    I think the ultimate test would be to see if it happens in windows.  Then if it still does it, you can call Lenovo with certainty that it is an issue with the hardware and that you need another.  Fortunately, I am pretty sure it is considered a CRU (Custoner Replaceable Unit), so they would likely just send you a new one, rather than require you send your entire system to them.

  • Intel iMac with Speedstream 5100 modem - problem with connection

    I am running my internet/email using a Speedstream 5100 modem. My service is with SBC Yahoo (dsl line). My modem with stay up for a while and then at some point during the day decide not to work any more. I must turn it off and turn it back on (sometimes 3 or 4 times) to get it to work.
    Is anyone else using this modem? Any problems with it? Should I call SBC and ask (or demand) a new modem???
    Thanks!

    rick,
    Still having problems with my imac g4.
    I called tech support today and I told them about all the problems that I was having. He had me put the current operating system disk that I was currently running on my computer and he had me run the utility file and nothing found.
    Then he had me run the operating system disk that came with the computer but my computer froze up and I could not run it. He told me to take it in for service and that it was a hardware problem. After I hung up with the tech the computer started up and I ran the operating system disk and it said no problems with the hardware.
    While the computer was still running,I got on the internet to go to the site that you listed above because I wanted to print a copy of the site to take with me tomorrow.
    My computer froze up with 18 repeated lines of errors.
    I will be taking it in for services tomorrow.
    Will let you know what I find out.
    san-da
    imac g4   Mac OS X (10.4.7)   i also have an i book mac os x 10.4.7
    imac g4   Mac OS X (10.4.7)   i also have an i book mac os x 10.4.7

  • My iphone won't sync with outlook. Same problem with calendar entries

    contacts added to my iphone 4 won't sync with outlook 2003 running on windows 7. Same problem with calendar entries. 

    same here. Have you received any answers?

  • [VIA] KT880 Delta FSR with VIA Vinyl has problems with MIC

    I have problem with my MB, can't get to select MIC for input way, all that I get is Vinyl AC'97 Audio (WAVE) for playback device and also for recording device, and that is all i get for recording device. I lost that option since I instaled SATA HDD. Previously I had old paralel ATA HDD. Please HELP!

    Misteriously, the problem is solved. I don't known how happen but is gone.
    But, if i unplug the power cord from the pc or from the UPS the problem persist. I think that is a incompatibility issue with voltages or with video card, anyway is "mid" solved.
    There aren't so many computer shop but i post these links in spanish:
    http://www.computadoraspormenos.com
    http://www.computadorasenlared.com
    http://www.mpmcomputer.com
    http://www.eliptek.com.do
    http://www.samanel.com
    Individual Sale Market
    http://www.emarket.com.do/index.php?seccion=mercado&funcion=ver&categoria=3&PHPSESSID=5388a4b0ddf2f9f76193cee453c8b863
    Thanks a lot for you appreciated help!!!

  • Officejet Pro 8600 Plus: Scan to computer doesn't work with Win8.1 [solved: problem with USB3 Boost]

    Since I installed 8.1 (pro), I can't use my 8600 Pro software for scanning to the computer (via USB). It looks like there is no communication with the printer as for the scanning software, but printing works as usual.
    Tried to use the HP Printer Assistant: when I click the "Scan a Document or Photo" button, I get a "Scanner Unreachable" message. Also after a restart of the printer.
    When I try to scan from Photoshop, the system first finds the printer but then fails to connect to it.
    HP Update says that my system is up to date.
    HP Print And Scan Doctor 4.2 finds and shows the printer on the Welcome panel and seems to be able to communicate with it, to a point.
    It gives me a "Driver error" (sorry if is not called so in English--it takes over my keyboard language, which is French and says "Erreur du pilote") and states that no communication could be established between the scan driver and the printer, and that I should reboot the computer...
    So I did and reran the Doctor software, which gave me the very same error message. This time, I clicked "Ignore" and let it do its things. It ran a "Scan Test" twice and indicated that everything was fine or had been repaired. But strangely nothing happened on the printer during those "tests". And at the end, as it offered me to make a scan test myself, I clicked OK and I had the "Scanner Unreachable" error message again.
    So I made my scans on an USB key, as I had to do a few times already, and that went very well. But I'd be glad to have that "Scan to computer" function back. How?
    This question was solved.
    View Solution.

    Hi ajmch,
    I am sorry to hear that you are still having a scan issue. What antivirus program are you running on the computer? Can you try to scan through Paint and Windows Fax and Scan on the computer? When you run the HP Print and Scan Doctor what error message are you getting?
    In this document for Windows: HP Scan Software Does Not Open or Scan on a Printer Using a USB Connection are steps  for checking the WIA and for checking software.
    You can also Use the System File Checker tool to repair missing or corrupted system files that may resolve this issue.
    Let me know if this helped.
    Thank you,
    I worked on behalf of HP.

Maybe you are looking for

  • PCMCIA Wifi card for PowerBook G4

    Hi, I have bay a Belkin Wifi 802.11G PCMCIA Card on the apple shop and I couldn't set up it on my PowerBook G4. Could someone help me with this? Thank you very much... PowerBook G4   Mac OS X (10.3.9)   PCMCIA Wifi

  • Indexing on associated objects

    Greetings, I've been doing some performance testing of a cache based query vs vanilla sql queries. In order to accurately compare a cache query to an indexed sql query, I've been attempting to create an index... For example, a Vehicle with an associa

  • Java messgae mapping help pls

    hi forum, in message mapping, when i see the XML of the target or source structure i can see the prefix of the qualifiedNameas as ns1 or ns0, eg., <ns0:MT_sdptest_JMapTest2> what does that signify.... coz when i made a java mapping programm and tried

  • No sound with facetime

    was using facetime and suddenly there was no sound. i have checked volume - what else can i do? help! the person on the other end can hear me but i cannot hear them.

  • Image edit return link

    HI, Not a biggy but annoying. When I resize an image, set the width, click ok, I am then sent to the root directory in the file structure and then have to click my way back to the folder I was working in.  Paul