Issues Joining AP1231 to WLC2504

I have flashed my AP's with c1200-rcvk9w8-tar.123-11JX1.tar so they can attach to my latest WLC with 7.6.100.0
The WLC has port 1 assigned as the managent port at 192.168.0.254 and port 2 as the AP manger at 192.168.0.253 while the AP is assigned 192.168.0.128 and has the 192.168.0.254 address pointed to the controller.
The AP is using SSC and I have the SHA1 key hash associated to the MAC address in the AP Policies of the WLC, yet I cannot get this AP to associate. This was not an issue on my older WLC4400's, so I feel like I am either missing something or there is a software compatibility with the newer WLC version.
Attached is a dump of the AP terminal session before it reboots and repeats and the WLC session while this going on.

Hi Pghruby,
you are using 1231g AP and this AP last support software version is 7.0.X.
you must downgrade the WLC to 7.0.250.0 or use any other AP which support 7.6.100.0.
Here is the link of the software:
https://software.cisco.com/download/release.html?mdfid=282600534&softwareid=280926587&release=7.0.230.0&rellifecycle=ED&relind=AVAILABLE&reltype=latest
If you have a valid Contract then you can downlaod it from here otherwise you must ask to your device supplier to provide you the right version.
Regards
Don't forget to rate helpful posts

