Airport affect command line commands, such as telnet, route -v get, etc.

I am experiencing a special problem when I both connect to internet through Airport and my private network through ethernet port.
When Airport is connected to internet, I connect the ethernet port to an internal private network, where I did not set default gateway for this private connection.
When I tried to "telnet" to an ip within the same subnet of the internal private network, there is none of any response. From wireshark capture, there is none of any packet sending out. But when I tried both "icmp ping" and "ftp", they both worked properly.
Then I disconnect Airport and try "telnet" again, it then worked quickly.
In addition, when I try to check the route to my destination, which is within the same subnet of my ethernet, I used "route -v get 192.168.133.219". Interestingly, when Airport was not connected, this command will output the route information quickly. However, when Airport was connected, this command will not have any output of the route.
I have updated to the latest 10.5.8 release, but still have the same problem.
Have you ever had experienced such problem? Normally how can I report bug like above to Apple?

After properly configured VMware, this problem has been resolved.

Similar Messages

  • HELP!  Is there a way to change column information in iTunes such as name of artist, genre etc, other than deleting them one at a time? Such as the way you delete an entire group of songs by holding down control keys or selecting the Select All command.

    HELP!  Is there a way to change column information in iTunes such as name of artist, genre etc, other than deleting them one at a time? Such as the way you delete an entire group of songs by holding down control keys or selecting the Select All command. Thanks.

    If you select all the songs you want to change, Be it one song or an akbum, or an Artist, Or Genre, or playlist. Then Right mouse click  and Get Info. You then get a slightly different from normal Get Info box as this is the One for Multiple items.
    In there have a look at the tags and see if the one you want to changes is in there. There are a few tabs so if for example you wanted to change the Media Type from Home Movie to Movie go to the Options tab and select Movie and OK and it will change the whole selection.

  • Airport -s command in terminal

    What does the "CC" and "US" mean in the airport-s command output? See below:
    Macintosh:~ Lenny$ airport -s
                          SSID               BSSID                RSSI CHANNEL HT   CC    SECURITY (auth/unicast/group)
                          Stinetorf!     e0:91:f5:fa:a4:a4        -89        6          N       --   WPA2(PSK/AES/AES)
                          2WIRE446   00:12:88:c7:15:21      -79        6           N    US   WEP
                          96oakmont   00:22:6b:84:1e:8c      -85      11          Y     US   WPA(PSK/TKIP,AES/TKIP) WPA2(PSK/TKIP,AES/TKIP)

    Probably United States, as each country has their specific legal output threshold.
    http://www.cisco.com/en/US/docs/wireless/access_point/1200/vxworks/configuration /guide/bkscgaxa.html

  • Encapsulation dot1q command missing from C2600 Router

    According to what I've read the encapsualtion dot1q command was implemented in version 12.0 I have 12.2 but when I create a sub interface the encapsualtion command is not availabloe
    What am i missing !!!
    Here is the show version info from my router
    Cisco Internetwork Operating System Software
    IOS (tm) C2600 Software (C2600-I-M), Version 12.2(8)T5, RELEASE SOFTWARE (fc1)
    TAC Support: http://www.cisco.com/tac
    Copyright (c) 1986-2002 by cisco Systems, Inc.
    Compiled Fri 21-Jun-02 08:50 by ccai
    Image text-base: 0x80008074, data-base: 0x80A2BD40
    ROM: System Bootstrap, Version 12.2(7r) [cmong 7r], RELEASE SOFTWARE (fc1)
    Health_Clinic uptime is 35 minutes
    System returned to ROM by reload at 11:44:42 pacific Thu Aug 11 2005
    System restarted at 11:45:48 pacific Thu Aug 11 2005
    System image file is "flash:c2600-i-mz.122-8.T5.bin"
    cisco 2621XM (MPC860P) processor (revision 0x100) with 27648K/5120K bytes of memory.
    Processor board ID JAD07110MDR (2342712827)
    M860 processor: part number 5, mask 2
    Bridging software.
    X.25 software, Version 3.0.0.
    2 FastEthernet/IEEE 802.3 interface(s)
    2 Serial network interface(s)
    32K bytes of non-volatile configuration memory.
    16384K bytes of processor board System flash (Read/Write)
    Configuration register is 0x2102

    You need smartnet coverage on the router to get access to CCO to download the software that you are looking for. YOu will need to associate the smartnet contract number with a login name (CCO login) that you can sign up at
    http://tools.cisco.com/RPF/register/register.do

  • What's "SAVE" configuration command for Cisco switch/ router?

    What's "SAVE" configuration command for Cisco switch / router? I know Switch#copy running-config startup-config works well,
    but so long, any other command that easy to remenber?

    What's "SAVE" configuration command for Cisco switch / router? I know Switch#copy running-config startup-config works well, but so long,
    any other command that easy to remenber?
    yes, here: Switch#write,and want to know more about the Cisco switch, please visit:http://www.3anetwork.com/cisco-switches-price_c1

  • Select Command Le check. Can't get the Le.

    Hello all.
    I have a question.
    I am making an applet.
    Into the Select command, I think my applet cannot get the Le data.
    The Le value has always '00' even though the select command Le value has been changed.
    First, in order to get the Le, I used the apdu.setOutgoing(), which returns Le, and then I checked the Le != 0.
    However, I think the setOutgoing() always returns '00' in my applet, and the applet does not perform the checking Le statement.
    I guess my testing environment or performing follow has a problem, but I am not sure.
    I want to hear your opinion and how to test in this case.
              short idl = apdu.setIncomingAndReceive();
              byte[] apduBuffer = apdu.getBuffer();
              short le = (short)(apdu.setOutgoing() & (short)0x00ff);
              if(apduBuffer[ISO7816.OFFSET_CLA] != CLASS_ISO)
         CardException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
              Util.arrayCopy(fileControlInformation, (short)0, transientData, TD_OFF_FILE_CONTROL_INFORMATION, (short)fileControlInformation.length);
              if((apduBuffer[ISO7816.OFFSET_P1]!=(byte)4) || ((apduBuffer[ISO7816.OFFSET_P2]!=(byte)0)))
         CardException.throwIt(ISO7816.SW_INCORRECT_P1P2);
              if((apduBuffer[ISO7816.OFFSET_LC] == (byte)0) || (idl == (short)0) || (apduBuffer[ISO7816.OFFSET_LC] != (byte)idl) || (le != (short)0))
                        CardException.throwIt(ISO7816.SW_WRONG_LENGTH);
    For example,
    00A4040007xxxxxxxxxxxxxx01<<9000
    Although wrong Le is added, the applet returns 9000.
    I know why the applet returns 9000.
    The point is how to test it correctly.
    Thank you.
    글 수정: Jin

    not really, "select application" can return whatever you like, and most applets do return something: a file control information template (fci) giving the AID and other info (for an example, try to select a card manager). That's a good practice: because you can select an application with only part of an AID, the applet usually replies with this complete AID. [tell the card: "Hello ath", she will respond "Hello, understood, but if you want to know, my full name is Athena" :) ]
    Jin, can you post your whole process() algorithm for the select command, including: how are you returning data? do you use apdu.SendBytes() ?
    if you have a contactless card it is possible that Le is always zero, because according to iso7816 zero means "all available data".
    why? because a contactless card (or a T=1 card) can return any length without prior indication, so it does not need Le.
    or it might be a bug in your javacard implementation...
    You can use apdu.SetOutgoingLength() to indicate the real length of the response, and usually the card OS (below javacard) relies on that to create a 6CXX response if there's a problem.
    A workaround can be: Read Le in the apdu buffer at the correct offset, and send a 6CXX SW yourself if you're not satisfied with it.
    I'm expecting more details from you to fully understand the problem.

  • How do I find the address of my usb ports so that I can connect a telescope to the macbook. I have tried various commands on terminal and all I get is 'directory or command not recognised'.

    The telescope instruction says open a Terminal and put in ls/dev/* and other such things and all I get back is that none of them are recognised.
    JeffersE

    Why don't you call the telescope company for support and let them explain it to you.  Usually there is software involved with those types of telescopes and if that software doesn't support Mac, it won't matter how or what USB port you plug it into because no drivers or anything will load for it.

  • How can I use an AirPort Extreme to expand a normal Wi-Fi router range?

    I used to use my AirPort Extreme as my router, connecting it to an old modem I had. Recently, I had some problems with that modem and had it changed. Now, the new one is also a router, so I decided to use it instead of the AirPort Extreme. However, I don't want to let such an expensive router not doing anything, so I decided I would use it to expand the range of my new router/modem. Is it possible to expand the range of a non-Airport Extreme/Express router, like mine? I tried configuring it to "Expand a network", and it was even in "Bridge Mode", but even with those configurations, it's yellow light kept blinking and AirPort Utility said that it the AirPort Extreme wasn't being able expand the network, and told me to check if the normal router was on and if AirPort Extreme was within its range, and the answer is an obvious yes for both (I can assure you it's within range). Am I doing something wrong, or is it simply not possible?

    Is it possible to expand the range of a non-Airport Extreme/Express router, like mine?
    Yes, if you connect the AirPort Extreme to one of the LAN <-> ports on the modem/router using a wired Ethernet connection.
    Extremely unlikely if you are asking about having the AirPort Extreme connect wirelessly to the modem/router and extend or repeat the signal in that manner.
    The reason for this is that Apple designs their routers to only the extend the signal from another Apple router wirelessly.

  • I just purshased AirPort Extreme 802.11n wi-fi  I was told to get the step by step direction on the internet and I am not able to find it can you help me

    I just purchased AirPort Extreme 802.11n wi-fi  I was told to get a step by step direction to install this wi-fi on line but I am not able to find it.  can you please help me?
    Helen

    See this Apple video tutorial.
    http://www.apple.com/findouthow/mac/#wirelesssetup
    And this Apple doc:
    http://manuals.info.apple.com/en_US/airport_extreme_5th_gen_setup.pdf

  • How can I set up a guest access point with a Time Capsule and an Airport Extreme? I am using a Telus router with the Time Capsule used as a wireless access point (bridge mode). I don't want the guest access point to have access to my network.

    How can I set up a guest access point with a Time Capsule and an Airport Extreme? I am using a Telus router with the Time Capsule used as a wireless access point (bridge mode). I don't want the guest access point to have access to my network.

    The Guest Network function of the Time Capsule and AirPort Extreme cannot be enabled when the device is in Bridge Mode. Unfortunately, with another router...the Telus...upstream on your network, Bridge Mode is indicated as the correct setting for all other routers on the network.
    If you can replace the Telus gateway with a simple modem (that performs no routing functions), you should be able to configure either the Time Capsule or the AirPort Extreme....whichever is connected to the modem....to provide a Guest Network.

  • Can I Use Airport Express for Airplay and a non-apple router with streaming capabilities on the same network?

    I want to do the following things but can't find one device that fits all purpose.
    Wi-Fi router that has USB port to share external hard disk wirelessly to all devices (Mac, Samsung Smart TV, PC, Ipad, Iphone) along with inbuilt torrent download capability that also has a 3.5mm jack to do airplay.
    Greedy? Yes I know but why can't we have it all I ask.
    Airport Express severs Wifi Router + Airplay purpose
    Then there are other non-apple routers in market that satisfy my need to attach external hard disk and stream to the devices mentioned (Note: Timecapsule will not stream to my Smart TV)
    So I am thinking why not connect both Airport Express and a second non-apple router and get best of both worlds.
    Is it possible?
    Thanks in advance.

    I want to do the following things but can't find one device that fits all purpose.
    Wi-Fi router that has USB port to share external hard disk wirelessly to all devices (Mac, Samsung Smart TV, PC, Ipad, Iphone) along with inbuilt torrent download capability that also has a 3.5mm jack to do airplay.
    Greedy? Yes I know but why can't we have it all I ask.
    Airport Express severs Wifi Router + Airplay purpose
    Then there are other non-apple routers in market that satisfy my need to attach external hard disk and stream to the devices mentioned (Note: Timecapsule will not stream to my Smart TV)
    So I am thinking why not connect both Airport Express and a second non-apple router and get best of both worlds.
    Is it possible?
    Thanks in advance.

  • I just got my cable company to switch my wireless router to a wired one considering now I have the wireless airport device (the newest one) but now I can't get a wireless signal. The router works when directlyplugged in,the aiport wireless device is green

    I just got my cable company to switch my wireless router to a wired one considering now I have the wireless airport device (the newest one) but now I can't get a wireless signal. The router works when directlyplugged in,the aiport wireless device is green. I've tried going through my new MacBook Pro settings and it the diagnostics check, it says network changes detected, I tell it that it "yes" does connect to a cable modem, it tells me to restart it, after I do it asks if there are any other devices hooked up ( firewall) and when I say no it tells me that it can't fix the problem.
    Now I know that I probably have a new IP address because of the cable company switching the boxes but it was working fine with the other box, now there isn't a signal to be had on it!
    Please anybody out there that can help!!!??

    Any time you change networking hardware it is always a good idea to perform a complete power recycle with the new equipment. Check out the following AirPort User Tip. Please post back your results.

  • I just purchased an airport extreme router to increase the range of    my wifi. I have an imac with 10.5.8. I get a flashing yellow light on the base unit and it tells me I need airport utility to install yhe ubnit. Where do I get this and how do I do it?

    I just purchased an airport extreme router to increase the range of my wifi. I have an imac with 10.5.8. I get a flashing yellow light on the base unit and it tells me I need airport utility to install yhe ubnit. Where do I get this and how do I do it?

    sylviafromhanover wrote:
    So I assume that the original modem stays installed with the coaxial cable and the Exrtreme is in addition to that. 
    Yes, that is correct.
    Did you have the instructions that came with your Airport Extreme?  Are you sure you have it setup properly?  Here is the setup guide:
    http://manuals.info.apple.com/en/airportextreme_802.11n_userguide.pdf 
    Ensure you have everything setup properly.  Once you do this and if you are still having trouble, follow Star's instructions. 

  • HT3986 I wanna install window 7 in MacBook pro...!! In that, such software like CADD,Pro-E etc will b support to this MacBook pro...???

    I wanna install window 7 in MacBook pro. In that, such software like CADD,Pro-E etc will b support to MacBook pro..??

    http://www.apple.com/support/bootcamp/
    It is not clear what you are asking. You can install Windows 7 on Macbook Pro using Boot Camp Assistant. Follow the linked to instructions. All Windows programs will work just as they would on  a Windows PC with similar specs as your Macbook Pro.

  • Hi..I have an AirPort Extreme base connected to my DSL Modem and has been working fine. But I recently bought another DSL modem along with the latest Airport Express. With this one however I can't get it to connect to the Internet. Any suggestions?

    Hi..I have an AirPort Extreme base connected to my DSL Modem and has been working fine. But I recently bought another DSL modem along with the latest Airport Express. With this one however I can't get it to connect to the Internet. The light on the Express is flashing green though. Does it mean I have to re-set the settings on Airport Utility? I.e. the old settings haven't been cleared yet. Any suggestions?

    Let's see if I can get this straight.
    You have an Airport Extreme base station that is set to "Create a wireless network" and you have the box checked for "allow this network to be extended"....
    Then you have an Airport Express that is set to "Extend a wireless network" which you selected the name of your network in the box...
    Correct?
    See this Apple document:
    http://support.apple.com/kb/HT4259?viewlocale=en_US&locale=en_US
    The wireless unit on the right of the diagram can be either of the newer Apple base stations.
    Extreme, Express, Time Capsule

Maybe you are looking for

  • Custom Field In User Registration Portal

    Hello, Is there a way I can add a custom field during user password registration in FIM 2010 R2? I want to have a field to set a User PIN where user can enter a value and it can be used in future by user or helpdesk when user is not able to answer ot

  • Error trying to reinstall OS X after wiping hard drive

    Hello - I wiped my old Mac drive clean according to the instructions on Apple regarding erasing the disc.  Now I'm trying to reinstall the OS X but the computer won't let me select the Macintosh HD drive to install it to.  There is absolutely nothing

  • Resolution mismatch issue in Photoshop CS3...

    Here's a problem that I haven't been able to find an answer to... I converted 180ppi images to 300ppi using a program called ImageMagick. When I open the image up on my machine the image size states that it is 7.454ppi, which is not what I want it to

  • External SSD corruption?

    I have an external OWC SSD that I use to store my iTunes library. Three times now the filesystem on the SSD has become corrupted while TimeMachine was backing it up. I am open to the idea of this being an issue with the drive itself, but all three ti

  • SAP BI in utility companies

    Hello expeert What is the best practice to treat SAP BI in a global utility company? Is Federated BW preferable? - Considering generation statios have less data but distribution units would have tons of data thanks to millions of customers - Consider