Unstable Link on SF100D-05

Hi!
We considered using the SF100D-05 Switches in small offices with an insufficient amount of network jacks. However, it appears that this switch-series is faulty. In the combination of new MSI-mainboards with Realtek network chipset, the link to the client is extremely unstable. I am not talking about one computer on one switch. The Problem occurs on every SF100D-switch with every new computer equipped with the aforementioned mainboard on our campus. Older computers or mainboards from other vendors are not affected. Also, any other low-price desktop-switch we use (Digitus, LevelOne, etc.) is working fine while the SF100D induces link-flaps on the mentioned machines.
The problem in detail:
Connecting a new, freshly installed, computer (with MSI-mainboard and Realtek network chipset) with the switch. The Link comes up and the computer has access to the network. After approx. 30-60 sec. the link gets down. (both link LEDs go off and the networkconnection is offline) After another 1-2 sec. the Link comes up again and network is working fine till the next 30-60 sec. Then the problem repeats.
The time between two link-downs decreases with higher network traffic. While downloading large amounts of data the link-down interval is reduced to 5-10 sec.
Setting the computers NIC to 100 Mbps full-duplex instead of Auto has no effect on the problem.
We tested the scenario with different
- switchports
- wires
- computers
- electric circuits
- offices
The behaviour is not identical to
https://supportforums.cisco.com/message/3143262
The Problem occurs on NICs with the following MAC-OUIs
D4:3D:7E
8C:89:A5
Here are some serial-number-ranges of our switches (SF100D-05 V02):
PSZ163902**
PSZ164305**
Has anyone observed similar problems?

Dear Customer,
Thank you for reaching Small Business Support Community.
It is a very interesting and very well described and troubleshooted issue, very good and time consuming job you have done here! and since I have found no similar cases, documented software bugs and not even a firmware upgrade I can suggest, my only recommendation is to contact the Small Business Support Center to see if they have any idea in how to overcome this issue which in my opinion is a compatibility problem;
  https://www.cisco.com/en/US/support/tsd_cisco_small_business_support_center_contacts.html
Unfortunately I am not able to reproduce your case scenario but please do not hesitate to reach me back if there is anything I may assist you with in the meantime.
Kind regards,
Jeffrey Rodriguez S. .:|:.:|:.
Cisco Customer Support Engineer
*Please rate the Post so other will know when an answer has been found.

