How to verify that I extended my network properly?

Hi,
I finally purchased a new Airport Express to go with my 4th gen Airport Extreme as an extender.  So I think I got things right...I have my Airport Extreme set to create a network and allow it to be extended and my new Airport Express set to extend a network.  I also have my channels and mode on automatic so it all appears as one network.  So I am getting much better range but it seems when I'm in an area where I'm connected to my new Express I have connection but there are some pauses when accessing webpages.  It's not horrible but not quite as fast as before when I'm direct to my Extreme.  Is that to be expected when extending?  Also now in my Extreme the new Express shows as a client with these numbers:
signal -51 noise -82 rate -86 802.11 b/g/n
And in my Express now my Extreme shows as a client:
signal -41 noise -84 rate -144 Wireless
They are not so far apart but there is a wall in between.  Anyways, just wanted to get some confirmation that I got things set up the best I can thanks!
rc

Sorry I'm also a Mac guy but if you read through my first post it might help you to find this out via Airport Utility as it should work on windows too.  At first I made the mistake of Joining a network with my Express instead of Extending a network and the clients list will appear different then how I described it above.  Seems like the most important things are to make sure your Extreme is set to Create a network and you must check the box that says Allow this network to be extended.  In your Express select Extend a network and actually the router did the rest on my end...
Also, it might help if you try the equivalent of iStumber on Windows to see your networks.  Although I only have one network name in iStumber it shows me that I have 3 networks so 2 are from my Extreme and 1 from my Express.
And finally and this might do it, you can go back to the Client list in Airport Utility to see which station you are connected to.  That's what I was doing before Bob's easier solution which unfortunately doesn't seem to help you at the moment...
Hope this helps a bit as I just went though this.  I'm just entry-level here Bob is the true expert and is always helpful! :-)
rc

