I can't be living in a black hole... can I?

I am fairly new to Mac's and this AEBS is just a couple of months old. My connection is absolutely horrible and I don't know what else to do about it. I just updated to the latest version of firmware (it took me weeks to actually be able to) and I have spent weeks adjusting each and every setting I can think of to find a perfect fit but I'm lost.
I have a MacBook, using the latest updates w/ the AEBS. My connection summary is as follows:
Using 802.11n only (5GHz)
Channel - Auto
Multicast rate - 12mps
Transmit power - 100%
Use wide channels selected
Using a closed connection
Using iStumbler I'm only seeing a 75% signal - from just over 4ft away, noise is steady at 9% (oddly enough it's the same for the other 4 networks it detects) and for whatever reason it's showing -1 for the frequency.
Just checking right now? I moved the laptop w/in an inch of the AEBS and my signal is only bouncing around the 82% mark? That can't be right. It's taken me almost 10 minutes to just load the support page here and then another 6 or so to log in.
Guys, I'm losing my mind not to mention my patience. If you can help me out I'd be more than appreciative.

...and for whatever reason it's showing -1 for the frequency.
I believe it shows that if the base station is configured to not broadcast the SSID.
Remember that iStumbler does not show other devices which may be operating at 2.4 GHz and causing interference.
See KB 58543, AirPort: Potential sources of interference.
If you are using 5 GHz, try 2.4 GHz.
If you are using 2.4 GHz, try using a different channel until you find a channel which works better or you run out of channels.

