Trying to use wireless N with iwlwifi & network manager

Have all the h/w necessary to use wireless N:
Intel Centrino-N 1030
Linksys E3200 running Tomato 1.28
Linksys E4200 running dd-wrt 21286
Also updated everything today (pacman -Syu):
>uname -a
Linux hostname 3.12.9-2-ARCH #1 SMP PREEMPT Fri Jan 31 10:22:54 CET 2014 x86_64 GNU/Linux
So, with either router set up with as an AP at 2.4GHz and N-Only (the centrino 1030 doesn't support 5GHz), and the module defaults loaded, I see odd behavior.  First, once connected to either AP, Network Manager still reports the connection to be at B/G.
I checked the module config, and this part is relevant:
>modinfo iwlwifi | grep 11n
parm: 11n_disable:disable 11n functionality, bitmap: 1: full, 2: agg TX, 4: agg RX (uint)
There's a lot of chatter on the forums about earlier kernels not supporting N w/ iwlwifi, and recommending to disable it with '11n_disable=1' in /etc/modprobe.d/iwlwifi.conf.  So I tried explicitly enabling it, and assuming it's a binary value:
>cat /etc/modprobe.d/iwlwifi.conf
options iwlwifi 11n_disable=0
After reloading the module(s) (and restarting wpa_supplicant & networkmanager), the thing I'm finding confusing is that I can see evidence of this change take effect:
>cat /sys/module/iwlwifi/parameters/11n_disable
0
...but it doesn't affect the output of modinfo (same as above), nor am I able to connect to either router at N (NM still reports B/G).  Also confused how it connects at all when the routers are set to N-Only?

modinfo iwlwifi
That is not supposed to change. It just shows you the parameters and their valid configurations.
options iwlwifi 11n_disable=0
>cat /sys/module/iwlwifi/parameters/11n_disable
0
Did you check that it was not already 0?
...but it doesn't affect the output of modinfo (same as above), nor am I able to connect to either router at N (NM still reports B/G).  Also confused how it connects at all when the routers are set to N-Only?
If the card connects with the routers set to n only, then the card is capable of working with n. I usually check with nm-tools and look at the speed indicated.
Here is the thing: Routers and cards sometimes negotiate a lower speed to prevent intereference with other devices. I usually 'get' N-speed only once I start to saturate the link.

Similar Messages

  • Use wireless router with existing network and switch?

    I have an existing network using a T1 into a switch; all the computers and the server are connected to the switch. Some distance away, via ethernet cable to the switch, I would like to connect a wireless router, one computer wired to that router, and other computers connect via wireless. Our server provides DHCP. Is this possible? How best to do it? Which Linksys router would be best for the purpose? Thanks for the help!

    The "correct" device to use would be a wireless access point like the Linksys WAPs and not a WRT router. WRT routers are supposed to connect to the internet on its own.
    You can set up a WRT router as simple access point. see here for the setup.
    The best router is the one which best suits your needs. All wireless routers and access point provide wireless access. It depends on what you want (802.11n, 11b, 11g, range, speed, etc.). The newer routers are better from the specifications but usually also have more firmware bugs. But that's pretty much all one can say based on your generic requirements.

  • I am using iphone 5 with vodafone network in NOIDA , but alwaz my phone is not rechable,

    i am using iphone 5 with vodafone network in NOIDA , but alwaz my phone is not rechable,

    Then as you've tried resetting the phone, the next step is to restore it from the latest backup. If that doesn't work, restore it as new, and if that doesn't work take it to Apple.

  • I'm trying to use kerberos V5 with ActiveDirectory but get an error

    I'm trying to use kerberos V5 with ActiveDirectory im using simple code from previuos posts but
    when i try with correct username/password i get :
    Authentication attempt failedjavax.security.auth.login.LoginException: Message stream modified (41)
    when i try incorrect username/pass i get :
    Pre-authentication information was invalid (24)
    Debug info is :
    Debug is  true storeKey false useTicketCache false useKeyTab false doNotPrompt false ticketCache is null isInitiator true KeyTab is null refreshKrb5Config is false principal is null tryFirstPass is false useFirstPass is false storePass is false clearPass is false
    Kerberos username [naiden]: naiden
    Kerberos password for naiden:      naiden
              [Krb5LoginModule] user entered username: naiden
    Acquire TGT using AS Exchange
              [Krb5LoginModule] authentication failed
    Pre-authentication information was invalid (24)
    Authentication attempt failedjavax.security.auth.login.LoginException: Java code is :
    import javax.naming.*;
    import javax.naming.directory.*;
    import javax.security.auth.login.*;
    import javax.security.auth.Subject;
    import com.sun.security.auth.callback.TextCallbackHandler;
    import java.util.Hashtable;
    * Demonstrates how to create an initial context to an LDAP server
    * using "GSSAPI" SASL authentication (Kerberos v5).
    * Requires J2SE 1.4, or JNDI 1.2 with ldapbp.jar, JAAS, JCE, an RFC 2853
    * compliant implementation of J-GSS and a Kerberos v5 implementation.
    * Jaas.conf
    * racfldap.GssExample {com.sun.security.auth.module.Krb5LoginModule required client=TRUE useTicketCache=true doNotPrompt=true; };
    * 'qop' is a comma separated list of tokens, each of which is one of
    * auth, auth-int, or auth-conf. If none is supplied, the default is 'auth'.
    class KerberosExample {
    public static void main(String[] args) {
    java.util.Properties p = new java.util.Properties(System.getProperties());
    p.setProperty("java.security.krb5.realm", "ISY");
    p.setProperty("java.security.krb5.kdc", "192.168.0.101");
    p.setProperty("java.security.auth.login.config", "C:\\jaas.conf");
    System.setProperties(p);
    // 1. Log in (to Kerberos)
    LoginContext lc = null;
    try {
    lc = new LoginContext("ISY",
    new TextCallbackHandler());
    // Attempt authentication
    lc.login();
    } catch (LoginException le) {
    System.err.println("Authentication attempt failed" + le);
    System.exit(-1);
    // 2. Perform JNDI work as logged in subject
    Subject.doAs(lc.getSubject(), new LDAPAction(args));
    // 3. Perform LDAP Action
    * The application must supply a PrivilegedAction that is to be run
    * inside a Subject.doAs() or Subject.doAsPrivileged().
    class LDAPAction implements java.security.PrivilegedAction {
    private String[] args;
    private static String[] sAttrIDs;
    private static String sUserAccount = new String("Administrator");
    public LDAPAction(String[] origArgs) {
    this.args = (String[])origArgs.clone();
    public Object run() {
    performLDAPOperation(args);
    return null;
    private static void performLDAPOperation(String[] args) {
    // Set up environment for creating initial context
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.ldap.LdapCtxFactory");
    // Must use fully qualified hostname
    env.put(Context.PROVIDER_URL, "ldap://192.168.0.101:389/DC=isy,DC=local");
    // Request the use of the "GSSAPI" SASL mechanism
    // Authenticate by using already established Kerberos credentials
    env.put(Context.SECURITY_AUTHENTICATION, "GSSAPI");
    env.put("javax.security.sasl.server.authentication", "true");
    try {
    /* Create initial context */
    DirContext ctx = new InitialDirContext(env);
    /* Get the attributes requested */
    Attributes aAnswer =ctx.getAttributes( "CN="+ sUserAccount + ",CN=Users,DC=isy,DC=local");
    NamingEnumeration enumUserInfo = aAnswer.getAll();
    while(enumUserInfo.hasMoreElements()) {
    System.out.println(enumUserInfo.nextElement().toString());
    // Close the context when we're done
    ctx.close();
    } catch (NamingException e) {
    e.printStackTrace();
    }JAAS conf file is :
    ISY {
         com.sun.security.auth.module.Krb5LoginModule required
    debug=true;
    };krb5.ini file is :
    # Kerberos 5 Configuration File
    # All available options are specified in the Kerberos System Administrator's Guide.  Very
    # few are used here.
    # Determines which Kerberos realm a machine should be in, given its domain name.  This is
    # especially important when obtaining AFS tokens - in afsdcell.ini in the Windows directory
    # there should be an entry for your AFS cell name, followed by a list of IP addresses, and,
    # after a # symbol, the name of the server corresponding to each IP address.
    [libdefaults]
         default_realm = ISY
    [domain_realm]
         .isy.local = ISY
         isy.local = ISY
    # Specifies all the server information for each realm.
    #[realms]
         ISY=
              kdc = 192.168.0.101
              admin_server = 192.168.0.101
              default_domain = ISY
         }

    Now it works
    i will try to explain how i do this :
    step 1 )
    fallow this guide http://www.cit.cornell.edu/computer/system/win2000/kerberos/
    and configure AD to use kerberos and to heve Kerberos REALM
    step 2 ) try windows login to the new realm to be sure that it works ADD trusted realm if needed.
    step 3 ) create jaas.conf file for example in c:\
    it looks like this :
    ISY {
         com.sun.security.auth.module.Krb5LoginModule required
    debug=true;
    };step 4)
    ( dont forget to make mappings which are explained in step 1 ) go to Active Directory users make sure from View to check Advanced Features Right click on the user go to mappings in secound tab kerberos mapping add USERNAME@KERBEROSreaLm for example [email protected]
    step 5)
    copy+paste this code and HIT RUN :)
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.NamingEnumeration;
    import javax.naming.NamingException;
    import javax.naming.directory.Attributes;
    import javax.naming.directory.DirContext;
    import javax.naming.directory.InitialDirContext;
    import javax.naming.directory.SearchControls;
    import javax.naming.directory.SearchResult;
    import javax.security.auth.Subject;
    import javax.security.auth.login.LoginContext;
    import javax.security.auth.login.LoginException;
    import com.sun.security.auth.callback.TextCallbackHandler;
    public class Main {
        public static void main(String[] args) {
        java.util.Properties p = new java.util.Properties(System.getProperties());
        p.setProperty("java.security.krb5.realm", "ISY.LOCAL");
        p.setProperty("java.security.krb5.kdc", "192.168.0.101");
        p.setProperty("java.security.auth.login.config", "C:\\jaas.conf");
        System.setProperties(p);
        // 1. Log in (to Kerberos)
        LoginContext lc = null;
        try {
                lc = new LoginContext("ISY", new TextCallbackHandler());
        // Attempt authentication
        lc.login();
        } catch (LoginException le) {
        System.err.println("Authentication attempt failed" + le);
        System.exit(-1);
        // 2. Perform JNDI work as logged in subject
        Subject.doAs(lc.getSubject(), new LDAPAction(args));
        // 3. Perform LDAP Action
        * The application must supply a PrivilegedAction that is to be run
        * inside a Subject.doAs() or Subject.doAsPrivileged().
        class LDAPAction implements java.security.PrivilegedAction {
        private String[] args;
        private static String[] sAttrIDs;
        private static String sUserAccount = new String("Administrator");
        public LDAPAction(String[] origArgs) {
        this.args = origArgs.clone();
        public Object run() {
        performLDAPOperation(args);
        return null;
        private static void performLDAPOperation(String[] args) {
        // Set up environment for creating initial context
        Hashtable env = new Hashtable(11);
        env.put(Context.INITIAL_CONTEXT_FACTORY,
        "com.sun.jndi.ldap.LdapCtxFactory");
        // Must use fully qualified hostname
        env.put(Context.PROVIDER_URL, "ldap://192.168.0.101:389");
        // Request the use of the "GSSAPI" SASL mechanism
        // Authenticate by using already established Kerberos credentials
        env.put(Context.SECURITY_AUTHENTICATION, "GSSAPI");
    //    env.put("javax.security.sasl.server.authentication", "true");
        try {
        /* Create initial context */
        DirContext ctx = new InitialDirContext(env);
        /* Get the attributes requested */
        //Create the search controls        
        SearchControls searchCtls = new SearchControls();
        //Specify the attributes to return
        String returnedAtts[]={"sn","givenName","mail"};
        searchCtls.setReturningAttributes(returnedAtts);
        //Specify the search scope
        searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
        //specify the LDAP search filter
        String searchFilter = "(&(objectClass=user)(mail=*))";
        //Specify the Base for the search
        String searchBase = "DC=isy,DC=local";
        //initialize counter to total the results
        int totalResults = 0;
        // Search for objects using the filter
        NamingEnumeration answer = ctx.search(searchBase, searchFilter, searchCtls);
        //Loop through the search results
        while (answer.hasMoreElements()) {
                SearchResult sr = (SearchResult)answer.next();
            totalResults++;
            System.out.println(">>>" + sr.getName());
            // Print out some of the attributes, catch the exception if the attributes have no values
            Attributes attrs = sr.getAttributes();
            if (attrs != null) {
                try {
                System.out.println("   surname: " + attrs.get("sn").get());
                System.out.println("   firstname: " + attrs.get("givenName").get());
                System.out.println("   mail: " + attrs.get("mail").get());
                catch (NullPointerException e)    {
                System.err.println("Error listing attributes: " + e);
        System.out.println("RABOTIII");
            System.out.println("Total results: " + totalResults);
        ctx.close();
        } catch (NamingException e) {
        e.printStackTrace();
    }It will ask for username and password
    type for example : [email protected] for username
    and password : TheSecretPassword
    where ISY.LOCAL is the name of kerberos realm.
    p.s. it is not good idea to use Administrator as login :)
    Edited by: JOKe on Sep 14, 2007 2:23 PM

  • Can I use watch folders with my network drive in Photoshop elements 10

    Can I use watch folders with my network drive in Photoshop elements 10

    photodrawken a écrit:
    See the tips in this FAQ:
    http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Watchi ng_Network_Folders
    Ken
    Beware the FAQ you are referring to is no longer relevant. It does not apply to PSE10
    Hereunder the warning issued by the author himself.
    Photoshop Elements 6/7/8 (Windows) Frequently Asked Questions (FAQ)
    John R. Ellis
    Last updated January 21, 2011
    Copyright 2008-10 by John R. Ellis
    As of June 2010 I no longer maintain this FAQ. I’ve migrated to Lightroom 3, which I use for all my organizing and most of my editing (I still use the Photoshop Elements Editor for more involved editing).  Adobe has clearly decided not to invest sufficient resources for properly maintaining the Photoshop Elements Organizer– see my Amazon review of PSE 8. Lightroom is marketed to professionals and prosumers with tens of thousands of photos who demand adequate organizational capabilities, whereas Photoshop Elements is marketed to consumers, most of whom do not want or use the Organizer.
    This page captures my answers to frequent questions about Photoshop Elements 6, 7, and 8 (Windows).  It’s mostly about the Organizer, since I know the Organizer much better than the Editor.
    The versions to which each FAQ applies are indicated with the notation [PSE 6, 7, 8]. If I’m not sure whether something applies to a version, it will be indicated with a question mark, e.g. [PSE 7, 8?].
    If you have corrections or suggestions, please email them to john at johnrellis.com.

  • Can i use wireless earbuds with my ipod nano 6th. if yes how do i do it ?

    can i use wireless earbuds with my iPod nano 6th generation ?  If yes, tell me how to do it. Thank you

    You will need this: http://www.amazon.com/KOKKIA-MULTI-STREAM-multi-stream-authentication-Capabiliti es/dp/B004I408OW/ref=sr_1_1?ie=UTF8&qid=1405309396&sr=8-1&keywords=bluetooth+ipo d+adaptor

  • I am trying to use apple configurator with ipads. I have been successful with all our ipads but 1. It will not allow me to add apps. The error I get is that it is refreshed but with errors e

    I am trying to use apple configurator with ipads. I have been successful with preparing and supervising all ipads but one. When preparing it in configurator, I receive an error that it is refreshed but with an error. Under supervise, I am not able to add apps. I have erased all content to start over but this does not work either

    Are you trying to restore a backup, or just sync some apps? Do you have profiles installed on the device?
    Have you plugged the ipad into iTunes, and did a fresh install? I'm assuming the device went through the prepare setup properly. You many have to unsupervise it first, then plug it into iTunes to wipe it completely.
    I'd then do each step seperately. Prepare it, then install 1 app, if that works, try another app, then maybe a profile.

  • Trying to use Wireless-G Router w/ Mac OSx (WRT54G2)

    Hi,
    I just got a Linksys Wireless-G Router, to use with my Apple MacBook laptop. I got the laptop new back in January '08, and the router is new as of today. The Model Number is: WRT54G2.
    I have a Windows desktop PC that I have been using at home, it has a cable modem connection through my cable company (external modem).
    When I tried putting in the installation CD for the router today into my Mac, it didn't show up (the CD did, but the programs wouldn't start). I came to the Linksys website, and saw that the Wireless-G Router's CD only works on Windows (I have Windows XP on this desktop I'm using right now for Internet.) But, of course, the laptop that I want to use the wireless connection with, is a Mac.
    I don't currently use the Internet on my Mac at home (only at places like the library with free WiFi access).... so I don't currently have my Mac plugged into any kind of modem whatsoever right now.
    The help wizard on the website is so confusing. I am just wondering....how on earth can I possibly get my Mac laptop using the Linksys Wireless-G router system?? Where do I plug the blue ethernet cable into, etc.? I can't use the Installation CD on my Mac, so it says manual installation is required, but I dont know what to do.
    I would reallly appreciate anyone's help! THANK YOU SO MUCH!
    Message Edited by ktx428 on 08-10-2008 12:09 PM
    Message Edited by ktx428 on 08-10-2008 12:11 PM

     Access the setup page of the router by launching an
    Browser and type on the address bar, 192.168.1.1 and press enter. When
    it prompts for the username and password, leave the username field
    empty and provide password as "admin" (Without quotes)
    click on ok.
    On the main setup page the ""Internet Connection Type"" should be
    on ""Obtain IP Automatically - DHCP “. Click on the Save Settings
    button.
    Now click on the sub tab ""MAC address clone"".
    - Click on enable
    Click Clone & click save settings
    Check WAN Ip on Status page of router ....
    If getting Valid Ip .... try going online
    If not ... power cycle for 4-5 minutes & then again check the WAN Ip address .....

  • Hi got a bb9810 Torch but I'm on cellc I tried everything but still battle with my network its on of

    Battle with cellc network sometimes on then edge the 3g but it battle on network tried everything pls help what can I do

    Welcome to the Apple Community.
    Make sure the Apple TV doesn't have an IP address of 169.x.x.x
    Try turning off security on your wifi network (for diagnostics only)
    Make sure your password only uses standard ASCII characters.
    Try changing your wifi channel to avoid any interference you might be experiencing. You can download and install iStumbler to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items. (Refer to your router manual for instructions on changing your wifi channel)

  • Using Time Machine with a Network Attached Storage (NAS) device

    I have a Mac household (20" iMac, MacBook Pro and MacBook) all connecting to the internet, wireless printer and a Network Attached Storage (NAS) device via the "n" version AirPort Extreme.
    All software / firmware is up-to-date on all machines / devices.
    Everything works great through the AirPort, but I can't see the NAS in the Time Machine setup. How do I get Time Machine to make backups of each of my machines to the NAS?

    TM backups to NAS are not officially supported. There are some hacks to make it work but you'll be on your own if you use them. check out this [Mac os x hint|http://www.macosxhints.com/article.php?story=20080420211034137&query=time% 2Bmachine%2Bafp]. make sure you read all the caveats and comments.

  • I have a hp hpe-595a, i'm trying to use stereo mix with a hot mic. anyone know how to do this?

    I'm trying to sing along with the music in the chat program Paltalk and also host a music room on the same program, I can only use the mic or stereo mix but not both at the same time.
    I have been using this chat program for over 5yrs and have always been able to use Stereo mix with the mic active, using the realteck codecs or soundblaster (what you hear)
    I can't do this with the IDT codecs supplied.

    Hey Redritr,
    Thanks for the question. iTunes purchases are billed to Store Credits first, before Credit Cards, as outlined by the following article:
    When making purchases, content credits are used first, followed by Gift Certificate, iTunes Card, or Allowance Account credits; your credit card or PayPal account is then charged for any remaining balance.
    via iTunes Store: How iTunes Store purchases are billed
    http://support.apple.com/kb/HT5582
    It also may be that the iTunes Store is prompting to verify your billing information:
    When there is a mismatch between the iTunes Store's records and your credit card company's records, you will receive an error message stating that your credit card's security code isn't valid or that your zip code does not match your bank's records.
    In most cases, this issue is caused by a formatting error in the billing address that you have provided. You can correct the issue by verifying that the information you have provided is correct, or by changing the format of your address to match the format that your credit card company has on file.
    via iTunes Store: My credit card's security code or zip code does not match my bank's records
    http://support.apple.com/kb/TS1646
    Additional Information:
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/TS5366
    Thanks,
    Matt M.

  • How can i use time machine with a network drive

    I have a Western Digital Net N900 wireless router with a 2TB internal H/D. How can I get Time Machine to reconize it?

    Relying only on TM to me is iffy but I would bet you have clones in addition to TM like I do.  I agree with everything you said but to the OP question, it is possible.  A time capsule or AEBS+HD are pretty similar but one is officially supported while the later is not.
    Since I'm rambling a bit I will add this.  I only use TM for the times I delete something and then wish I had it back.  All my restores or migrations are done from my clones.  One clone is made weekly and is a snap shot of my system.  One clone I keep remotely located and is updated monthly.
    My system:
    Internal 1TB
    Ext HD1 2TB (1TB data, 1TB clone)
    Ext HD2 2TB time machine backup (internal + HD1 data, not the clone)
    Remote 1TB clone
    I'm fully redudant with my method and it has saved me before.

  • How to use wireless keyboard with iPad, How to use wireless keyboard with iPad

    Do you have to have a Mac to setup the wireless keyboard. Can I use it directly with my iPad without a Mac.

    What brand/model keyboard? Not all keyboards can be used.
    http://www.tech-recipes.com/rx/5772/ipad-how-to-pair-connect-any-bluetooth-keybo ard/
     Cheers, Tom

  • I am trying to use my account with a new computer.  Now we can't get the new music to download on the IPod.  Any help/

    I am trying to use my I Tunes account with a new computer.  Now we can't get the new music we bought to sync with the Nano.  Any ideas?

    Downloading past purchases
    http://support.apple.com/kb/HT2519
    Recovering iTunes library from your device.
    https://discussions.apple.com/docs/DOC-3991

  • 2013 Honda Civic Si, SMS Text Message Function says "Unsupported Device" when trying to use this feature with iPhone 5. Can anyone help with this?

    In my 2013 Honda Civic Si, I'm trying to use the SMS Text Message Function, but keep getting the error message, "Unsupported Device".
    I use an iPhone 5 with latest iOS 6.1.4.
    HandsFreeLink works perfectly fine with my iPhone for voice calls and for streaming Bluetooth Audio. Does text messaging not work because of iMessage? Does anyone have any suggestions for this issue?
    Thanks in advance!

    In looking for a 2013 Honda Civic (LX model, no Navi), the text feature was very interesting and important to me. Why not have my texts available on the dash and read to me rather than messing with my phone. Anyway I won't go into the whole thing about safety while you're in your driving and all that. We all know what we should and shouldn't do. Anyways...
    I spoke to a salesman who said that this feature was not compatible with the iPhone, only BBs. Of course this didn't impress me and I found it hard to believe that Honda would restrict themselves like that. Anyway, a few searches on the web later and Honda shows that the iPhone 4, 4S and 5 are compatible for receiving texts through the car, just not sending them. I believe you need a minimum of iOS 5+ for it to work though.
    Once I found this the salesman and I did some testing with our phones. He has a 4S with iOS 6.1.3 and mine is a 4 with iOS 6.1.3. Initially we setup the phone using the Bluetooth config on the Civic's iMID display. It was setup and hands-free calling tested o.k. Next the texting was tested. Both of us have iMessage turned on. Neither of us could get the messages we would send each other (1 of us had our phone setup with the car, the other sent the text and vice versa). The messages were received by the phones, just not the car). When we would go under the Text Message section, it would say "Unsupported Device". I knew that couldn't be as Honda said it was compatible. After more web searches and a phone call to Honda by the salesman, I found the following.
    1) It seems like the person who had their phone paired with the Civic had to disable iMessage to start getting texts. The salesman still had it enabled on his though when he sent me texts (as SMS) and the Civic got them so both people aren't necessarily required to disable it. Now under the Text Message section, it would list the messages received.
    2) I changed the Notifications on my phone for Messages from Banner to Alerts. Once I did this it started to work. The texts were showing up on the car. I had read where another person had tried this successfully but then changed it back to Banner and it continued to work. I experienced the same thing.
    Granted this wasn't extensive testing but I was able to get it to do something closer to what I wanted. I'm not sure why Apple and Honda can't put their heads together to make sending texts work on the car but maybe someday it will work when enough people complain. It's kind of a disappointment that I couldn't get iMessage to work but I haven't given up hope yet. As it's a proprietary protocol, I can see Honda not supporting it though.
    Hope this helps someone out!
    FYI I bought car!

Maybe you are looking for

  • PO could not be creating using the Enjoy-BAPI

    Hi expersts. I have a problem with BAPI function module BAPI_PO_CREATE1. When program will generate orders for several suppliers for one supplier "PO could not be creating using the Enjoy-BAPI" and "Purchase order item 00010 still contains faulty sch

  • Unable to search icloud inbox in Outlook 2013, Windows 8.1

    HI, I hope someone can help, I've been struggling with this for a few weeks. I largely use my iPad and iPhone for email but have recently been more reliant on my Windows laptop as I have need to create items in office and it's simply easier on the la

  • Text Tab delimited - using Numbers

    I have some Numbers files that I need to upload to a contact manager as Text Tab - Delimited. I cannot seem to find the correct way of doing it, since I am not able to get them done.

  • Generating multiple rows from one physical row

    I was wondering if anyone has done or knows how to generate multiple rows for one physical row. In my query "SELECT Cust_No, Amount from Balances" if the amount is > 99,999.99 I want 2 rows returned, one with an amount of 90,000.00 and the other with

  • Comp crashed while uploading music

    G4 crashed while uploading iTunes music ... I have about 11 out of 14 tracks ... how do I go about getting the rest of the album without being charged?