Similar Messages

  • How to verify that your connected to wifi

    How to verify that your connected to wifi

    3 ways:
    1. The symbol at the top of the iPad on the left hand side. Will tell you if you are connected, and how strong the signal is:
    2. Going into Settings->Wifi will tell you what Wifi network you are connected to at the time if any,
    3. If the network has internet access, you should be able to open a website in Safari.

  • What is Veritas HA, and How to verify that Veritas HA system is "lights on"

    Hi, Friends:
    I have two questions,
    1.What is Veritas HA?
    2.How to verify that Veritas HA system is "lights on"?
    thank you very much,
    Jerry

    Veritas HA = Veritas High Availability.
    http://www.google.com/search?q=veritas+HA&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a

  • How to verify that the SCCM data is importing in Service Manager properly

    Hi,
    we are using SCSM 2012 R2 with SCCM 2012 R2 connector.
    How could I verify that the configuration manager data is importing properly in Service Manager.
    Since many of the systems are not showing installed application in service manager that are showing in Configuration Manager, therefore, I have to verify that SCCM data is importing properly in Service Manager.
    Further, we I check the incidents, affected CIs are missing or blank.
    Please suggest.
    Regards, Syed Fahad Ali

    If you look at the history of the CI it will tell you everything that is being written to it. If some of your systems are not showing their installed software, you may want to check that the ConfigMgr connector is even syncing that particular machine.
    If you look at the CI history and don't see any entries from "System Center Configuration Manager", the machine may not be in the appropriate collection. If you take a look at the configuration of the connector, you will see the collections that
    are synced. In order for a machines information to be populated, it must be in one of the selected collections.  
    Matthew Dowst |
    Blog | Twitter

  • How to verify that oracle service is up

    How to verify that Oracle server is up?
    how to verify that Oracle db is up (or online??)
    thx

    Hi,
    This Sun ksh command will show the Oracle processes for your instance:
    ps -ef|grep $ORACLE_SID|grep -v grep
    Here the Sun script that I use to check if your database is running:
    check_stat=`ps -ef|grep ${ORACLE_SID}|grep pmon|wc -l`;
    oracle_num=`expr $check_stat`
    if [ $oracle_num -lt 1 ]
    then
    exit 0
    fi
    # Test to see if Oracle is accepting connections
    $ORACLE_HOME/bin/sqlplus -s /<<! > /tmp/check_$ORACLE_SID.ora
    select * from v\$database;
    exit
    # If not, exit and e-mail . . .
    check_stat=`cat /tmp/check_$ORACLE_SID.ora|grep -i error|wc -l`;
    oracle_num=`expr $check_stat`
    if [ $oracle_num -ne 0 ]
    then
    mailx -s "$ORACLE_SID is down!" [email protected]
    exit 16
    fi
    If you are not familiar with UNIX scripting, there are many script collections that you can use:
    http://www.google.com/search?&q=oracle+script+collection
    To learn UNIX scripting, Jon Emmons (Life after Coffee blog) has a book of Oracle Linux/UNIX scripts:
    http://www.rampant-books.com/book_2005_1_linux_commands.htm

  • How to verify that the variable "does not contain" a value?

    Hi
    I am using CP 7.0.1.237.
    We want to use Text Area widget for a custom quiz and verify an answer. While we figured out how to verify the existence of certain keywords, we are not able to figure out how to verify that the content should NOT contain certain keywords. For example, we want to ensure that the text entered in this widget should not contain "Transformation" and "Non-compliant".
    Is this possible at all?
    Thanks
    Sreekanth

    Here's what the solution might look like in JavaScript.  This would be for SWF output and aimed at Cp 7.  For Cp 8, this would still work for SWF output, but you'd probably want to take advantage of the new unified JS API that gets and sets Cp variables for both SWF and HTML5 output.  You can read more about that here:  Common JS interface
    //Get the text area value from Captivate (SWF output Only)
    var cpTextAreaValue = document.Captivate.cpEIGetValue('m_VarHandle.v_TextArea);
    //convert the value to lower case to properly compare
    cpTextAreaValue = cpTextAreaValue.toLowerCase();
    //Check if text area value contains the words "transformation" or "non-compliant"
    if(cpTextAreaValue.indexof('organizational') > -1 && cpTextAreaValue.indexof('behavioral ') > -1 && cpTextAreaValue.indexof('managerial') > -1 && cpTextAreaValue.indexof('transformation') < 0 && cpTextAreaValue.indexof('non-compliant') < 0){
      //the text area has the correct answer so increment varScore
      //get the current score from Captivate
      var score = document.Captivate.cpEIGetValue('m_VarHandle.varScore');
      //increment score by 1
      score++;
      //set score in Captivate
      document.Captivate.cpEISetValue('m_VarHandle.varScore', score);
    } else {
      //the text area does not have the correct answer so show message to user inside of Captivate
      document.Captivate.cpEISetValue('m_VarHandle.v_message', 'Answer is not correct');
    This JS has not been tested.  Note that the "does not contain" operator is done using the "indexof" operator in JS. 
    Jim Leichliter

  • How to verify that embedded OC4J is loading Custom LoginModule?

    I've written a custom login module to authenticate against a custom datastore. I've added a system property
    java.security.auth.login.config=C:\javadev\...\jaas.configas recommended by Yvonne here: Re: Custom LoginModule used by BC4J
    I still get the following when I load a UIX page out of this module:
    msg=JBO-33021: Failed authenticate user nullThere are many debug System.out(...) statements in the code (including in the initialize() function) but none are showing up in the OC4J console. Does anyone know how to verify that the LoginModule is indeed getting loaded? Is it normal for these System.out() statements not to show in the OC4J console?
    I get the impression that the LoginModule is not being loaded but I'm not sure if those traces are enough...
    Thanks,
    /sfl

    Thanks much for the prompt reply and debugging tips Steve and Avi!
    I used both switches (-DApplicationServerDebug and -verbose:class) and still no sign of the class being loaded; none of the traces (I did trace in the construct, though I failed to mention in my original post) nor do any of the app server or jvm debug messages show any sign of the LoginModule being loaded. So now I'm fairly certain I'm going about the wrong way to get this module loaded. Should I also be posting this to the JDeveloper forum?
    My application module configuration is as follows:
    jbo.security.config=<blank> (is this right?)
    jbo.security.context=oracle.security.jazn
    jbo.security.enforce=Must
    jbo.security.loginmodule=customModuleThe command line to the JVM contains:
    -Djava.security.auth.login.config=C:\javadev\jdev9052\j2ee\home\config\jaas.config[yes Avi, I was unfortunately imposed an M$ env. by the powers that be : ( ]
    And, well I've been trying a lot of different things w/ the jaas.config file:
    customModule{
    myPack.controller.MyLoginModule required;
    myApp{
    myPack.controller.MyLoginModule required;
    myPack.LookupModuleLocal{
    myPack.controller.MyLoginModule required;
    myPack.LookupModule{
    myPack.controller.MyLoginModule required;
    Ws-MyProg-webapp{
    myPack.controller.MyLoginModule required;
    default{
    myPack.controller.MyLoginModule required;
    current-workspace-app{
    myPack.controller.MyLoginModule required;
    };Any idea where I'm going wrong? Do I need to do anything else to get this module loaded? At first I thought I needed to modify the jazn-data.xml file but I saw a note in another thread Custom LoginModule used by BC4J which says that it's not necessary to modify it when using a custom LoginModule. Is this right, or should I be modifying that file?
    Thanks,
    java.lang.Object - jobject ;- )

  • Loading property information list by namespace failed or property not found in the list. Verify that the schema is deployed properly.

    Hi,
    We are facing issue in BizTalk 2010 837 Institutional claim process. The Error is “Loading property information list by namespace failed or property not found in the list. Verify that the schema is deployed properly”.
    We have used Custom Pipeline component to update the promoted property like MessageType. When we drop the XML File in Receive Location it generates the XML file through Pipeline but promoted property MessageType is not updated in Receive Location and throw
    the error as mentioned.
    We have the schema which is not duplicate as well as different version.
    Could you please help on this issue.
    Thanks in advance.

    Praveen,
    There are two issues here.
    “Loading property information list by namespace failed or property not found in the list. Verify that the schema is deployed properly” issue is normally due to the deployment issues. This more often occurs when you have same schema with multiple
    version and this issue is due to the sequence/order in which these two schemas are deployed. If you run the following SQL query in your BizTalk management db replacing it with your target namespace of the schema deployed
    SELECT *
    FROM bt_XMLShare
    WHERE target_namespace like N'http://YourTaggetNameSpace'
    You shall see two version of the same schema listed and both of them should have Activate flag set to 1. If any of the schemas is set to 0, then you will have the above mentioned issues. This is due to the way the different versions of the schemas are deployed.
    You can undeply both the version, deploy them together or deploy the older version first and the later version later.
    And for another issue of custom property not updating the MessageType property, debug the pipeline component code. This issue has no direct impact to the above issue. If you you’re your Message Type to be updated and if it’s not getting changed, then debug
    the code and check why its not been updated.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • How to rectify that receiver can not hear properly.

    Apple i phone 5. How to rectify that receiver can not hear properly.

    Hello Raj Perera,
    Thanks for the question. After reviewing your post, it sounds like you are having trouble with the receiver. I would recommend that you read this article, it may be able to help the issue.
    If you can't hear a person on a call or voicemail or if the sound quality is poor on iPhone - Apple Support
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • I don't know how to set AE to extend my network.

    Today i bought a new Airport express, and decide to use it as a extend tool for my network.
    but i found i cannot set it up!
    i set it as a extended, then, it disappeared from the list!
    Then what i can only do is to reset it, and do everything again, but it disappeared again
    Because i'm living in my friend's house, so that i cannot remove the old router.
    How to deal with it?
    P.S: If i only set it as a router,it's okay. but i cannot do that.
    Is anyone can tell me how to set it?
    Message was edited by: Acedia

    Acedia, Welcome to the discussion area!
    If you configure the AirPort Express (AX) to extend the network, the only network name you will see in the list of networks is the name of the network which the AX is extending.

  • How to "close" AE N Extended wireless network

    Hi,
    I have two AE N routers.
    The first with a wireless mode of 'Create a wireless network' where I have selected "create a closed network" to keep my network name hidden. If just this router is on, when I scan for networks on my MBP, I can't find my network, which is what I expect. I can join the network O.K. after specifying it's name.
    On the second router, I have set a wireless mode of 'Extend a wireless network' on the wireless network options, there is no 'create a closed network' checkbox. If this router is on, it does indeed extend my network, but if I run a scan on my MBP, I find that the network name is advertised.
    Is this a personal thing? If so what have I done wrong?
    I'm extending the network, as I want to run the N network in the 5Ghz band, as I have a bridge to a G network where I have a different named closed network running in WDS mode on 2.4Ghz.
    Cheers ... Gwaant.
      Mac OS X (10.4.8)  

    Sorry I'm also a Mac guy but if you read through my first post it might help you to find this out via Airport Utility as it should work on windows too.  At first I made the mistake of Joining a network with my Express instead of Extending a network and the clients list will appear different then how I described it above.  Seems like the most important things are to make sure your Extreme is set to Create a network and you must check the box that says Allow this network to be extended.  In your Express select Extend a network and actually the router did the rest on my end...
    Also, it might help if you try the equivalent of iStumber on Windows to see your networks.  Although I only have one network name in iStumber it shows me that I have 3 networks so 2 are from my Extreme and 1 from my Express.
    And finally and this might do it, you can go back to the Client list in Airport Utility to see which station you are connected to.  That's what I was doing before Bob's easier solution which unfortunately doesn't seem to help you at the moment...
    Hope this helps a bit as I just went though this.  I'm just entry-level here Bob is the true expert and is always helpful! :-)
    rc

  • How to verify that my info is backedup?

    I need to reset my phone to factory setting.  How do I verify that all the info on the phone is actually backed up in the iCloud?

    Go to Settings>iCloud>Storage & Backup, scroll to the bottom and see the time/date at the very bottom (under Back Up Now).   Then as a precaution, make a second backup on your computer using iTunes by connecting your phone to your computer, opening iTunes and going to File>Devices>Back Up.  Then go to File>Devices>Transfer Purchased.  Then you'll have a second backup should anything go wrong with one of them.

  • How to verify that a host is having/running Exadata?

    Hi,
    How can I verify that a machine(unix/linux) has Exadata?
    Please help.
    Thanks

    It's the storage that's important. You can run a database on an Exadata DB servers that doesn't access Exadata storage, in which case Smart Scans etc... will be disabled. So you may want to check your asm diskgroups. They have an attribute that tells whether they reside on Exadata storage or not. You can use something like this query to show you that information.
    <pre>
    column exadata_storage for a20
    with b as (select group_number, value from v$asm_attribute where name = 'cell.smart_scan_capable')
    select a.name diskgroup, state, b.value Exadata_storage
    from v$asm_diskgroup a, b
    where a.group_number = b.group_number(+)
    and a.name like nvl('&diskgroup',a.name)
    order by 1
    SYS@SANDBOX> @exadata_diskgroups.sql
    Enter value for diskgroup:
    DISKGROUP STATE EXADATA_STORAGE
    DATA CONNECTED TRUE
    RECO CONNECTED TRUE
    SCRATCH MOUNTED TRUE
    SMITHERS DISMOUNTED
    STAGE MOUNTED TRUE
    SWING MOUNTED TRUE
    SYSTEM MOUNTED TRUE
    7 rows selected.
    </pre>

  • Newbie q: How to verify that encryption is working

    Hello,
    In a sharepoint environment, we have installed a certificate and force encryption=on, according to :
    http://social.technet.microsoft.com/Forums/en-US/bde679d9-ff83-4fa7-b402-42e336a97106/force-encryption-on-sql-server-not-working?forum=sqlsecurity 
    How can I verify that the encryption is actually working? I saw wireshark but I don't know to use it.
    Thank you
    Christos

    Basically if you encrypt all of DataBases of SharePoint, you can open one DataBase and use Select statement to verify if your can read the Data.
    Connection encryption is something quite different than database encryption.
    The most ideal way to verify connection encryption is to use a packet sniffer such as Wireshark.  Since that's no something you know how to use and are resistant to learning, I'd run the following on my SQL Server and look for connections which have
    an encrypt_option of false:
    select * from sys.dm_exec_connections
    Connections which are encrypted should have an encrypt_option of TRUE.

  • How to enable Chase Referral? After doing the same how to verify that part?

    Hi,
    Please guide me on enabling chase referral on my Active Directory server. Also after enabling the same how to verify it?
    Setup info:
    Forest1:
    root.com(PDC)
    child.root.com(Child)
    Forest2:
    test.com(PDC)
    ind.test.com(child1)
    us.test.com(child2)
    Both these forests has two way transitive trust enabled. 
    We have product where we can add LDAP settings so that AD users can be mapped to that server. I have added Forest1->PDC to that settings where I am able to retrive the objects during LDAP search. Chase Referral option is available, when I enable the option
    and try to search for a user present in Forest 1-> child domain no object is returned. 
    Is there any thing that needs to be done on AD servers. Please help.

    Hi Arun,
    I suggest you check this blog below to see if it helps:
    Referral Chasing
    http://blogs.technet.com/b/ad/archive/2009/07/06/referral-chasing.aspx
    Best Regards,
    Amy

Maybe you are looking for