Similar Messages

  • Safari 5.1 in iMac OS X 10.6.8.Adding Bookmarks to "unsorted Bookmarks" folder puts them in a black hole.  I can't find the "UB" folder.  Where is it? Should I add it to the folder list somewhere on the left pane? OR? Help, please!

    Safari 5.1 in iMac OS X 10.6.8.Adding Bookmarks to "unsorted Bookmarks" folder puts them in a black hole.  I can't find the "UB" folder.  Where is it? Should I add it to the folder list somewhere on the left pane? OR? Help, please!

    It looks like that the installation process of one of the applications have caused some trouble. One of them may have changed or added kext files.
    For that, the Window server crashed if you try to open a non Apple application like Firefox
    Start the system in safe mode by holding the shift key on power on.
    If save mode is reached, perform a permissions repair with the Disk Utility.
    Don't bother about upcoming warnings like "could not repair file xy" as that occur cause you use the tool on a running system and opened files can not get touched by the tool.
    After repair is done reboot system to normal and try to open Firefox.
    If the problem persits, please report back here.
    Lupunus

  • PMTU-D Black Hole Detection Missing?  Cause of some conn hangs.

    In looking through the kernel source, it appears that Apple has left out one of the most important parts of Path MTU Discovery (RFC1191) as suggested in RFC2923. Since Path MTU Discovery is enabled by default, this may cause some of you to have 15 minute hangs and ultimate termination of connections when large packets are sent to specific hosts.
    Other than DNS and Wireless network drops, MTU settings appear to be one of the single most problematic things going on with OS X right now.
    For those who are not familiar with MTU, here's a brief rundown.
    10/100 Ethernet networks support a base MTU of around 1514 bytes. This is the max number of bytes that a packet is able to be in order to get put on an Ethernet network (and be within spec). Gigabit Ethernet allows for larger, but we won't go into that.
    You're probably more used to hearing 1500, however, that is the MTU for IP (or the Ethernet payload) as the Ethernet header itself is 14 bytes.
    In that 1500 bytes, you have to fit your IP header, ICMP/TCP/UDP header, and any higher layer protocols and data, each layering on top of the next.
    |<--Ethernet (14 Bytes)--><--IP (20 Bytes)--><--TCP (20 Bytes)--><--Data (1460 Bytes)-->|
    So that is how things look on a local area network.
    Once the WAN comes into play, the Ethernet header is stripped off leaving only the IP packet and another header put in its place to get it over the next link. This process goes on and on and on until the packet finally reaches its destination.
    But here's the problem - what if there is ANOTHER layer between the Ethernet and IP stack?
    This is actually quite common and you're probably using it now. The protocol PPP over Ethernet (PPPoE) fits between the Ethernet header and the IP header and adds another 8 bytes to this packet size.
    So now we end up with:
    |<--Ethernet (14 Bytes)--><--PPPoE (8 Bytes)--><--IP (20 Bytes)--><--TCP (20 Bytes)--><--Data (1452 Bytes)-->|
    Notice that we now can't put as much data in this packet or we'll end up with a packet that is too big to fit on the Ethernet network.
    The PPPoE header will ultimately get taken off once the packet gets where it needs to go at your ISP, but there may be other 'tunnels' between you and your ultimate destination and continue to strip off space of how much data you can put into a packet.
    So how do you know how much data you can put into a packet when you don't own or know anything about the network between you and the destination?
    That's where Path MTU Discovery comes into play.
    It used to be that IP packets would be fragmented (split up) if a packet was too big to get put on the next network. This process of fragmentation causes overhead for both the router having to split up the packets and the receiving device that has to put them all back together again (and make sure they go in the right order).
    So in order to reduce this overhead and also ensure that you are always sending the largest packets possible from end to end, IP stacks started setting the 'Don't Fragment' bit in the IP header. This instructs routers to throw away the packet if it is too big when it gets there.
    When the packet gets thrown away due to it being too large, the router that throws it away also sends an ICMP packet (an IP diagnostics message) back to the sender telling it what the MTU is of the interface that couldn't take the packet. The sender can then re-calculate things based on that value and resend.
    This works great EXCEPT when there are firewalls in the way (or broken routers, which is less likely these days). Many firewalls will not allow these ICMP messages to go back to the sender. Therefore, your host never receives the message that it is supposed to reduce the size of the packet and keeps trying and trying for about 15 minutes until it finally dies.
    This is one reason why you may be seeing long hangs that ultimately end in termination of your connection.
    RFC2923 goes into some options to work past this issue.
    One way that this can be done, Windows Vista for instance does this, is for the system to keep an eye on how many max sized packets get retransmitted. After a certain number (lets say 5), the system assumes that it is not getting this ICMP notification and cuts the size of that packet in half so it can now get the data through - assuming that smaller packets are better than no packets getting sent.
    It may also (and does with Vista) temporarily disable the setting of the 'Don't Fragment' bit and allow the routers to just take care of things. So in Vista, you'll see the page stutter for a second, and then continue to load, where an OS X system will sit there and hang for 15 minutes.
    This is where OS X goes wrong. This behavior is called PMTU-D Black Hole Detection and does not appear to be in the IP stack for Leopard (and probably not previous releases).
    So what can you do.
    You have a few options, some of which I've already provided to a few folks (although without the mathematics so it's just a rough guess value).
    First, you can just disable PMTU-D. The command to do this is:
    sudo sysctl -w net.inet.tcp.pathmtudiscovery=0
    This is a 'quick fix' but does eliminate the benefits that PMTU-D provides.
    Second, you can calculate out what size MTU seems to work for you by working backwards and configure that on something within your control.
    If your home router supports it, that's a good place to reduce the MTU since it only comes into play when you're using your Internet connection and not when hosts within the same network talk to each other. So if you place the MTU of 1472 on your router and your host sends it a 1500 byte packet, it will send back the ICMP message telling you to reduce it down to 1472.
    If your router doesn't support it, you can reduce the MTU on your macs physical interface. This isn't always the best solution since you really should then reduce the MTU on each of your local systems or you could run into issues locally.
    The command to do this is:
    sudo ifconfig en1 mtu 1472
    To make this permanent for Ethernet, set it in the Network settings. For Airport, search the forums. I provided an update you can make to one of the preferences files manually to do this (don't remember what file right now).
    I have found a couple of sites (Washington Mutual's website for instance) that appear to have configuration issues internal to their network in which a device behind a firewall (possibly the web server, load balancer, or IPSec added) that may have an MTU less than 1500 set on it AND a firewall blocking ICMP packets from coming back. These sites will throw off your math since you can no longer assume a max size of 1500 for IP packets. In this specific case, you have to assume 1480.
    Third, you can adjust the MSS setting (Max Segment Size) in the kernel to a value that is 20 bytes smaller than what you would otherwise set the MTU to. This ensures that the TCP stack doesn't put more than that amount of data in any single packet (therefore, eliminating the MTU issue), however, this will not work for UDP.
    Finally, you can submit a bug report to let Apple know that PMTU-D Black Hole detection is something that we need.
    So what kind of impact does this have on performance?
    This will depend on what solution you choose, what the performance of your home router is, and the load on the various servers that have to potentially re-assemble the packets.
    That said, knocking things all the way down to 1400 bytes, I am able to still get at least 15 Mbps up and down stream over the Internet.
    If you have any questions on this post, please post and i'll do my best to respond. Hopefully this will help one more person resolve their performance issues with Leopard.

    Hi Karsten and thanks for the suggestion!
    I have exempted internal networks and can connect them via the VPN connection. I also got connectivity to the outside world with nat (outside,outside) and 'same-security-traffic permit intra-interface'.
    A question remains though. At the moment, all traffic gets out of the network through the 'outside' interface IP (.22). I'd rather use a dedicated address from the /29 on GigabitEthernet0/0. Is this possible to achieve that? To put it differently, I'd like to NAT the VPN range onto an address that is not the 'outside' interface, like I did in this statement, for instance:
    nat (v200,outside) source dynamic v200_private v200_public
    My other question is, whether the single NAT statement [nat (outside,outside) dynamic interface] is sufficient for VPN traffic and whether the original statement can be removed [nat (vpn,outside) source dynamic vpn_pool vpn_public].
    Thanks once again for the tips!
    R.

  • Inaccessible items - builder's black holes

    Hi folks,
    There are places in this splendid product where you just can't get what you need. The HTMLDB app itself has reports with a arbitrary maximum rows and no pagination. Hmm.
    So:
    1 - if you use a lot of app-level items (as I do, it's a non-trivial app), you cannot see them all in the Session popup. You CAN sort, so you can see the first few and the last few BUT you can't see the ones in the middle.
    2 - you can create a stacked bar chart with many series, BUT the Chart Series report region (page 232 of app 4000) only shows 15 rows. Without noticing this problem, I created a chart (which works fine) with 20 series, and I now need to modify series 16 - and I CAN'T!
    I can live with problem 1, but I don't see a workaround to problem 2 (other than hand-editing an export - v. dodgy).
    Please tell me that these whoopsies will be removed in the next release, and more pressingly, tell me if there's anything I can do about problem 2.
    Many thanks
    John D

    Sergio,
    Pleased to hear of the Metalink proposal.
    I can't really import my app - it's dependent on 4000+ database objects.
    To investigate the 'inaccessible' global items problem, try creating an app with (say) 100 application level items. Run a page and pop up the Session window and you'll see what I mean.
    It strikes me that good design principles for any app (the Builder included) would be:
    - except where there's a specific reason why not, all columns of any multi-row report region should be sortable;
    - except where there's a specific reason why not, any multi-row report region should be controlled by a Number Of Rows Item;
    - except where there's a specific reason why not, any multi-row report region should have either a pagination scheme (preferred) or MaxRowCount set to an improbably large number;
    Applying these principles to the Builder app would obviate the 'black hole' problem. Maybe they'll be applied in 2.0?
    As you'll know from previous posts I think HTMLDB is excellent. A few more tweaks (see below) and I'll run out of adjectives.
    Thanks,
    John
    Yet more wonderful:
    - renumber a page, with changes cascaded through all references (tricky I agree, but feasible)
    - copy a region AND its items from App A1 Page P1 to App A2 Page P2
    - define multiple application-level date-picker formats
    - define re-useable tree templates
    - define tree queries with normal SQL: i.e. START WITH <prior> IS NULL. At the moment, an HTMLDB tree needs a singe root node, but SQL doesn't demand this and it's not real-world, so I have to create views to introduce a dummy root node.
    - drag and drop on tree nodes built in to tree functionality
    - define the button to be used for a File Browse item
    - enable multiple file selections with a single File Browse item
    - define a default template for Form items which applies itself by default to ALL form items
    - application-wide search (and maybe replace, even) of LOWER(<string>)
    - ... er, can't think right now...

  • Send postmaster mails to BLACK HOLE

    Hi,
    Is there anyway I can send postmaster mails to black hole ( /dev/null )
    I know that people will ask why I want to send postmaster mails to /dev/null. But this is the requirement.
    Cheers
    Rakesh Malik

    Why not just turm 'em off?
    add keywords like
    nocopypost
    nowarnpost
    to your defaults config line in imta.cnf
    compile config
    restart mta

  • VIMEO share has inexplicable "black holes" (missing video)

    Anyone else have this problem:
    I just finished a simple project. The project had no abnormal video (no funky formats, I've used this type of footage before, and it was all optimized) and there were no hitches during editing or playback. (And it's not a large project--just under 2 mins.)
    Then, I shared a project (to my desktop) following some Vimeo specs that I created.
    Just before posting to Vimeo, I did a quality check and  layed back the compressed file and... a (:04) black hole randomly appeared at one point in the piece. One entire shot. I went back to the video in the timeline and isolated it. Nothing seemed strange as I played it, nor in the inspector. (And it was not unlike ANY other shot in the timeline, same codec, etc...
    I shared the project again. (Again to my Vimeo specs.)
    THIS TIME... the original "hole" was gone, but another appeared toward the end of the piece. Again, I went back to my timeline to look at the missing shot... and, once again, it was fine.
    I shared the project a THIRD time via my "Vimeo specs," and... that SECOND hole had healed itself, but  a black hole appeard in the original location of my first attempt at sharing.
    Agh!
    So, I just did a full-rez (Master file-defalut) share of the project... and IT'S FINE! No holes. So, I completed a two-stage proces to compress THAT file for Vimeo. And all is well.
    So, it seems, the hitches (black holes) appear when I go to share straight from my timeline to a compressed file.
    Has anyone else had this phenonmenon?
    Has anyone found an answer?

    how about if you just export to quicktime movie locally? Do you see the black frame then? You can also export to quicktime and select h264 as the output format, then you should be able to upload that file to vimeo. Extra step but the share to vimeo might be buggy.
    Another thing to try is to delete all your render files (both event and project). Let things re-render and try the share to vimeo again.

  • Disappear EAR File (black hole ?)

    Apparently, there was a black hole in the JDeveloper.
    We have done:
    application->application properties menu.
    Navigate to the deploy section and create a new deployment profile -
    define the list of files that will be included and other aspects of application.
    using one of the Fusion or Java EE application template
    1. Click "Application" -> Deploy -> "default deploy selection for your app"
    2. Select "Deploy to Ear" -> Finish
    In the EAR Deployment Profile Property
    C:\user\Jdeveloper|WebApp\deploy\appEAR.ear
    But the deploy folder does not exist.
    If you know how to see the EAR File, please educate us.
    Thanks in advance,

    Thank Shay Shmeltzer:::
    [03:35:58 PM] ----  Deployment started.  ----
    [03:35:58 PM] Target platform is  (Weblogic 10.3).
    [03:36:00 PM] Retrieving existing application information
    [03:36:00 PM] Running dependency analysis...
    [03:36:00 PM] Deploying 2 profiles...
    [03:36:00 PM] Wrote Web Application Module to C:\Users\usr\AppData\Roaming\JDeveloper\system11.1.2.2.39.61.83.1\o.j2ee\drs\CWK111\111ClientWebApp.war
    [03:36:00 PM] Wrote Enterprise Application Module to C:\Users\usr\AppData\Roaming\JDeveloper\system11.1.2.2.39.61.83.1\o.j2ee\drs\CWK111
    [03:36:00 PM] Deploying Application...
    [03:36:01 PM] Application Deployed Successfully.
    [03:36:01 PM] The following URL context root(s) were defined and can be used as a starting point to test your application:
    [03:36:01 PM] http://171.20.6.65:7101/CWK111-111Client-context-root
    [03:36:01 PM] Elapsed time for deployment:  4 seconds
    [03:36:01 PM] ----  Deployment finished.  ----
    Run startup time: 3666 ms.
    [Application CWK111 deployed to Server Instance IntegratedWebLogicServer]
    Target URL -- http://171.20.6.65:7101/CWK111-111Client-context-root/cwk1.jsp
    [5400:4968:0613/153602:ERROR:connection.cc(733)] sqlite error 19, errno -2: PRIMARY KEY must be unique
    [5400:3224:0613/153603:ERROR:external_registry_loader_win.cc(90)] Missing value path for key Software\Google\Chrome\Extensions\jfmjfhklogoienhpfnppmbcbjfjnkonk.
    [5400:2964:0613/153607:ERROR:textfield.h(162)] NOT IMPLEMENTED
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ End ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    How to correct the error, Shay Shmeltzer?

  • Newsstand: another black hole

    Start with a virgin newsstand, tap the screen or store, go to a selection of possible newspapers and journals. Pick one out, get it. Click the home button to leave the newspaper and newsstand. Click newsstand again, your newspaper is in the stand but you want to get another one. Forget it, when you click store, the store is in the background dimmed and in the middle of the screen is a square picture of the newspaper you've already got and the only thing you can do is open that. Black hole, you cannot get out of this loop. All you can do is close ipad down completely and start up again.
    Cheers, Bob

    Start with a virgin newsstand, tap the screen or store, go to a selection of possible newspapers and journals. Pick one out, get it. Click the home button to leave the newspaper and newsstand. Click newsstand again, your newspaper is in the stand but you want to get another one. Forget it, when you click store, the store is in the background dimmed and in the middle of the screen is a square picture of the newspaper you've already got and the only thing you can do is open that. Black hole, you cannot get out of this loop. All you can do is close ipad down completely and start up again.
    Cheers, Bob

  • Policy routing and black hole filtering on 6500

    I have a 6500 with many SVIs configured and every one with multiple ip addresses. The users are accessing the network through these SVIs. For access control I use the black hole filtering method by dinamically injecting static routes to Null 0 for every user that is not authenticated.
    But I need these users to reach one server to authenticate.
    Is there a way to do this besides putting the server inside every VLAN ? Something like policy routing all the packets to the server to exit the server interface and the response packets to reach the user bypassing the global routing table ? Maybe using a vrf for the server only ?
    Thanx.

    Dave Northampton UK here.
    We seem to have different consumer laws to US it seems?
    Here the RETAILER is wholly responsible for the goods he sells. If such a case as this arose there would be NO time limit of 15 days, if the goods were found not to be of "merchantable quality" the time factor would not matter, certainly up to a year!
    Certainly a retailer can take matters up with their supplier/manfctr but the CUSTOMER must get a new, working product PDQ or a total refund..IN CASH or put on a card, no credit notes or any other such swaddling!
    Of course! Many shops wriggle and tell people porkies but in the end that is da law!
    Dave.

  • Black hole and BOTNET filter ?

    Hi all,
    I have a query regarding black hole and botnet.
    My customer tends to receive traffic which is not destining to anywhere.  He wants to achieve the following. He wants to capture the traffic per SPAN and then direct them to a firewall on the inside interface and then apply botnet filter. He has a catalyst where some VRF are defined. One of the VRF is named as "SOME-VRF-BHOLE” This VRF will be mirrored to a other port and this traffic will sent so the inside interface of a firewall where Botnet feature is active.
    My first question, is this doable, I mean if the traffic is black holed then the first thing which will happen by the ASA is to drop the traffic as it gets traffic destine to nowhere, if it’s a SYN/ACK then the ASA will drop the packet due to spoofing. So in other words there should be a flowing traffic which goes through the ASA to be able to apply the botnet filter. Or could someone confirm this mothered my customer has explained could be done at all.
    Thanks in advance
    Lance

    Hello Lance,
    I answered a query like this I think 2 days ago...
    So you want to filter traffic via the botnet feature ( you will need to make sure the ASA has access to the internet ofcourse so it can contact the Security Intelligence Servers )
    The ASA will drop the packets if they are spoofed and you have  the RPF check on.
    If the traffic goes to nowhere the ASA ofcourse will drop it ( No route to host x.x.x.x)
    And if we receive a SYN-ACK where there has not been a SYN, traffic will be drop due to the TCP inspection failure (unless u configure a TCP state bypass)
    Julio
    Remember to rate all of the helpful posts.
    For this community that's as important as a thanks.

  • Reactivation Black Hole

    You are now entering the reactivation black hole! Have spent the last 6 weeks trying to get my case resolved with no success.
    Summary
    1. Reactivation for Master Collection CS3 prompted reactivation. Reactivation failed. Called support and still failed with them as well.
    2. Sat on hold for 5 hours again and was told to de-install.
    3. De-install did not work and used cleaner at level 4 which allowed me to re-enter the serial number but also removed Acrobat professional and Director 11.5. Have also Production Premium on a second system as well. New activation only allows me to enter Production Premium serial with a check mark and not Master Collection which shows and X.
    4. Oh wait, where are the download installs for CS3. No longer available depending on when you purchased them.
    5. Running only a few programs with Production preium serial as Master Collection serial is not recognized and does not work even though it is in my registed history with Adobe.
    6. I never asked to go through this reactivation process and was happy with CS3 till software stopped working and was forced to enter the black hole.
    7. From what I can tell there is no resolution possible here.
    8. Guess the only way out is to find a crack that will bypass this mess Adobe has created since they are unable to resolve this after 6 weeks and many hours on my part installing and reinstalling only some of the installs as not all are still available for CS3. I only use fully purchased software, however if this is the only way out is to crack it, well that is it, I give up.

    Hello Lance,
    I answered a query like this I think 2 days ago...
    So you want to filter traffic via the botnet feature ( you will need to make sure the ASA has access to the internet ofcourse so it can contact the Security Intelligence Servers )
    The ASA will drop the packets if they are spoofed and you have  the RPF check on.
    If the traffic goes to nowhere the ASA ofcourse will drop it ( No route to host x.x.x.x)
    And if we receive a SYN-ACK where there has not been a SYN, traffic will be drop due to the TCP inspection failure (unless u configure a TCP state bypass)
    Julio
    Remember to rate all of the helpful posts.
    For this community that's as important as a thanks.

  • Will we get The Black Hole soundtrack that is on the US Itunes in the UK???

    As usual the UK version of Itunes is way behind the US one. They seem to have a far better database of film music than the UK one. Will we be getting the Black Hole soundtrack that has recently been posted on the US store?

    Sorry, but we're all just your fellow users here and have no way of knowing what may or may not appear in an given country's iTunes Store. You can submit suggestions for the iTunes Music Store through the feedback page (make sure you clearly specify which country's iTunes Store you're referring to). Whether or not your suggestion will ever be acted upon will depend on a number of factors, some out of Apple's control (to start with, the artists and record companies have to be willing to license the tracks to Apple for your country), so don't expect instant action.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Discussions page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums, in the User Tips Library and in the Apple Knowledge Base before you post a question.
    Regards.

  • Native VLAN and the "Black Hole"

    While reviewing the configuration of a network that I'm supporting, it seems that the original design of the network has the black hole VLAN as the native VLAN.  At the least this seems incorrect, and possibly very dangerous, but I'm not exactly sure why or how to articulate that.  Can someone confirm or deny this suspicion?
    In addition, I had two further questions regarding the practice of using a black hole VLAN:
    1.  If you have any unused ports, it seems more practical to just admin down these ports instead of creating an unused VLAN.  Is there some added advantage to ALSO putting these ports in an unused VLAN (e.g. 999)?  If the port was needed, you can simply admin up the port, during which time you could also change any needed VLAN configurations.  In other words, you'd have to log into the device and make changes whether you went with the admin down method, the Black Hole VLAN method, or both.  So what's the point?
    2. Assuming you do use the Black Hole VLAN as an added security method, I feel that including that VLAN in the "switchport trunk allowed vlan" command is counterproductive, but I'm not fully able to articulate why.  Can someone help me with this?
    Thanks for any information or suggestions that you may have.

    Assuming you mean a vlan for unused ports when you refer to a black hole vlan. If so the key things are  -
    a) that vlan does not have a L3 vlan interface (SVI) for it as there is no need to route it
    b) any unused ports are shutdown
    if you follow the above then I can't see the danger in using the native vlan but I wouldn't do it regardless of that. I would have a dedicated native vlan and a separate vlan for unused ports.
    To  my mind there should be no ports allocated to the native vlan (other than trunk ports obviously).
    The benefit of using a dedicated vlan for unused ports is -
    a)  it provides an additional level of security. People make mistakes and having to do multiple things to enable a port requires more attention than simply doing a "no shut" on the interface.
    The more attention someone is paying the more likely they will get it right or at least the less likely they will make a mistake.
    b) if you don't use an unused vlan you are leaving all the ports in the default vlan which is vlan 1 and this should be avoided as this vlan is overused already eg. switch control plane traffic is sent on this vlan for example and often the switch management interfaces are in this vlan.
    As far as allowing the unused vlan on trunk links it is totally unnecessary and in fact you really don't want to do that. The idea of the unused vlan is for non communication so it would make no sense to allow it on trunk links.
    In my last place of work we used vlan 998 as the unused vlan and vlan 999 as the native vlan.
    Neither had an SVI for it.
    If by black hole vlan you meant something else then please clarify.
    Jon

  • HD Black hole

    I have an 80 GB Hard Drive that is telling me that there is only 3+ GB of space left. However I've added all the numbers and I am only using about 25 GB. I saw a couple other topics close to my problem so I've checked the drive with Whatsize? and Omni Disk Sweeper and they both identify only 25+ GBs in use. I've redone permissions and verified the disk with the Disk Utility and it tells me that everything check out but I still can't get to my 50 Gs
    My suspicion was that Virtual PC had allocated space and indeed it would make sense with the allocation and the number of "machines" I had but I uninstalled Virtual PC and I still can't access the space. I was never able to see the VPC "drives" so I have no idea if that is actually the case. Can anyone help me out on this one. I've tried everything I know with the exception of reformatting the disk. Obviously I don't want to do that - I don't have an external drive so I would need to reload everything. Can someone help?

    Thanks for the welcome Duane and thanks for the suggestion. I've tried both Whatsize and Omni DiskSweeper and neither one identify the missing space. They both tell me that I have a 74+ Gig HD, they show 24+ Gigs of files etc. and they both tell me that I have 3.97 Gigs of open space. There is no indication at all of the missing 50 GB.
    Any other suggestions I am game to try. It really is like a black hole because there is no indication anywhere of where the missing area is. I am wondering two things:
    1. is there something that gives a visual mapping of the hard drive that may give an indication of what is happening to this space and
    2. can I plug a PC into say a USB port to access the hard Drive and see if the PC recognizes anything since I suspect it is a PC allocation? Any thoughts?
    Thanks for your help

  • I purchased songs via my ipod touch.  when I sync'd my ipod touch with my computer, the songs I purchased disappeared into a black hole... how do I get them back without having to repurchase?

    i purchased songs via my ipod touch.  when I sync'd my ipod touch with my computer, the songs I purchased disappeared into a black hole... how do I get them back without having to repurchase? 

    On your iPod Touch, open the iTunes app. There should be tab named "purchased", which shows all your purchase history. Choose the "Not on this iPod" tab and you'll get a list of purchased products that are not on your device. Hope this helped.

Maybe you are looking for

  • Output Device Used in Outputs

    Dear SAPers, I have the following question / issue. I don´t know how the system takes the printer from the output device set in the output condition record. Does anyone know why this happens? When I print something the printer is taken from the defau

  • Need to turn off iCloud to reset passcode

    Please help. my son put a passcode afte the last update and it includes I can't reset passcode due to that I have to turn off find my phone on my ipad.  I have read lots of stuff but its not working.

  • Update Purchase Order

    Hi, When we try to update any Purchase Order there is an error message... Invalid object name SBO-AO-Common..TMFPConfigLog Any Ideas? Thanks. Regards.

  • Registration email confirmation not received

    I purchased AppleWorks 6.2.9 on October 7/06. I have tried registering it three times since then. I get a message on the Apple website thanking me for registering and saying I will get a confirmation email, but I never get the confirmation email. I p

  • Unable to move app downloaded on my pc to iPad using iTunes!

    Hi, I downloaded FIFA 14 app using iTunes in my PC. But I'm unable to transfer the .app file onto my iPad! Please help me how to move the app from mypc to ipad?