Similar Messages

  • Issues joining my home wireless network

    Issues joining home wireless network
    My router is a Thomson 585 using encryption WPA-PSK when I try to connect with my ipod is unable to join the network; however the ipod will join when I disable the encryption on the router. So I try to set up my Ipod and it shows my router so in goes the 8 digit wireless pin but it will not connect. How do I set the encryption on my Ipod so it is the same as my router?
    The only way to see encryption is on other networks but that is not the my Thomson network or is it?
    Help

    Passwords are case sensitive so be careful. Also, if you are using WEP (poor choice BTW), you cannot use a password unless you follow some pretty stringent rules. The best alternative for WEP is the hex key generated by the router.

  • MKPF & MSEG Performance issue : Join on table  MKPF & MSEG  taking too much time ..

    Hello Experts,
    I had a issue where we are executing one custom report in which  i used inner join on table  MKPF & MSEG,  some time join statement  took  9-10 min to excute and some time execute within  1-2 min with same test data .
    i am not able to understand what the actaully happing .
    please help.
    code :
       SELECT f~mblnr f~mjahr f~usnam f~bktxt  p~bukrs
        INTO TABLE itab
        FROM mkpf AS f INNER JOIN mseg AS p
            ON f~mblnr = p~mblnr AND f~mjahr = p~mjahr
         WHERE f~vgart = 'WE'
           AND f~budat IN p_budat
           AND f~usnam IN p_sgtxt
           AND p~bwart IN ('101','105')
           AND p~werks IN p_werks
           AND p~lgort IN p_lgort.
    Regards,
    Dipendra Panwar.

    Hi Dipendra,
    if you call a report twice after another with the same test data for data selection, then the second run should be faster, because some data are remaining in memory and needn't to be caught from database. This will be also for the following third und further runs, until the data in the SAP memory will be removed by other programs.
    For performance traces you should try to test with a first run.
    Regards,
    Klaus

  • EA1 - SQL Formatter issues (JOINs and GROUPs and ORDER BY oh my ;)

    Great job with improving the SQL Formatter, but it still has some bugs that need to be worked out.
    The key words JOIN and it's modifiers INNER, LEFT, RIGHT and FULL OUTER are not recognized as master key words. As such they end up flush against the left margin Also when GROUP BY and/or ORDER BY key words are present in an outer most select statement the other key words are not indented far enough to be right aligned with the end of the word BY and are indented too far to be right aligned with the word GROUP or ORDER. In sub queries, GROUP and ORDER BY are correctly right aligned with their respective SELECT statements.

    We're picking up and collating the Formatter issues. I'll add these.
    Specific bug for these #7013462
    Sue

  • ORA-00918 issue joining tables for Update

    Hi,
    I have 2 tables : PAR_SPEC_OPS and T_PAR and I'm trying to update 2 columns in the first one with values from the second table.
    Here's my script :
    Update
    Select membership_id, membership_status
    From Par_Spec_Ops P,T_Par T
    Where P.Tracking_ID=T.Tracking_ID
    Set P.membership_id = T.membership_id,
    P.membership_status = T.membership_status;
    Running this gives me ORA-00918: column ambiguously defined. I've looked this up and it says it happens when there's a common column in the 2 tables and I'm not using prefixes, but as you can see from my command, I'am using prefixes. I have tried with and without alias but I get the same error.
    Do you guys have any ideas?
    Thanks and regards,
    Ionut
    Edited by: 837311 on Nov 8, 2011 4:24 AM

    Does this help?
    SQL> create table t_par
    2 (membership_id number,
    3 membership_status varchar2(10),
    4 tracking_id number
    5 );
    Table created.
    SQL>
    SQL> create unique index t_par_ix1 on t_par(tracking_id);
    Index created.
    SQL>
    SQL> create table par_spec_ops
    2 (membership_id number,
    3 membership_status varchar2(10),
    4 tracking_id number
    5 );
    Table created.
    SQL>
    SQL> create unique index tracking_id_ix1 on par_spec_ops(tracking_id);
    Index created.
    SQL>
    SQL> insert into t_par values(111,'new',1111);
    1 row created.
    SQL> insert into t_par values(222,'new',2222);
    1 row created.
    SQL> insert into t_par values(333,'new',3333);
    1 row created.
    SQL>
    SQL> insert into par_spec_ops values(111,'expired',1111);
    1 row created.
    SQL> insert into par_spec_ops values(222,'expired',2222);
    1 row created.
    SQL>
    SQL> Select t.membership_id, t.membership_status,p.membership_id,p.membership_status
    2 From T_Par T left outer join par_spec_ops p using(tracking_id)
    3 ;
    MEMBERSHIP_ID MEMBERSHIP MEMBERSHIP_ID MEMBERSHIP
         111 new          111 expired
         222 new          222 expired
         333 new
    SQL>
    SQL> Update
    2 (
    3 Select p.membership_id as p_m_id,
    4      t.membership_id as t_m_id,
    5      t.membership_status t_m_stat,
    6      p.membership_status p_m_stat
    7 From Par_Spec_Ops P,T_Par T
    8 Where P.Tracking_ID=T.Tracking_ID
    9 )
    10 Set p_m_id = t_m_id,
    11 p_m_stat = t_m_stat;
    2 rows updated.
    SQL>
    SQL> Select t.membership_id, t.membership_status,p.membership_id,p.membership_status
    2 From T_Par T left outer join par_spec_ops p using(tracking_id)
    3 ;
    MEMBERSHIP_ID MEMBERSHIP MEMBERSHIP_ID MEMBERSHIP
         111 new          111 new
         222 new          222 new
         333 new
    SQL>

  • Ap authentication/join issue

    i am having issues joining new 1242LAP's to my controller.  i am receiving the follwing error on my controller:
    AAA Authentication Failure for UserName:5475d01144f0 User Type: WLAN USER
    username is the MAC of my new 1242LAP.  older 1242LAP's have no issue.  i have 70 of the newer ones that i have just installed and fail to join the controller with the above error message.  i'm not sure how to resolve.  any help would be appreciated.  thanks.
    Brandon

    Hi Brandon,
    Good question.  Sounds like your WLC may be authorizing LAPs via an Auth-list or AAA.  You can view these settings here:
    Web GUI --> Secuirty --> AAA --> AP Policies
    If you do not wish to authorize the APs via an auth-list or AAA, simply uncheck the following option:
    Authorize MIC APs against auth-list or AAA
    Cheers.
    Drew

  • How to join the AP to the WLC

    Hi All,
    I am new to Cisco wireless solution and would like to ask how to add the AP to the WLC properly. All Cisco 1041 and Cisco 2500 WLC are new. I connect those AP and WLC to the switch without any VLAN tag and the AP can gain the IP address from our DHCP correctly. However, the AP 1041 could not join the WLC successfully. Here is the log. I really do not have any idea about that and hope someone can help. Many thanks.
    WLC: Cisco 2500
    IP Address: 192.168.1.225
    version: 7.4.100.0
    AP: 1041
    IP Address (DHCP): 192.168.1.195
    version: 15.2(2)JB
    I also checked the following item.
    - WLC already enable Accept Manufactured Installed Certificate (MIC) in WLC -> Security -> AP Policy
    - WLC can ping AP and vice versa
    - WLC has 5 AP license
    - All configuration are default setting
    - Tried to issued join command in AP manually but no luck "lwapp ap controller ip add 192.168.1.225"
    AP 1041 Log
    *May 16 14:02:41.145: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to administratively down*May 16 14:02:41.180: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up*May 16 14:02:42.145: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down*May 16 14:02:42.172: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to down*May 16 14:02:42.176: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset*May 16 14:02:43.197: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up*May 16 14:02:44.197: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to up*May 16 14:02:51.178: %CAPWAP-3-ERRORLOG: Go join a capwap controller *May 16 14:02:52.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 192.168.1.225 peer_port: 5246*May 16 14:02:52.905: %CAPWAP-5-DTLSREQSUCC: DTLS connection created sucessfully peer_ip: 192.168.1.225 peer_port: 5246*May 16 14:02:52.906: %CAPWAP-5-SENDJOIN: sending Join Request to 192.168.1.225
    *May 16 14:02:52.908: %CAPWAP-3-ERRORLOG: Invalid event 10 & state 5 combination.*May 16 14:02:52.908: %CAPWAP-3-ERRORLOG: CAPWAP SM handler: Failed to process message type 10 state 5.*May 16 14:02:52.909: %CAPWAP-3-ERRORLOG: Failed to handle capwap control message from controller*May 16 14:02:52.909: %CAPWAP-3-ERRORLOG: Failed to process encrypted capwap packet from 192.168.1.225., 1)16 14:03:11.059: %CAPWAP-3-ERRORLOG: Retransmission count for packet exceeded max(UNKNOWN_MESSAGE_TYPE (5)*May 16 14:03:11.059: %CAPWAP-3-ERRORLOG: GOING BACK TO DISCOVER MODE*May 16 14:03:11.060: %DTLS-5-SEND_ALERT: Send FATAL : Close notify Alert to 192.168.1.225:5246*May 16 14:03:11.111: %LWAPP-3-CLIENTERRORLOG: LWAPP LED Init: incorrect led state 255*May 16 14:03:11.111: bsnInitRcbSlot: slot 1 has NO radio*May 16 14:03:11.132: %CAPWAP-3-ERRORLOG: Binding Config Initialization failed for binding 1*May 16 14:03:11.138: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to administratively down*May 16 14:03:11.174: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up*May 16 14:03:12.138: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down*May 16 14:03:12.165: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to down*May 16 14:03:12.170: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset*May 16 14:03:13.190: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up*May 16 14:03:14.190: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to up
    APbc16.65d6.7e4b#show ip int briefInterface                  IP-Address      OK? Method Status                ProtocolBVI1                       192.168.1.195   YES DHCP   up                    up      Dot11Radio0                unassigned      NO  unset  up                    up      GigabitEthernet0           unassigned      NO  unset  up                    up      GigabitEthernet0.1         unassigned      YES unset  up                    up     
    WLC 2500
    (Cisco Controller) >show sysinfoManufacturer's Name.............................. Cisco Systems Inc.Product Name..................................... Cisco ControllerProduct Version.................................. 7.4.100.0Bootloader Version............................... 1.0.16Field Recovery Image Version..................... 1.0.0Firmware Version................................. PIC 16.0Build Type....................................... DATA + WPSSystem Name...................................... S_HK_AC_CT2504_1System Location.................................. System Contact................................... System ObjectID.................................. 1.3.6.1.4.1.9.1.1279IP Address....................................... 203.85.90.225Last Reset....................................... Power on resetSystem Up Time................................... 1 days 0 hrs 29 mins 1 secsSystem Timezone Location......................... System Stats Realtime Interval................... 5System Stats Normal Interval..................... 180
    (Cisco Controller) >show ap join stats summary allNumber of APs.............................................. 3 Base Mac             AP EthernetMac       AP Name                 IP Address         Statusbc:16:65:d6:7e:40    bc:16:65:d6:7e:40    APbc16.65d6.7e4b        192.168.1.195      Not Joinedbc:16:65:d6:7e:4b    N A                  N A                     192.168.1.195      Not Joinedf4:1f:c2:d0:bb:20    bc:16:65:d6:7e:4b    APbc16.65d6.7e4b        192.168.1.195      Not Joined
    (Cisco Controller) >show interface summary Number of Interfaces.......................... 3Interface Name                   Port Vlan Id  IP Address      Type    Ap Mgr Guest-------------------------------- ---- -------- --------------- ------- ------ -----management                       1    untagged 192.168.1.225   Static  Yes    No   virtual                          N/A  N/A      1.1.1.1         Static  No     No  
    Rgds,
    Jacky

    leolaohoo wrote:Something is missing from the output to the command "sh sysinfo".  What country code did you enable? On the AP, post the output to the command "sh version" and "sh inventory".
    Hi Leolaohoo, thanks for your prompt reply. Please it below. I am using Hong Kong as the country code in WLC. Thanks.
    WLC
    (Cisco Controller) >show sysinfoManufacturer's Name.............................. Cisco Systems Inc.Product Name..................................... Cisco ControllerProduct Version.................................. 7.4.100.0Bootloader Version............................... 1.0.16Field Recovery Image Version..................... 1.0.0Firmware Version................................. PIC 16.0Build Type....................................... DATA + WPSSystem Name...................................... S_HK_AC_CT2504_1System Location.................................. System Contact................................... System ObjectID.................................. 1.3.6.1.4.1.9.1.1279IP Address....................................... 192.168.1.225Last Reset....................................... Power on resetSystem Up Time................................... 1 days 1 hrs 15 mins 49 secsSystem Timezone Location......................... System Stats Realtime Interval................... 5System Stats Normal Interval..................... 180--More-- or (q)uitConfigured Country............................... HK  - Hong KongOperating Environment............................ Commercial (0 to 40 C)Internal Temp Alarm Limits....................... 0 to 65 CInternal Temperature............................. +31 CExternal Temperature............................. +36 CFan Status....................................... 4100 rpmState of 802.11b Network......................... DisabledState of 802.11a Network......................... DisabledNumber of WLANs.................................. 2Number of Active Clients......................... 0Memory Current Usage............................. UnknownMemory Average Usage............................. UnknownCPU Current Usage................................ UnknownCPU Average Usage................................ UnknownBurned-in MAC Address............................ F0:29:29:88:98:20Maximum number of APs supported.................. 5
    AP
    APbc16.65d6.7e4b#show verCisco IOS Software, C1040 Software (C1140-K9W8-M), Version 15.2(2)JB, RELEASE SOFTWARE (fc1)Technical Support: http://www.cisco.com/techsupportCopyright (c) 1986-2012 by Cisco Systems, Inc.Compiled Tue 11-Dec-12 04:03 by prod_rel_teamROM: Bootstrap program is C1040 boot loaderBOOTLDR: C1040 Boot Loader (C1140-BOOT-M) Version 12.4(23c)JA6, RELEASE SOFTWARE (fc1)APbc16.65d6.7e4b uptime is 20 hours, 32 minutesSystem returned to ROM by reloadSystem image file is "flash:/c1140-k9w8-mx.152-2.JB/c1140-k9w8-mx.152-2.JB"Last reload reason: This product contains cryptographic features and is subject to UnitedStates and local country laws governing import, export, transfer anduse. Delivery of Cisco cryptographic products does not implythird-party authority to import, export, distribute or use encryption.Importers, exporters, distributors and users are responsible forcompliance with U.S. and local country laws. By using this product youagree to comply with applicable laws and regulations. If you are unableto comply with U.S. and local laws, return this product immediately.A summary of U.S. laws governing Cisco cryptographic products may be found at:http://www.cisco.com/wwl/export/crypto/tool/stqrg.htmlIf you require further assistance please contact us by sending email [email protected] AIR-LAP1041N-E-K9    (PowerPC405ex) processor (revision B0) with 81910K/49152K bytes of memory.Processor board ID FGL1718S4RMPowerPC405ex CPU at 333Mhz, revision number 0x147ELast reset from reloadLWAPP image version 7.4.100.01 Gigabit Ethernet interface1 802.11 Radio32K bytes of flash-simulated non-volatile configuration memory.Base ethernet MAC Address: BC:16:65:D6:7E:4BPart Number                          : 73-14034-06PCA Assembly Number                  : 800-34273-07PCA Revision Number                  : A0PCB Serial Number                    : FOC17160EPLTop Assembly Part Number             : 800-34284-05Top Assembly Serial Number           : FGL1718S4RMTop Revision Number                  : A0Product/Model Number                 : AIR-LAP1041N-E-K9   Configuration register is 0xF
    APbc16.65d6.7e4b#show inventoryNAME: "AP1040", DESCR: "Cisco Aironet 1040 Series (IEEE 802.11n) Access Point"PID: AIR-LAP1041N-E-K9 , VID: V05, SN: FGL1718S4RM
    Thanks and Best Regards,
    Jacky

  • Maximum number of joins in SELECT statement

    Dear friends,
    Can you tell me, how many max number of joins (inner & outer) we can make in ABAP.
    For eg:
    table 1: A B C fields
    table 2: C D E fields
    table 3: E F G fileds..............
    Thanks in advance for your valuable time.
    Best regards,
    Satish

    hi,
    no limit for joins[inner or outer ] in a table , when we consider performance issue joins will reduce the performance of our program so go views instead of joins.
    with cheers,
    suresh babu aluri.

  • X121e hinge warranty issue - please help!

    Dear community,
    The left hinge on my x121e suddenly came apart, due to no fault of mine (see picture). I sent it to Lenovo and they are saying it is not covered by the warranty because it is customer damage. Does anyone have any advice on how to confront them on this issue? The same problem has occured to many others - see here:
    http://forums.lenovo.com/t5/General-Discussion/X121e-left-hinge-issue-Warranty/td-p/813777
    http://forums.lenovo.com/t5/General-Discussion/warranty-issue-join-my-journey/td-p/748929
    http://forums.lenovo.com/t5/X-Series-ThinkPad-Laptops/X121e-loose-hinge-as-on-the-picture/td-p/82240...
    Thanks very much!
    Moshe

    Hello moblid,
    Please see my post regarding a fault in a Thinkpad which Lenovo claimed was not covered under warranty:
    http://forums.lenovo.com/t5/X-Series-ThinkPad-Laptops/X220-Plastic-strip-loose-no-warranty/m-p/76206...
    Bottom line: according to EU-regulations you are entitled to a product that works normally -under normal conditions-for at least two years, if you didn't do anything out of the ordinary  with your Thinkpad it should be covered.
    You should contact Lenovo and request they escalate the matter and have the EU-warranty team review the case
    Thinkpad® T430 | Intel® Core™ i7-3520M | 8GB HyperX PnP DDR3-2133MHz | Nvidia® NVS™ 5400M | 256GB Plextor® M5 Pro

  • AP not joining our vWLC

    Hello,
    We're currently using a new Virtual WLC and we have over 45 AP's connected to it without any issues.  Recently, one of our AP's started having issues joining the controller and I'm not sure why not.  On the controller it says...
    Reason for last unsuccessful attempt: Layer 3 discovery request not received on management VLAN
    On the AP itself, I get he following error messages.  (Replaced the controller IP with X.X.X.X)
    *Jun 16 20:44:43.113: %CAPWAP-5-CHANGED: CAPWAP changed state to DISCOVERY
    *Jun 16 20:44:43.113: %CAPWAP-5-CHANGED: CAPWAP changed state to DISCOVERY
    *Jun 16 20:44:43.114: bsnInitRcbSlot: slot 1 has NO radio
    *Jun 16 20:44:43.194: %PARSER-4-BADCFG: Unexpected end of configuration file.
    *Jun 16 20:44:43.239:  status of voice_diag_test from WLC is false
    *Jun 16 20:44:53.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: X.X.X.X peer_port: 5246
    *Jun 16 20:44:53.001: %CAPWAP-5-CHANGED: CAPWAP changed state to
    *Jun 16 20:44:53.023: %LWAPP-3-CLIENTERRORLOG: Peer certificate verification failed
    *Jun 16 20:44:53.023: %CAPWAP-3-ERRORLOG: Certificate verification failed!
    *Jun 16 20:44:53.024: DTLS_CLIENT_ERROR: ../capwap/capwap_wtp_dtls.c:352 Certificate verified failed!
    *Jun 16 20:44:53.024: %DTLS-4-BAD_CERT: Certificate verification failed. Peer IP: X.X.X.X
    *Jun 16 20:44:53.024: %DTLS-5-SEND_ALERT: Send FATAL : Bad certificate Alert to X.X.X.X:5246
    *Jun 16 20:44:53.024: %DTLS-3-BAD_RECORD: Erroneous record received from X.X.X.X: Malformed Certificate
    *Jun 16 20:44:53.025: %DTLS-5-SEND_ALERT: Send FATAL : Close notify Alert to X.X.X.X:5246
    *Jun 16 20:44:53.025: %CAPWAP-3-ERRORLOG: Invalid event 38 & state 3 combination.
    I tried changing the AP time to match the WLC but that didn't work although I'll admit that I'm a little confused about UTC vs EST.
    I also tried to reload but that didn't help.
    I tried modifying the WLC "AP Policies" to "Accept Self Signed Certificate (SSC)" but that didn't work either
    Any ideas?  I won't be able to easily reset the AP since I will require a SkyJack to reach it so I'm looking for alternate options.  I'm able to Telnet or SSH to the device so I can run whatever required commands.
    Thanks.

    I assume you have tried to factory reset the AP already, if not, try it. Also, try the following commands 'test capwap erase' 'test capwap restart'

  • How to join HR_API_TRANSACTIONS and wf_item_activity_statuses table?

    Hi, please help im having issues joining the following tables:
    im getting muliptiple records, cos a workflow has muliple records.
    i want to show the wfis.activity status (the status that shows in e-business suite - workflow admin)
    is there a join that im missing ??
    select *
    from HR_API_TRANSACTIONS HAT, HR_API_TRANSACTION_STEPS HATS, wf_item_activity_statuses wfis
    where hat.transaction_id = HATS.transaction_id
    and HAT.status IN ('Y','YS')
    and hat.TRANSACTION_REF_TABLE = 'PER_ABSENCE_ATTENDANCES'
    and hat.TRANSACTION_GROUP = 'ABSENCE_MGMT'
    and hat.TRANSACTION_IDENTIFIER = 'ABSENCES'
    and hat.TRANSACTION_REF_ID is not null
    and hat.item_key = wfis.item_key
    Thanks,
    .....

    This is more a question for the EBS forum than the Reports forum. Better ask it there.

  • Joining Vista machine to OS X domain

    We're having issues joining Vista client machines to our OS X Server domain.
    When trying to join, the clients get a "specified domain either does not exist or could not be contacted" message, and this shows up in the SMB logs:
    [2009/12/15 16:24:24, 0, pid=21821] /SourceCache/samba/samba-235/samba/source/lib/opendirectory.c:opendirectoryuser_auth_and_sessionkey(580)
    dsDoDirNodeAuthOnRecordType gave -14091 [eDSAuthMethodNotSupported]
    [2009/12/15 16:24:24, 0, pid=21821] /SourceCache/samba/samba-235/samba/source/auth/authodsam.c:opendirectory_smb_pwd_checkntlmv1(387)
    opendirectoryuser_auth_and_sessionkey gave -14091 [eDSAuthMethodNotSupported]
    [2009/12/15 16:24:24, 0, pid=21821] /SourceCache/samba/samba-235/samba/source/libsmb/ntlmsspsign.c:ntlmssp_checkpacket(204)
    NTLMSSP NTLM2 packet check failed due to invalid signature!
    [2009/12/15 16:24:24, 0, pid=21821] /SourceCache/samba/samba-235/samba/source/rpcserver/srv_pipe_hnd.c:process_requestpdu(580)
    processrequestpdu: failed to do auth processing.
    [2009/12/15 16:24:24, 0, pid=21821] /SourceCache/samba/samba-235/samba/source/rpcserver/srv_pipe_hnd.c:process_requestpdu(581)
    processrequestpdu: error was NTSTATUS_ACCESSDENIED.
    I've already found info related to the authentication method on the Vista clients and changed the LAN Manager authentication setting to "Send LM & NTLM - use NTLMv2 session security if negotiated."
    Is there anything else we could try?

    Seems like a server reboot cured the problem. Still don't know what the cause was, however...

  • Express/Extreme Can Join Network but Cannot Extend

    I have both an Airport Extreme and an Aiport Express.  Recently we have upgraded to UVerse and acquired a new modem/wireless router.  I like the interface for this new router and would like to use it.  In turn, I would like to use both my Extreme/Express to extend my current wireless network.  In the past, I just ran my modem to the Extreme and then extended, upstairs, using my Express.  
    Both have no issues joining the current wireless network, but when attempt to extend the wireless network, they both just drop to blinking yellow lights and do nothing else.  Sometimes I connect via an ip address and see that the issues with extending comes from the fact that it cannot see the wireless network, which makes no sense to me since I have already joined the wireless network multiple times. 
    From here I simply have to factory reset each and start over, trying new settings.  My frustration has come to a head as I can find plenty of threads that have issues with extending networks from an Express, but nothing like mine.
    My new UVerse modem is a 3801HGV from Pace?
    My security is WPA2 TKIP/AES.
    I have no interest is hooking my Extreme up to the UVerse router via ethernet, I would much rather have it upstairs with the Express, extending, so I can have some true full home coverage with my network.
    Thanks for reading

    You might consider connecting one AirPort to the Uverse router using a short Ethernet cable and setting that AirPort up to "create a wireless network".
    Then, the next AirPort can extend that network.
    Apple's routers.....and many others for that matter....will run circles around the wireless on a Uverse router, so if performance is important to you, you might consider turning off the wireless on the Uverse router and using other products to provide the  wireless service.
    If you want to "extend" the Uverse signal with another product......a Netgear "universal" extender might do the job.....(although the models that I have tried are not "universal" enough to extend an Apple network).
    Might be a good idea to understand the store's return policy before you buy any product, as compatibility between different brands is always a huge question that often can't be answered until you try it our for yourself.
    Good luck.

  • Error joining network - but other computers have no problem

    I've been frustrated by one of three computers in my house having an issue joining my wireless access by Airport (via Westell VersaLink issued by dsl provider) .
    My MacBook Pro won't connect to the network, telling me, after I enter the WEP password: << There was an error joining the network "X". >>
    The other two computers I use at home, my wife's PC laptop and an old iMac, connect flawlessly with same password. The MacBook had connected fine previously. One day (6 months ago?) it just started with the issue and hasn't connected since.
    The MacBook travels with me a lot and has no similar connectivity issues in other locations.
    After I enter the correct password, it takes about ten seconds to report the error. If I enter the incorrect password, it tells me virtually instantly the same message as above.
    Message was edited by: winfieldscott

    Can you check the IP address of your Linux machine? Is it still in range with the other devices? Before you installed chromecast, have you assigned a static IP on your Linux server? Please do further checking with the settings of your Linux server. There are some reports that upon installing chromecast, some settings on *nix based machines are changed without any notification or interaction from the user.
    If everyone needs to believe in something, I believe I'll have another beer..

  • Issues with only one group call.

    I am having an issue joining one call group. I did not have this issue until a day or so ago. I multiple people in the group on my friends list. The people that usually lead the calls are all on my friends list. When I try to join it goes through the steps then drops me. A voice comes up telling me that the person I am trying to reach is not available and it has me leave them a message. This is the only group I have issues with. We tried making another group, it worked fine. I can call people and people can call me. I am not sure what the issue is with the lone group. Anyone have any ideas about this?

    First... You are not making your boot drive the share point are you????? Only share an entire drive if the drive is ONLY used for data (not OS).
    You need to make mroe than one share point.
    You can have one share point which is the Data drive and another share point which is the customer folder within.
    You can have share points which exist within share points.
    Jeff

Maybe you are looking for