Similar Messages

  • How to monitor the quality of WAN link?

    Dear All,
    I have a basic problem; my remote site has unstable link so the VoIP system can't work well.
    Do you have any way to monitor the quality of WAN link:
    How to track  the paths that packets travel from source to destination? (each packet has different path to reach the same destination)
    How to track the sequence of packet? (tcp/udp packets reach the destination with the wrong sequence)
    Thanks You very much for helping me!

    Disclaimer
    The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.
    Liability Disclaimer
    In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.
    Posting
    As the other posters have noted, IP SLA is an excellent feature for doing all kinds of quality monitoring.  However, besides finding a tool that can "nicely" report on SLA stats, you'll probably want one that can also define the SLA tests too.  (Unfortunately, I don't have a recommendation for such a tool.)
    BTW, if different packets are taking different paths and/or often arriving out of sequence, you probably have some device with multiple egress paths doing packet-by-packet load balancing, which can cause all kinds of performance issues.  You might also be able to find that device by using a simple traceroute.  Look for hops with multiple paths.

  • Problem with local mirror syncing

    Hi mens! And sorry, my English is bad.
    I rewrite script from here for syncing mirror for my local network.
    That's what happened http://ix.io/1aK or http://paste.pocoo.org/raw/263591/ or permanent http://ix.io/user/atommixz
    It support http (maybe ftp?) mirroring other repos. Using lftp for it.
    #!/bin/bash
    # The script to sync a local mirror of the Arch Linux repositories and ISOs
    # Copyright (C) 2007 Woody Gilk <[email protected]>
    # Modifications by Dale Blount <[email protected]>
    # and Roman Kyrylych <[email protected]>
    # and Vadim Gamov <[email protected]>
    # and Aleksey Frolov <[email protected]>
    # Licensed under the GNU GPL (version 2)
    USECOLOR=yes
    . /etc/rc.d/functions
    # Filesystem locations for the sync operations
    SYNC_HOME="/home/mirror"
    SYNC_LOGS="$SYNC_HOME/logs"
    SYNC_FILES="$SYNC_HOME/files"
    SYNC_LOCK="$SYNC_HOME/mirrorsync.lck"
    SYNC_REPO=(core extra community multilib iso archlinuxfr catalyst)
    #SYNC_REPO=(archlinuxfr catalyst)
    typeset -A REPO_URL
    REPO_URL=(
    [archlinuxfr]='http://repo.archlinux.fr/x86_64'
    [catalyst]='http://catalyst.apocalypsus.net/repo/catalyst/x86_64'
    #SYNC_SERVER=distro.ibiblio.org::distros/archlinux
    SYNC_SERVER=mirror.yandex.ru::archlinux
    RATE_LIMIT=50 # in kb/s
    TIME_OUT=5 # in sec
    # Set the format of the log file name
    # This example will output something like this: sync_20070201-8.log
    #LOG_FILE="pkgsync_$(date +%Y%m%d-%H).log"
    LOG_FILE="pkgsync_$(date +%Y%m%d).log"
    #Watchdog part (time in seconds of uninterruptable work of script)
    # Needed for low-speed and/or unstable links to prevent
    # rsync hunging up.
    # New instance of script checks for timeout, if it occurs
    # it'll kill previous instance, in elsecase it'll exit without
    # any work.
    WD_TIMEOUT=10800
    # Do not edit the following lines, they protect the sync from running more than
    # one instance at a time
    if [ ! -d $SYNC_HOME ]; then
    printhl "$SYNC_HOME does not exist, please create it, then run this script again."
    exit 1
    fi
    if [ -f $SYNC_LOCK ];then
    OPID=`head -n1 $SYNC_LOCK`;
    TIMEOUT=`head -n2 $SYNC_LOCK|tail -n1`;
    NOW=`date +%s`;
    if [ "$NOW" -ge "$TIMEOUT" ];then
    kill -9 $OPID;
    fi
    MYNAME=`basename $0`;
    TESTPID=`ps -p $OPID|grep $OPID|grep $MYNAME`;
    if [ "$TESTPID" != "" ];then
    printhl "exit";
    exit 1;
    else
    rm $SYNC_LOCK;
    fi
    fi
    echo $$ > "$SYNC_LOCK"
    echo `expr \`date +%s\` + $WD_TIMEOUT` >> "$SYNC_LOCK"
    # End of non-editable lines
    # Create the log file and insert a timestamp
    touch "$SYNC_LOGS/$LOG_FILE"
    printhl "Starting sync on $(date --rfc-3339=seconds)" | tee -a "$SYNC_LOGS/$LOG_FILE"
    for repo in ${SYNC_REPO[@]}; do
    repo=$(echo $repo | tr [:upper:] [:lower:])
    printhl "Syncing $repo" | tee -a "$SYNC_LOGS/$LOG_FILE"
    NEXT=false
    for i in ${!REPO_URL[*]}; do
    if [ $i = $repo ]; then
    mkdir -p "$SYNC_FILES/$repo"
    cd "$SYNC_FILES/$repo"
    lftp -c "\
    set xfer:log no; \
    set net:limit-rate $[RATE_LIMIT * 1000]; \
    mirror \
    --delete \
    --only-newer \
    --verbose=3 \
    ${REPO_URL[$repo]}" | tee -a "$SYNC_LOGS/$LOG_FILE"
    date --rfc-3339=seconds > "$SYNC_FILES/$repo.lastsync"
    NEXT=true
    #sleep $TIME_OUT
    fi
    done
    if $NEXT; then continue; fi
    rsync -rtvHh \
    --bwlimit=$RATE_LIMIT \
    --no-motd \
    --delete-after \
    --delete-excluded \
    --prune-empty-dirs \
    --delay-updates \
    --copy-links \
    --perms \
    --include="*/" \
    --include="latest/*x86_64.iso" \
    --include="latest/*sum*.txt" \
    --include="archboot/latest/*.iso" \
    --include="os/x86_64/*" \
    --exclude="*" \
    $SYNC_SERVER/$repo "$SYNC_FILES" | tee -a "$SYNC_LOGS/$LOG_FILE"
    # Create $repo.lastsync file with timestamp like "2007-05-02 03:41:08+03:00"
    # which may be useful for users to know when the repository was last updated
    date --rfc-3339=seconds > "$SYNC_FILES/$repo.lastsync"
    # Sleep 5 seconds after each repository to avoid too many concurrent connections
    # to rsync server if the TCP connection does not close in a timely manner
    sleep $TIME_OUT
    done
    # Insert another timestamp and close the log file
    printhl "Finished sync on $(date --rfc-3339=seconds)" | tee -a "$SYNC_LOGS/$LOG_FILE"
    printsep >> "$SYNC_LOGS/$LOG_FILE"
    # Remove the lock file and exit
    rm -f "$SYNC_LOCK"
    unset REPO_URL
    exit 0
    But I'm have problem. If I'm run
    sudo pacman -Syu
    on my server, it's fine work.
    [atommixz@fileserver ~]$ date; sudo pacman -Syu; echo "------"; date; sudo pacman -Syu
    Сбт Сен 18 19:55:47 MSD 2010
    :: Синхронизируются базы данных пакетов...
    core 35,7K 14,2M/s 00:00:00 [#############################################################] 100%
    extra 465,9K 189,3M/s 00:00:00 [#############################################################] 100%
    community 383,1K 198,6M/s 00:00:00 [#############################################################] 100%
    archlinuxfr не устарел
    :: Запускается полное обновление системы...
    нечего выполнять
    [atommixz@fileserver ~]$ date; sudo pacman -Syu
    Сбт Сен 18 19:55:48 MSD 2010
    :: Синхронизируются базы данных пакетов...
    core не устарел
    extra не устарел
    community не устарел
    archlinuxfr не устарел
    :: Запускается полное обновление системы...
    нечего выполнять
    But if I'm try it on my desktop, it work wrong. Always reget base. But it is updated properly.
    [atommixz@relentless ~]$ date; sudo pacman -Syu; echo "------"; date; sudo pacman -Syu
    Сбт Сен 18 19:58:42 MSD 2010
    :: Синхронизируются базы данных пакетов...
    core 35,7K 34,0M/s 00:00:00 [#############################################################] 100%
    extra 465,9K 58,7M/s 00:00:00 [#############################################################] 100%
    community 383,1K 57,9M/s 00:00:00 [#############################################################] 100%
    multilib 19,3K 34,7M/s 00:00:00 [#############################################################] 100%
    archlinuxfr 18,6K 42,6M/s 00:00:00 [#############################################################] 100%
    catalyst 2,2K 67,7M/s 00:00:00 [#############################################################] 100%
    :: Запускается полное обновление системы...
    нечего выполнять
    Сбт Сен 18 19:58:43 MSD 2010
    :: Синхронизируются базы данных пакетов...
    core 35,7K 34,0M/s 00:00:00 [#############################################################] 100%
    extra 465,9K 58,7M/s 00:00:00 [#############################################################] 100%
    community 383,1K 64,8M/s 00:00:00 [#############################################################] 100%
    multilib 19,3K 48,9M/s 00:00:00 [#############################################################] 100%
    archlinuxfr 18,6K 38,9M/s 00:00:00 [#############################################################] 100%
    catalyst 2,2K 55,5M/s 00:00:00 [#############################################################] 100%
    :: Запускается полное обновление системы...
    нечего выполнять
    What am I doing wrong?

    I'm not sure, but your script may be too old.  That is, it may no longer work.
    I believe that creating a local mirror is discouraged due to the high bandwidth needed to do that.
    Perhaps you could try this instead.

  • CISCO876 multiple atm connections problem

    I am having BIG problem! We are testing hub & spoke configuration
    CISCO876>>ALCATEL DSL SYSTEM<<CISCO876
    HUB SPOKE
    2 vlans 2 vlans
    One VLan should be used for VIDEO traffic and another for VPN! Current
    configuration is behaving very unstable, links are going down every 5
    min and connection between HUB and SPOKE is not WROKING unfortunaly?! :
    Can some give me clue what to do next?
    Here is the configs:
    Building configuration...
    Current configuration : 1592 bytes
    version 12.4
    no service pad
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname BUNDLE
    boot-start-marker
    boot-end-marker
    enable password pass
    no aaa new-model
    resource policy
    ip cef
    interface BRI0
    no ip address
    encapsulation hdlc
    shutdown
    interface ATM0
    no ip address
    atm ilmi-keepalive 5 retry 5
    dsl operating-mode auto
    hold-queue 224 in
    interface ATM0.1 point-to-point
    description Subinterface for ViSS
    ip address 192.168.1.2 255.255.255.252
    ip virtual-reassembly
    no snmp trap link-status
    atm route-bridged ip
    pvc 1/32
    interface ATM0.2 point-to-point
    description Subinterface for LSVPN
    ip address 192.168.2.2 255.255.255.252
    ip virtual-reassembly
    no snmp trap link-status
    atm route-bridged ip
    pvc 0/35
    interface FastEthernet0
    interface FastEthernet1
    interface FastEthernet2
    description ViSS port
    switchport access vlan 10
    interface FastEthernet3
    description LSVPN port
    switchport access vlan 20
    interface Vlan1
    no ip address
    interface Vlan10
    description LAN for ViSS
    ip address 10.10.1.1 255.255.255.0
    interface Vlan20
    description LAN for LSVPN
    ip address 10.10.2.1 255.255.255.0
    ip route 10.10.1.0 255.255.255.0 ATM0.1
    ip route 10.10.2.0 255.255.255.0 ATM0.2
    no ip http server
    no ip http secure-server
    control-plane
    line con 0
    no modem enable
    line aux 0
    line vty 0 4
    password pass
    login
    scheduler max-task-time 5000
    webvpn context Default_context
    ssl authenticate verify all
    no inservice
    end
    HUB CONF :
    Building configuration...
    Current configuration : 1592 bytes
    version 12.4
    no service pad
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname BUNDLE
    boot-start-marker
    boot-end-marker
    enable password pass
    no aaa new-model
    resource policy
    ip cef
    interface BRI0
    no ip address
    encapsulation hdlc
    shutdown
    interface ATM0
    no ip address
    atm ilmi-keepalive 5 retry 5
    dsl operating-mode auto
    hold-queue 224 in
    interface ATM0.1 point-to-point
    description Subinterface for ViSS
    ip address 192.168.3.2 255.255.255.252
    ip virtual-reassembly
    no snmp trap link-status
    atm route-bridged ip
    pvc 1/32
    interface ATM0.2 point-to-point
    description Subinterface for LSVPN
    ip address 192.168.4.2 255.255.255.252
    ip virtual-reassembly
    no snmp trap link-status
    atm route-bridged ip
    pvc 0/35
    interface FastEthernet0
    interface FastEthernet1
    interface FastEthernet2
    description ViSS port
    switchport access vlan 10
    interface FastEthernet3
    description LSVPN port
    switchport access vlan 20
    interface Vlan1
    no ip address
    interface Vlan10
    description LAN for ViSS
    ip address 10.10.3.1 255.255.255.0
    interface Vlan20
    description LAN for LSVPN
    ip address 10.10.4.1 255.255.255.0
    ip route 10.10.3.0 255.255.255.0 ATM0.1
    ip route 10.10.4.0 255.255.255.0 ATM0.2
    no ip http server
    no ip http secure-server
    control-plane
    line con 0
    no modem enable
    line aux 0
    line vty 0 4
    password pass
    login
    scheduler max-task-time 5000
    webvpn context Default_context
    ssl authenticate verify all
    no inservice
    end
    Waiting for replys!

    I am not getting error. I've debugged atm events,ilmi I've not seen any errors. Subinterfaces atm0.1 and atm0.2 are UP UP but one of pings(LSVPN) hub>spoke to the other side is request time out.On the other side spoke>hub same ping(LSVPN) is giving request time out.

  • Maximum ip routes that can be handled by isis and ospf

    Hello All,
    Is there any limitation on the number of ip routes that isis can handle? I was going through one of the documentations which mentioned that the limit is 30K routes. This is due to the max number of fragments ( 256 ) with each containing not more than 121 routes.?
    Do the following commands  help to change this number?
    lsp-mtu
    and clns-mtu
    Has anyone seen any such limitation for OSPF ?
    Regards,
    Shreeram

    Hello Shreeram,
    Hmm Qestion is quit logical, But what can I say is, believe me OSPF can handle lot of routes. It completly depends upon your Routers Processor and Memory.
    In no I can say more than 6000 routes (reference https://supportforums.cisco.com/thread/10496)
    For OSPF not to suffer, we must follow some rules when we make areas, it is because it is a linkstate algorithm, below are the same
    for more information you can browse here
    http://www.ciscopress.com/articles/article.asp?p=1763921&seqNum=6
    Factors Influencing OSPF Scalability
    Scaling is determined by the utilization of three router resources: memory, CPU, and interface bandwidth. The workload that OSPF imposes on a router depends on these factors:
    Number of adjacent neighbors for any one router: OSPF floods all link-state changes to all routers in an area. Routers with many neighbors have the most work to do when link-state changes occur. In general, any one router should have no more than 60 neighbors.
    Number of adjacent routers in an area: OSPF uses a CPU-intensive algorithm. The number of calculations that must be performed given n link-state packets is proportional to n log n. As a result, the larger and more unstable the area, the greater the likelihood for performance problems associated with routing protocol recalculation. Generally, an area should have no more than 50 routers. Areas that suffer with unstable links should be smaller.
    Number of areas supported by any one router: A router must run the link-state algorithm for each link-state change that occurs for every area in which the router resides. Every ABR is in at least two areas (the backbone and one adjacent area). In general, to maximize stability, one router should not be in more than three areas.
    Designated router (DR) selection: In general, the DR and backup designated router (BDR) on a multiaccess link (for example, Ethernet) have the most OSPF work to do. It is a good idea to select routers that are not already heavily loaded with CPU-intensive activities to be the DR and BDR. In addition, it is generally not a good idea to select the same router to be the DR on many multiaccess links simultaneously.
    Please rate the helpful posts
    Regards
    Thanveer
    "Everybody is genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is a stupid."

  • Unstable Inet connection - direct link to download?

    Hello Community,
    does anyone know a direct link to download the Desktop Manager 6.1? I am sitting here in Africa with a quite unstable and slow internet connection (80kbit/s) and having trouble to download it with my Firefox 4. It always breaks up after a couple of MB.
    For other downloads of this size (>20MB) I do use a free download manager who picks up the download after a break. Unfortunately, at the official download page from blackberry there is only this download button and I can't use my download manager. Even when I copy the link adress once the download has started in Firefox and copy it to my DM the size of this download is only a couple of bytes.
    If I knew a direct link to the file I could use my DM and could download the Desktop Software the next couple of days
    I am still using version 5.0.1 which came with my phone on a CD (BB Bold 9700) and I would like to update.
    Thanks for any feedback
    Frank

    Hi and welcome to the forums!
    Here are the manuals for desktop Manager 6.01.
    The program size is file is 114 MB. Can your email handle a file that size?
    Thanks,
    Bifocals
    User Guide - BlackBerry Desktop Software
    6.1
    HTML PDF
    Release Notes - BlackBerry Desktop Software
    6.1
    HTML PDF
    Silent Installation Guide - BlackBerry Desktop Software
    6.1
    HTML PDF
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • News feeds unstable and contacts not linking !

    Well the share option has been resolved in update but now as I log in the news feeds are very unstable, they jump from new posts back to old then when I update back to new! Also I had to uninstall facebook for double scheduling issues and now my contact are not linking with existing contacts, now I have many doubles! Urgh I wish this facebook app would just run properly before I delete the whole account and let facebook know this was a BlackBerry nightmare issue, maybe they will ban them!

    I am at Mavericks (10.9.1), with iPhoto 9.5.1
    I have trouble with the "select a Contact Card picture from Faces" option of Contacts, and for that reason I am looking at older related issues. I had a similar problem like the one described by jllamasaspa:
    Some of the Contacts did not show up in iPhoto when typing a name, although these *names* are in Contacts.
    Solution in my case:
    The Email address of a contact (person) NEEDS to be unique in Contacts (for linking to iPhoto)!
    Example:
    Some of my friends like to share an Email address, for example AnnaAndPeter_at_domain.com.
    If one has two Cards in Contacts, one for Peter and one for Anna, and both Cards contain the Email address, only ONE of them will be offered by iPhoto as a contact (or person) to link to.

  • Unstable After Effects CC with dynamic link

    Hi all,
    I just bought a new iMac for editing etc. (Before the iMac I used my MacBook Pro). Everything works just fine but there is one issue with After Effects CC.
    When I have Premiere Pro CC open in the background and there is a dynamic link sequence in AE. My iMac is taking a long time to load video previews when scrolling through the timeline. Also the RAM Preview will hang after a couple of seconds for 5-10 seconds and than continues. I also noticed that MB Looks will take a long time to load too.
    So is there a conflict between the two applications or is it because of the sharing RAM or graphics card memory? What are the best settings for the Adobe applications for using RAM and graphics?
    System specs:
    iMac 3,5 GHz i7 (Late 2013)
    32 GB RAM
    256 GB flash storage
    NVIDIA GTX 780M 4 GB
    Kind regards,
    Teun

    With the new 12.2 update installed there is no difference. Still very slow playback from PP footage in AE. It takes a long time to load the preview when scrolling through the timeline in AE. I noticed that when I close PP the lag is gone, or when I switch from AE to PPro and back. But then after a few seconds the lag is back when PP is active in the background.
    Any ideas?

  • Mplayer-svn PKGBUILD in [unstable] ----- Source Broken Link

    Wrong Link:
    source=(ftp://ftp.mplayerhq.hu/MPlayer/Skin/Blue-1.7.tar.bz2)
    Right Link
    source=(ftp://ftp.mplayerhq.hu/MPlayer/skins/Blue-1.7.tar.bz2)

    MAC!EK wrote:
    tomk wrote:MAC!EK - every mplayer config option, including directfb, is autodetected, so if it's there, mplayer will use it - if it's not, it won't. That does not mean mplayer depends on them. This PKGBUILD provides a package that is identical to the stock Arch package, apart from functionality that is only available in the newer code, so the options that are specifically enabled are the ones chosen for that package.
    OK but...
    $ sudo pacman -R directfb
    removing directfb... done.
    $ mplayer Batman.wmv
    mplayer: error while loading shared libraries: libdirectfb-0.9.so.24: cannot open shared object file: No such file or directory
    Mayby I didn't understood somethin fro myour post, but this doesn't look like autodetection.
    I guess he meant autodetcted by the configure-script before compiling...

  • Unable to open linked files in new CS3 install

    One of my clients just purchased a new PC (Dell Inspiron 537S) with Windows Vista Home Premium to replace his old Inspiron 530 (also running Vista HP). After installing CS3 Design Studio and attaching an external drive loaded with his file archive, all of his Illustrator files which include links load with the following error:
    "An error occurred trying to read the linked file "file.xxx". Choose Repair to locate the missing file, Replace to select another file or Ignore to leave the link unchanged."
    This shouldn't be unusual, if the path to a linked file has changed, you'd need to point the link to the new path, but clicking Repair or Replace and browsing to the linked file (which invarably is in the same directory as the .ai file, and is usually a .psd which opens just fine in Photoshop) just cycles back to the same error message, ad infinitum. After about 30 tries, I got one of the links to load correctly, resaved the document, thinking that would repair it, but when I opened it again, got the error.
    These files were created on multiple computers, and none of the other computers (all with CS3) have ever had any trouble opening them. This despite the drive letter on the external drive being unstable on the old system (would often be J:, K: or L:, and images always worked).
    Any new .ai files we create on this file which have links all work fine.
    Manually replacing the links in a file is not an option for two reasons:
    1. There are thousands of .ai files in this archive, and re-linking images in them will take weeks.
    2. It simply doesn't work. I tried ignoring the error on one file to load it, and re-linking the .psd backgrounds to re-save it, and the images still didn't load after re-linking them.
    I have already tried doing a factory-restore of the system and reinstalling CS3, making sure that there were no errors in the install. What else might cause this behavior, and how can I resolve it?

    What else might cause this behavior, and how can I resolve it?
    Outdated permissions on the files from your old computer. Right-click, Properties --> Security --> Advanced, disable Inherit settings from parent folders, chose to copy. After that, delete outdated security keys and assign current ones. You may even need to go so fart as to Take Ownership of some files to correctly restore the new system's default security settings.
    Mylenium

  • Studio 12 rather unstable

    ~/src/apps/kmt/clamps> dbx ./clamps
    For information about new features see `help changes'
    To remove this message, put `dbxenv suppress_startup_message 7.6' in your .dbxrc
    Reading clamps
    Reading ld.so.1
    Reading libuuid.so.1
    Reading libsocket.so.1
    Reading libxml2.so.2
    Reading libresolv.so.2
    Reading libnsl.so.1
    Reading librt.so.1
    Reading libstlport.so.1
    Reading libCrun.so.1
    Reading libm.so.2
    Reading libthread.so.1
    Reading libc.so.1
    Reading libpthread.so.1
    Reading libz.so.1
    Reading libaio.so.1
    Reading libmd5.so.1
    Reading libm.so.1
    dbx: internal error: signal SIGSEGV (no mapping at the fault address)
    dbx's coredump will appear in /tmp
    Abort (core dumped)
    version of "/opt/studio/12/SUNWspro/bin/../prod/bin/../../bin/cc": Sun C 5.9 SunOS_i386 2007/05/03
    version of "/opt/studio/12/SUNWspro/bin/../prod/bin/../../bin/CC": Sun C++ 5.9 SunOS_i386 2007/05/03
    version of "/opt/studio/12/SUNWspro/bin/../prod/bin/../../bin/f90": Sun Fortran 95 8.3 SunOS_i386 2007/05/03
    version of "/opt/studio/12/SUNWspro/bin/../prod/bin/../../bin/dbx": Sun Dbx Debugger 7.6 SunOS_i386 2007/05/03
    version of "/opt/studio/12/SUNWspro/bin/../prod/bin/../../bin/analyzer": Sun Analyzer 7.6 SunOS_i386 2007/05/03
    version of "/opt/studio/12/SUNWspro/bin/../prod/bin/../../bin/dmake": Sun Distributed Make 7.8 SunOS_i386 2007/05/03
    I must say that Sun really needs to do something about dbx and fbe stability. The code is probably unchanged from the days of Forte and it shows. It has been unstable and prone to segfaults, strange symbol table malfunctioning/misreadings and other annoyances since I can remember using it. I've used dbx since the RWCString days of Forte 4.2 and every release in between at several different firms on several different hardware platforms and every version of Solaris since it was called SunOS and every single one of them experienced the same pattern of problems with dbx. Several simply switched to g++/gdb, reasoning that optimized binaries are worth very little when a slight change to a template can result in your binary becoming unreadable by dbx, often times unnoticed by you until it is far too late and you have a
    The linker too seems to be very quirky and sometimes downright unreliable. I feel like if I have the audicity to write a C++ template longer than a few lines, either fbe, dbx, CC or several of them may crash at any point during the developmet process or, heaven forbid, when you need to debug a production core file.
    My problems started yesterday when I decided to upgrade to Studio 12 after seeing that it was supposedly more compatible with boost, especially the latest 1.34 release. Those hopes were soon dashed as one out of every two random build variances combinations appear to cause either CC or the linker to seg fault. Apparently, this is a known issue which I was able to work around by lowering the optimization level from -x04 to -x01.
    Now, it appears a couple of my binaries built by studio 12 are simply undebuggable by studio 12. The irony of course is the least stable tool in sun studio is the debugger.
    I apologize for the complaining as I am quite frustrated at the moment. I love studio for its optimizing but simply having the piece of mind that the debugger will work when needed would be lov

    (dbx) proc -map
    Loadobject mappings for current core file:
    0x0000000100000000 /opt/studio/12/SUNWspro/prod/bin/sparcv9/dbx
    Warning: checksum in file(cb35) doesn't match image(71a4)
    0xffffffff7f500000 /lib/sparcv9/libintl.so.1
    is being filtered by: libc.so.1
    0xffffffff7f200000 /lib/sparcv9/libnsl.so.1
    0xffffffff7ef00000 /lib/sparcv9/libsocket.so.1
    0xffffffff7ed00000 /lib/sparcv9/libdl.so.1
    is being filtered by: /usr/lib/sparcv9/ld.so.1
    0xffffffff7eb00000 /lib/sparcv9/libgen.so.1
    0xffffffff7f400000 /lib/sparcv9/libw.so.1
    is being filtered by: libc.so.1
    0xffffffff7e700000 /lib/sparcv9/libm.so.1
    is being filtered by: libm.so.2
    0xffffffff7e500000 /lib/sparcv9/libc.so.1
    0xffffffff7e400000 /platform/sun4u-us3/lib/sparcv9/libc_psr.so.1
    0xffffffff7dd00000 /usr/lib/locale/en_US.UTF-8/sparcv9/en_US.UTF-8.so.3
    0xffffffff7db00000 /usr/lib/locale/common/sparcv9/methods_unicode.so.3
    0xffffffff7d900000 /usr/lib/sparcv9/libcpc.so.1
    0xffffffff7d700000 /usr/lib/sparcv9/libpctx.so.1
    0xffffffff7d400000 /lib/sparcv9/libnvpair.so.1
    0xffffffff7d200000 /lib/sparcv9/libdevinfo.so.1
    0xffffffff7d000000 /lib/sparcv9/libproc.so.1
    0xffffffff7cd00000 /lib/sparcv9/libsec.so.1
    0xffffffff7cb00000 /lib/sparcv9/librtld_db.so.1
    0xffffffff7c900000 /lib/sparcv9/libelf.so.1
    0xffffffff7c700000 /lib/sparcv9/libctf.so.1
    0xffffffff7c400000 /lib/sparcv9/libavl.so.1
    0xffffffff7c100000 /lib/sparcv9/libc_db.so.1
    0xffffffff7f600000 /lib/sparcv9/ld.so.1 [LM_ID_LDSO]
    core file address ranges:
    0x0000000000010000 - 0x0000000000367c97 (text)
    0x0000000100000000 - 0x0000000100400000 (data)
    0x0000000100400000 - 0x0000000100406000 (data)
    0x0000000100504000 - 0x00000001005e0000 (data)
    0x00000001005e0000 - 0x0000000100800000 (data)
    0x0000000100800000 - 0x0000000103000000 (data)
    0xffffffff7c100000 - 0xffffffff7c108000 (data)
    0xffffffff7c100000 - 0xffffffff7c106172 (text)
    0xffffffff7c208000 - 0xffffffff7c20a000 (data)
    0xffffffff7c400000 - 0xffffffff7c401078 (text)
    0xffffffff7c400000 - 0xffffffff7c402000 (data)
    0xffffffff7c502000 - 0xffffffff7c504000 (data)
    0xffffffff7c600000 - 0xffffffff7c602000 (data)
    0xffffffff7c700000 - 0xffffffff7c70c000 (data)
    0xffffffff7c700000 - 0xffffffff7c70a97f (text)
    0xffffffff7c80c000 - 0xffffffff7c80e000 (data)
    0xffffffff7c900000 - 0xffffffff7c91e000 (data)
    0xffffffff7c900000 - 0xffffffff7c91c6ad (text)
    0xffffffff7ca1e000 - 0xffffffff7ca20000 (data)
    0xffffffff7cb00000 - 0xffffffff7cb06000 (data)
    0xffffffff7cb00000 - 0xffffffff7cb0479c (text)
    0xffffffff7cc06000 - 0xffffffff7cc08000 (data)
    0xffffffff7cd00000 - 0xffffffff7cd11069 (text)
    0xffffffff7cd00000 - 0xffffffff7cd12000 (data)
    0xffffffff7ce12000 - 0xffffffff7ce18000 (data)
    0xffffffff7ce18000 - 0xffffffff7ce1c000 (data)
    0xffffffff7cf00000 - 0xffffffff7cf02000 (data)
    0xffffffff7d000000 - 0xffffffff7d026c99 (text)
    0xffffffff7d000000 - 0xffffffff7d028000 (data)
    0xffffffff7d128000 - 0xffffffff7d12c000 (data)
    0xffffffff7d200000 - 0xffffffff7d21a71d (text)
    0xffffffff7d200000 - 0xffffffff7d21c000 (data)
    0xffffffff7d31c000 - 0xffffffff7d320000 (data)
    0xffffffff7d400000 - 0xffffffff7d408000 (data)
    0xffffffff7d400000 - 0xffffffff7d406d3a (text)
    0xffffffff7d508000 - 0xffffffff7d50a000 (data)
    0xffffffff7d600000 - 0xffffffff7d602000 (data)
    0xffffffff7d700000 - 0xffffffff7d703238 (text)
    0xffffffff7d700000 - 0xffffffff7d704000 (data)
    0xffffffff7d804000 - 0xffffffff7d806000 (data)
    0xffffffff7d900000 - 0xffffffff7d909385 (text)
    0xffffffff7d900000 - 0xffffffff7d90a000 (data)
    0xffffffff7da0a000 - 0xffffffff7da0c000 (data)
    0xffffffff7db00000 - 0xffffffff7db10000 (data)
    0xffffffff7db00000 - 0xffffffff7db0eb21 (text)
    0xffffffff7dc0e000 - 0xffffffff7dc10000 (data)
    0xffffffff7dd00000 - 0xffffffff7df22000 (data)
    0xffffffff7dd00000 - 0xffffffff7df2175a (text)
    0xffffffff7e020000 - 0xffffffff7e024000 (data)
    0xffffffff7e100000 - 0xffffffff7e102000 (data)
    0xffffffff7e130000 - 0xffffffff7e132000 (data)
    0xffffffff7e200000 - 0xffffffff7e210000 (data)
    0xffffffff7e300000 - 0xffffffff7e302000 (data)
    0xffffffff7e400000 - 0xffffffff7e402000 (data)
    0xffffffff7e400000 - 0xffffffff7e400d6c (text)
    0xffffffff7e500000 - 0xffffffff7e5e41f5 (text)
    0xffffffff7e500000 - 0xffffffff7e5e6000 (data)
    0xffffffff7e6e6000 - 0xffffffff7e6f6000 (data)
    0xffffffff7e6f6000 - 0xffffffff7e6f8000 (data)
    0xffffffff7e700000 - 0xffffffff7e706000 (data)
    0xffffffff7e700000 - 0xffffffff7e704758 (text)
    0xffffffff7e804000 - 0xffffffff7e806000 (data)
    0xffffffff7e900000 - 0xffffffff7e906000 (data)
    0xffffffff7ea00000 - 0xffffffff7ea02000 (data)
    0xffffffff7eb00000 - 0xffffffff7eb0619d (text)
    0xffffffff7eb00000 - 0xffffffff7eb08000 (data)
    0xffffffff7ec08000 - 0xffffffff7ec0a000 (data)
    0xffffffff7ed00000 - 0xffffffff7ed02000 (data)
    0xffffffff7ed00000 - 0xffffffff7ed00773 (text)
    0xffffffff7ee02000 - 0xffffffff7ee04000 (data)
    0xffffffff7ef00000 - 0xffffffff7ef0e000 (data)
    0xffffffff7ef00000 - 0xffffffff7ef0cdc2 (text)
    0xffffffff7f00e000 - 0xffffffff7f012000 (data)
    0xffffffff7f100000 - 0xffffffff7f102000 (data)
    0xffffffff7f200000 - 0xffffffff7f2ab872 (text)
    0xffffffff7f200000 - 0xffffffff7f2ac000 (data)
    0xffffffff7f3ac000 - 0xffffffff7f3bc000 (data)
    0xffffffff7f3bc000 - 0xffffffff7f3c4000 (data)
    0xffffffff7f400000 - 0xffffffff7f4010e4 (text)
    0xffffffff7f400000 - 0xffffffff7f402000 (data)
    0xffffffff7f500000 - 0xffffffff7f5004ce (text)
    0xffffffff7f500000 - 0xffffffff7f502000 (data)
    0xffffffff7f600000 - 0xffffffff7f633056 (text)
    0xffffffff7f600000 - 0xffffffff7f634000 (data)
    0xffffffff7f600000 - 0xffffffff7f633c4a (text)
    0xffffffff7f734000 - 0xffffffff7f738000 (data)
    0xffffffff7f738000 - 0xffffffff7f73a000 (data)
    0xffffffff7fff8000 - 0xffffffff80000000 (data)

  • How to force links to open in a new tab everytime?

    Hi,
    I don't want to have to hold down buttons on my keyboard. When I click a link I wish it to always open in a new tab window like it does for me in internet exploder. How do I accomplish this in Safari?
    Thank you for your time.

    I'll never get used to having to use a hotkey to get something to show up in a new tab, that much I can say for certain. And I've not yet moved completely away from IE. IE unfortunately has activeX scripts that some automobile manufacturers internal sites use that I must access daily and they only work with the I.E. browser, so even trying to go to their sites with a browser like Safari only produces a page that says you must be using the latest I.E. browser due to bla bla bla.
    Its hard to make the switch 100% when your up against these huge auto mfg's that wont be switching to any other browser anytime soon. Even trying to use some browsers that spoof the site into thinking they are the latest I.E. browser does no good since they can't use the activex controls on the pages.
    I also severely miss having my mouse gestures. I use them extensively in I.E. to navigate back and forth and to close windows etc. Has anybody seen any mouse gestures for safari yet? I could use them more than having windows open in new tabs even. Also safari is still a bit unstable, I've had it crash about 5 times tonight, compared to Internet Exploder which crashes about once per day.
    Message was edited by: City Builder

  • HP Pavilion dv6z-6b00 CTO Quad Edition Entertainment Notebook PC Rom is unstable and stop working

    I have a HP Pavilion dv6z-6b00 CTO Quad Edition Entertainment Notebook PC  The DVD became unstable and stopped seeing CDs and DVD's  If i put in a disc in drive E: I get the error message  Insert a Disc in to drive E:. If I leave a DVD or CD in the Rom and reboot the PC the ROM will see the Disc until I change the Disc the I get the error message Insert a Disc in to drive E: I called Hp support and they sent me a new Rom.  I installed the rom.  Tested It, and It worked great until an update message appeared. So I installed the critical updates and after the install the Rom stopped see CD's or DVD.   The new Rom is a  hp DVDRAM GT31L SATA Cdrom.   Can any one help? 

    Hi,
    Try the following to manually replace the driver for the optical drive.
    1.  Download the following utility that will add 'Take Ownership' to the right click context menu.  The download is on the following link.
    Take Ownership
    This is a zipped file.  If you don't have an extraction utility installed, download and install 7-Zip  ( if you have a 64bit version of Windows, you will need this version 7-Zip ) which can be used to open this so that you can run the installer.  Then just right click the zipped folder, select 7-Zip and select Extract Files.  When done, open the newly extracted folder and you will find the utility to add 'Take Ownership' to the right click menu.  Just double click it to install and then close the window.
    2.  Open windows Control Panel, open Device Manager, open up DVD/CD-ROM Drives.  Right click the drive and select uninstall and click the prompt to complete this.
    3.  Click the Start Menu, open Computer, double click Local Disk C, open the folder 'Windows', open the folder 'System32', right click the folder 'drivers' and select Take Ownership.
    Just below this folder, open the folder 'DriverStore', open the folder 'FileRepository', open the folder that starts 'cdrom.inf', right click the 'cdrom.sys' file and select Copy.
    Close all open windows and then Paste this file on your Desktop.
    4.  Once again, click the Start Menu, open Computer, double click Local Disk C, open the folder 'Windows', open the folder 'System32', then this time open the folder 'drivers', right click and select Paste.  You should now get a prompt that the file already exists - select the Copy and Replace option and click on any further prompts to complete this.
    When done, close all open windows and restart the notebook - when Windows reloads let it install the device driver and then let it idle for a couple of minutes.
    Check if the drive now works correctly.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • OBIEE 11g Drill Hierachies & Action Links

    Hi Everyone,
    Apologies if this has already been covered in another thread.
    I have create a level based hierachy and a report with 2 columns.
    Type1, #
    When following the drill path the heirachy/report is as follows...
    Type1,#
    which drills to
    Type1, Type2,#
    which drills to
    Type1, Type2, Type3, #
    The problem, I would like to create an Action Link (navigate to BI content) on the Type3 column once at the detail and final level in the drill.
    To provide further context, I have tried saving the Action link the as the default interaction for the type3 column however our version of obiee is saving/remembering the interaction choice but not the action link itself.
    Any ideas??
    Thanks

    1. Did doing this one time create a permanent fix for you?
    - Yes , The reason what I assume is XML is very sensitive and gets corrupted easily if the OBI environment is unstable.
    So in my case since the number of master-detail reports was less - I actually recreated those reports. Filters were being Protected. This fixed our issue.
    DO take the backup before modification.
    2. Why does the protected filter help? Should we always use protected filters when navigating using an Action Link?
    -No idea - As i was playing around to find the workaround - I happened to PROTECT the filters in the master reports and the trick worked out. I assume when filters are protected in master reports - OBIEE front end makes sure that actual filters are carried away when the master is navigated to detail despite XML of the master-detail setup is corrupted.
    3. What is an example of an unused front end object? I am unsure as to what this is.
    -Ohh- I wanted to say - Front end objects ( Reports , dashboards, Saved Filters , Actions, Agents etc which are NOT in use - or which are outdated ) can be removed.
    This makes the front end setup lighter and stable.
    Thank you.

  • Currently, E4200 defintely inferior to D-Link DIR-655 when it comes to streaming applications

    About 8 weeks ago I upgraded from a D-Link DIR-655 single band n router to the E4200, primarily to get into the 5GHz band for streaming Netflix to two different TVs in our house.
    The E4200's wireless connections to my laptop's Centrino Ultimate-N 6300 AGN  card are very fast and rock solid.  All of the E4200's wired connections are rock solid.  The router generall performs well as intended.
    BUT neither my Samsung BD-C6900 Blu Ray Player nor our WDTV live plus HD box establish a useful connection to the E4200 - with two very different symptoms:
    1) For the WDTV I am using a D-Link DAP-1522 wireless AP to have network connectivity.  The DAP-1522 is less than 10 feet away from the E4200 and the wireless connection to the E4200 get's easily established.  Using an Ethernet cable at the AP and checking speeds, they are very decent, with over 25Mbit/s download.  Problem is:  When attempting to stream anything from the WDTV through the E4200 using the wireless AP, the WDTV always produces an "invalid DNS" error before any streaming even starts - even though it receives its IP address, subnet, DNS etc. w/o a glitch.  When I replace the E4200 with the old DIR-655 (and leave the DAP-1522 AP in place as is) I have no such issues.   BTW - this is independent of accessing the E4200 through the DAP-1522 on either the 2.4 or the 5 GHz spectrum.  And yes, I tried ALL settings, on all three machines (router, AP,  WDTV) including fixed IP, different DNS servers, etc.
    2) The Samsung BD-C6900 also can connect to the E4200 w/o a problem. The Blu-Ray player even shows an "excellent" five bar strength wireless network (2.4GHz band only) .  But the connection is relatively unstable.  And using the Samsung Blu Ray player's internal speed test, download speeds are only around 200kbps - too slow and unstable slow even for Pandora streaming.   Again, just replacing the E4200 with the old DIR-655 fixes the problem - even though the BluRay player then only shows a "good" signal strength, but downloads are around 20Mbit/s.  To me this hints at some inter-compatibility issues between the E4200 and the wireless card built into the BD-C6900.
    I've worked this problem for countless hours now.   Only solution that worked: We are now running both wireless routers,  using the DIR-655 dedicated to streaming to those two devices.
    All this leads me to believe that the current version/firmware of the E4200 (newest firmware) is suffering from some inter-operability and streaming issues - at least on the wireless side of the router.  Anyone else with similar devices and problems?  If anyone from Cisco reads this – maybe go, recreate the setup and try for yourself. As for Cisco’s reputation – come the next generation of routers in 2 years, I will go back to D-Link. 

    Thank you for your suggestion.  I wish it was that easy. 
    We have both Comcast Cable and Clear WiMax 4G - I've been trying it with either IPS connection and several DNS servers. 
    DNS servers used:
    The DNS servers I tried include
    68.87.68.166, 68.87.74.166 (when hooked up to Comcast cable)
    75.94.255.12 , 64.13.115.12 (when hooked up to the Clear modem)
    and 75.75.75.75, 8.8.8.8, 4.2.2.6, 209.244.0.3 - all of which have very good response times from our location.
    All else on the network works fine.  And both of these machines, the BD player as well as the WDTV show correct DNS info.  Again - taking out the E4200 and replacing it with the old DIR-655 also makes the two machines causing trouble with the E4200 behave alright.  Hence it's not a DNS server address issue per se. 
    Connected to the E4200 using Ethernet cables both, the WDTV and the BD player, work fine. 
    Which really leads me to believe the problem is how the E4200 handles streaming aspects over wireless.

Maybe you are looking for

  • Thunderbolt to Firewire 800 Adaptors... any available?

    Hi all, I'm probably going to buy a 15" Mac Book Pro whenever they are released later this year and have a strong suspicion that Apple will drop the Firewire 800 port in favour of Thunderbolt. I guess this really comes as no surprise but hopefully I'

  • Very Urgent! Help!

    I have an eclipse application to open a new email message with an attachment (in the default mail client) clicking a button. Below are my codes:- Runtime.getRuntime().exec(new String[]{"cmd.exe","/c","start mailto:[email protected]?subject=MailTo&cc=

  • PR's are raised for components(PM2 Secondary Packing) are not in BOM

    Dear Gurus It was found that PR's are raised for components(PM2 Secondary Packing) are not in BOM after MRP run. In MRP4 view of the material (Material type  ZVER  Primary Packaging material) i found that : <u>SLoc MRP indicator#       </u>          

  • Translation of scripts into 'FR' language

    I have a requirement. Iam translationf remit advice script into 'FR' language. For this it is using RFFOF_T driver program. Iam running this script through F110 tcode. And this job is running in back ground mode.But in the job log is is giving the er

  • TS3276 cf the file in the body of the email

    I am trying to attach a file to an email and it puts the contents of the file into the body of the email instaed of as an attachment