IPv6 Duplicate error msg on GNS3

Hello,
I am trying IPv6 Lab on GNS3,   but I am again and again getting the following duplicate error message on my GNS3 router,
%IPV6-4-DUPLICATE: Duplicate address FE80::C000:13FF:FE80:0 on FastEthernet0/0
I tried changing my Interface Link-Local address, but no result, Please let me know how to get it resolved ?

Hi,
Unfortunately, you have not solved the problem - you have only deactivated the mechanism that reports the problem. The issue with the packets sent by your router looping back to the same router persists, and it may cause another problems in future. I caution you against running your setup like this, especially if you use it for learning - because of the packets being fed back to the router, the behavior of your topology may be different.
Just curious: when you run your router attached to the VirtualBox instance for some time (more than one minute) and reports the IPv6 address conflict (i.e. without the workaround you've suggested earlier), what does the show cdp neighbor show? Does this input contain an entry about this very router? If yes, it definitely confirms the packets being reflected back to the router for some obscure reason.
Do you perhaps have an option of running your GNS3 on another machine, or on another operating system? At this point, I am fairly sure that the problem is somewhere in the way GNS3 ties together a VirtualBox instance and an IOS router instance. However, this is not about solving IOS issues anymore (and it never was as it turns out), this is about possible issue in GNS3 or in your particular setup. Unfortunately, there are many variables in play, including the precise settings of GNS3, VirtualBox, your particular operating system and the software running on it.
Best regards,
Peter

Similar Messages

  • Sending error msgs through email and sms

    Hi,
    does anyone done on sending error msg file through email and sms.
    if so share some knowledge with me.
    thanks in advance

    Hi
    MAIL:
    SORT t_receivers BY receiver.
      DELETE ADJACENT DUPLICATES FROM t_receivers COMPARING receiver.
      IF NOT t_receivers[] IS INITIAL.
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
             EXPORTING
                  document_data              = wal_docdata
                  put_in_outbox              = c_check
             TABLES
                  packing_list               = t_objpack
                  contents_txt               = t_content_txt
                  receivers                  = t_receivers
             EXCEPTIONS
                  too_many_receivers         = 1
                  document_not_sent          = 2
                  document_type_not_exist    = 3
                  operation_no_authorization = 4
                  parameter_error            = 5
                  x_error                    = 6
                  enqueue_error              = 7
                  OTHERS                     = 8.
    SMS: refer to this Weblog in SDN.
    <a href="/people/durairaj.athavanraja/blog/2005/07/12/send-sms-to-india-from-abap Post for SMS prog</a>
    Hope This Helps
    Anirban

  • Workflow Monitor Error MSG

    When clicking on MONITOR buuton in Contract Authoring Workbench Form of Project Contracts,
    JSP error msg shows up.
    Error Page
    You have encountered an unexpected error. Please contact the System Administrator for assistance.

    Duplicate thread (please post only once).
    Workflow Monitor
    Re: Workflow Monitor

  • Performance issue: Calling a BAPI PO create in test mode to get error msgs

    Hi,
    We have an ALV report in which we display purchase orders that got created in SAP, but either got blocked due to not meeting PO Release strategy tolerances or have failed output messages. we are displaying the failed messages even.
    We are looping the internal table of eban(PR) & calling bapi po create in test mode to get failed messages.
    Now we are facing performance issue in production. What can be the alternate efficient way to get the error msgs with efficiency
    Regards,
    Ayub H.
    Moderator message: duplicate post (different ID, same company...), see below:
    Performance issue calling bapi po create in test mode to get error messages
    Edited by: Thomas Zloch on Mar 9, 2012

    Hi Suvarna,
    so you need to reduce the number of PO-simulations.
    - Likely you checked already, that all EBAN-entries should already be converted into POs. If there would be a large number of "new" EBAN-entries, they don't need to be simulated.
    - If it's a temporary problem: give aid to correct the problems (maintain prices or whatever the error-reasons are) Then the amount of not-converted purchase requisitions (PR) should drop, too
    - If it's likely, that your volume of open PR will stay high: create a Z-Table with key of EBAN and a counter, simulate (once a day) PO conversions and store the results in the Z-table. In your report you can use the results... if they are "new enough". From time to time new simulations should be done, missing master data might be available.
    Maybe users should be allowed to start this 2nd report manually (in background), too -> then they can update the messages after some data corrections themself, without waiting for the result (just check later in online report and do something different in between).
    And you might need to explain, PO simulation takes as long as PO creation... there is no easy or fast way around this.
    Best regards,
    Christian

  • FacesContext can't display error msg !

    Hi guys,
    I got this problem. For this function:
         public User saveUser(User user) throws DBException {
              try {
                   User newUser = this.userDao.saveUser(user);
                   return newUser;
              } catch (DataIntegrityViolationException di) {
                   String msg = "duplicate user id";
                   this.logger.error(msg, de);
                   throw new DuplicateUserIdException(msg);
    =======================================
    then the below function is to execute when user click the submit button
    public String submitAction() {.....
    catch (DuplicateUserIdException de) {
    String msg = "Username already exists";
    this.logger.info(msg);
    FacesContext.getCurrentInstance().addMessage(null, new FacesMessage( FacesMessage.SEVERITY_INFO, msg, msg));
    return QueryResults.RETRY;
    ========================================
    public class DuplicateUserIdException extends DBException {
         private String username;
         public DuplicateUserIdException(String newUsername) {     
              super("Username " + newUsername + " already exist");
              this.username = newUsername;
         public String getUsername() {
              return this.username;
    ====================================
    So when I click on the submit button after entering a duplicate username, it will just go back to the same page and no error message display. Username is a primary key and email address is set to UNIQUE in MySQL DB. I read the log file and indeed all the error messages can be catched. The registration.jsp page is like:
    <h:inputText value="#{userBean.username}" id="username" required="true">
    <f:validateLength maximum="20" minimum="5"/>
    </h:inputText>
    <h:message for="username"/>
    but I got my login page also the same h:inputText as above.
    I am using JSF + Spring + Hibernate.
    I hv tried to fix it a few time but failed !
    Appreciate any help here.

    K> then the below function is to execute when user click
    K> the submit button
    K>
    K> public String submitAction() {.....
    K>
    K> catch (DuplicateUserIdException de) {
    K> String msg = "Username already exists";
    K> this.logger.info(msg);
    K> FacesContext.getCurrentInstance().addMessage(null,
    K> l, new FacesMessage( FacesMessage.SEVERITY_INFO,
    K> msg, msg));
    K> return QueryResults.RETRY;
    K>           }
    K> }
    K> So when I click on the submit button after entering a
    K> duplicate username, it will just go back to the same
    K> page and no error message display. Username is a
    K> primary key and email address is set to UNIQUE in
    K> MySQL DB. I read the log file and indeed all the
    K> error messages can be catched. The registration.jsp
    K> page is like:
    K>
    K> <h:inputText value="#{userBean.username}"
    K> id="username" required="true">
    K> <f:validateLength maximum="20" minimum="5"/>
    K> </h:inputText>
    K> <h:message for="username"/>
    K>
    K> but I got my login page also the same h:inputText as
    K> above.
    K>
    K> I am using JSF + Spring + Hibernate.
    K>
    K> I hv tried to fix it a few time but failed !
    K> Appreciate any help here.
    Ok, we have to keep in mind the request processing lifecycle here. Your
    submitAction() method is called after conversion and validation have
    already occurred. Therefore, you can never queue an error from an
    action handler. Here's why.
    When your submitAction() is called, you queue a message into the faces
    context. Whatever you return from submitAction(), it's ultimately going
    to cause a requestDispatcher.forward() or
    httpServletRespones.sendRedirect(). Both of these cause a new
    FacesContext instance to be created, obliterating your carefully queued
    message.
    The best practice I've seen used is to handle the validation as close to
    the component in which the validation error occured as possible. I
    recommend creating a custom validator method binding, that does the
    trick. This is really easy to do. Just add a method to your bean:
    public void validate(FacesContext context,
    UIComponent component,
    Object value) throws ValidatorException {
    // queue the message here, make sure to call component.setValid(false)
    Then, in your inputText, you say:
    <h:inputText value="#{userBean.username}" validator="#{userBean.validate}
    id="username" required="true">
    <f:validateLength maximum="20" minimum="5"/>
    </h:inputText>
    And you're done.
    Ed (JSR-252 Spec co-lead)

  • Error msg raised in a trigger into an APEX validation box?

    Hi,
    I am working on a FORMS to APEX conversion. In the application we are converting, there are a lot of triggers containing validations using a RAISE_APPLICATION_ERROR. For example, there could be a validation on a status change in a "before update trigger".
    When that happens, there's the error template page with the red X with the SQLERRM. I would like to be able to take that message and show it like it was a normal APEX validation.
    So far, the only solution I have would be to duplicate the validation code from the triggers and put them in APEX validation. But the application is pretty much done, so that would require me to go back to all the pages and modify them.
    Any solutions? How do you deal with sql error msg?

    This can also be caused in iTunes 7 by "dead tracks": songs that iTunes is expecting to find in a certain place but the song file isn't there.
    I recently upgraded to version 7 and got this message every time I started iTunes. I used the iTunes COM SDK for Windows with JScript to find all the dead tracks in my library. Then I fixed them by either deleting them from the library or else correcting the library's idea of where the song file was. Once I did this the message went away.
    Another way to look for dead tracks is to parse the iTunes library XML file and look for invalid file paths. I did this in Perl without too much trouble.
    (I'm cross-posting this to several threads about the same problem.)

  • Get ical error msg 404 on both my MacBook pros, but not my MacPro Desktop. Same ical ver 5.02 & all are OSX Lion. Both MacBooks get ical stuck with error msg & I must force quit to get rid of window. How can I fix?

    Upgraded both my MacBook Pro Laptops, the 2011 - 13" and my 2006 - 15" to OSX Lion. Then I upgraded my MacPro Desktop also to OSX Lion.  No problems with MacPro, but iCal, when I open on both my laptops, constantly comes up with Error msg 404 as follows:  "The Server responded with an error.  The URL https://p03-caldav.icloud.com/286232046/principal encountered HTTP error 404.  Make sure URL is correct."  When I click OK, I just get a duplicate error message immediately and I can do nothing with iCal or my computer until I force-quit iCal.
    iCal on all 3 of my mac is Ver 5.01 (1571), but only my laptops are affected with this problem.  What can I do?

    Upgraded both my MacBook Pro Laptops, the 2011 - 13" and my 2006 - 15" to OSX Lion. Then I upgraded my MacPro Desktop also to OSX Lion.  No problems with MacPro, but iCal, when I open on both my laptops, constantly comes up with Error msg 404 as follows:  "The Server responded with an error.  The URL https://p03-caldav.icloud.com/286232046/principal encountered HTTP error 404.  Make sure URL is correct."  When I click OK, I just get a duplicate error message immediately and I can do nothing with iCal or my computer until I force-quit iCal.
    iCal on all 3 of my mac is Ver 5.01 (1571), but only my laptops are affected with this problem.  What can I do?

  • Photoshop CS2 (program error msg)... Help please!!

    I have installed the full creative suite 2 on my new iMac. everything works fine except photoshop?!!?
    Illustrator works great, In-Design works great, But when i try to open a file or create a new page in PS it tells me "Could not create document because of a program error"???? ***?
    I had a previous version of CS and it worked fine for one day, then that started happening. I installed the CS2 trial version, and it would still give me the same error msg. I erased everything and installed the new CS2 (photoshop, illustrator , in-design and acrobat). It still gives me the same darn msg.???
    Any help would be greatly appreciated!
    thanks

    See the Adobe Knowledge Base document"Error 'Could not complete your request...' or 'Could not create a new document...' (Photoshop CS2 on Mac OS X v10.4)"
    I suggest whenever you have problems with third-party applications, the first place to start troubleshooting is with the application's documentation, then vendor's web site. Usually their sites have FAQs, lists of known bugs, or application-specific forums similar to these Discussions. Sometimes, unlike the Apple Discussions, the questions are even answered by employees of the vendor.
    The document cited above was found in 10 seconds by searching the Adobe support site.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • ITune wont start geting a error, error msg says send error or dont send.

    Hi,
    Like the topic says, i have tryed to reinstal itunes but with same results.
    error msg
    AppName: itunes.exe AppVer: 7.0.2.16 ModName: unknown
    ModVer: 0.0.0.0 Offset: 00000000
    what shuld i do next need it to work so i can use my ipod.

    let's first check to see whether or not that is associated with a broken QuickTime. (itunes needs a properly functioning QuickTime in order to work correctly.)
    try launching your QuickTime. does it:
    (a) launch perfectly fine?
    (b) fail to launch with an error message? (if so, what does it say?)
    (c) exhibit other peculiar behavior? (if so, could you describe it for us?)

  • ITunes no longer works on my Windows VISTA system.  Get error msg saying C runtime library incorrectly... Error 7, Windows error 1114..

    iTunes no longer works on my Windows VISTA system.  Get error msg saying an application is attempting to access C runtime library incorrectly... Error 7, Windows error 1114.  Same msg, or one that says unable to install, when trying to update or reinstall iTunes.  iTunes worked well up until about a month ago when this error msg starting appearing.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Error msg 13019 please help

    hi
    i need help in getting rid of this error msg 13019. it started after downloaded a couple of songs. and it will not allow me to sync my nano ipod thanks

    Ive fixed this issue before. The steps are kinda long but they work.
    This is for windows computers with iPod nano that get the error 13019 during or after a sync with iTunes.
    -Open itunes
    --click, edit, click preferences
    --select advanced
    ---make a note of the iTunes media folder location on a notepad.
    ---put a check in organize files
    ---take the check out of copy files
    ---click ok
    --Click file, at the top of iTunes
    --move mouse over library, select organize, and consolidate files. ( This ensures all music in you iTunes will be in the iTunes media folder later.)
    At this point, if you have playlists you want to save:
    -Create a folder on your desktop, call it, playlists
    --Hover you mouse over your playlist in iTunes, should be at the bottom of the blue/grey column on the left.
    --right click the playlist, select export playlist
    --Navigate to your desktop and open the playlist folder and save.
    ---Do this for each playlist you want to save
    -Close itunes
    -Click your start button, and open computer or my computer
    --Using what you wrote down on your note pad, follow the path to the "iTunes folder", NOT the iTunes media folder
    --Open the iTunes folder.
    --Stop here
    -You will see icons that look like folders and you will see icons that look like files-
    -You will KEEP the FOLDERS
    -You will DELETE the FILES
    --If it makes you more comfortable you can cut the files out and paste on your desktop, but as of now we do not need the files any longer as we have the playlists backed up. Remember-Keep the folders.
    --That was the magic--
    -Disconnect your iPod if connected.
    -When you open your iTunes, it will be empty, that is OK. We are recreating the library. Everything will come back in a few seconds.
    -Click file at the top
    --Select, add FOLDER to library, not to be confused with add file.
    --In the window that pops up, locate and click on computer or my computer
    --From here follow the path to the iTunes media folder on your note pad, but do not open the iTunes media folder.
    --Click the iTunes music/media folder one time so it highlights.
    --On the bottom right you will have option to select folder, or choose folder or OK. Hit that button.
    All you music will start to import back into iTunes.
    -Plug in iPod after completed
    --a message pops up about being synced with a different library.
    --Click erase and sync
    --Watch all your songs go on your iPod with no error message.
    From here you may sync your iPod the way you want with out worrying about the persnickety error 13019!!!!!
    Hope this helps!!!
    Julian
    p.s. Follow the directions exactly.
    p.s.s. To add your playlists back to iTunes:
    -Click file at the top of the screen
    --move your mouse over library, selecte import playlist
    --on the new screen that pops up, navigate to your desktop
    --open the playlist folder, select the first playlist, hit ok
    --repeat for each playlist exported

  • Had this error msg in my application log:

    Had this error msg in my application log:
    [21/Feb/2002 10:16:20:7] info: REQ-012: thread add
    [21/Feb/2002 10:16:20:7] info: REQ-012: thread add
    [21/Feb/2002 10:16:20:7] info: ENGINE-ready: ready: 10820
    BASEURL: https://ssunp03.company.com:8081
    strURL: https://ssunp03.company.com:8081/cgi-bin/gx.cgi/AppLogic+EventServerManager
    EventServerHttpInvocation > java.net.MalformedURLException: unknown protocol: https
    **Out of memory, exiting**
    ld.so.1: /pimcreg5/imc/nas/40sp3/nas/usr/java/bin/sparc/native_threads/jre: fatal: /pimcreg5/imc/nas/40sp3/nas/us
    r/java/lib/sparc/native_threads/libjava.so: mprotect failed: Resource temporarily unavailable
    Killed
    Connected to LDAP server on ssunp03.company.com port 1390
    [21/Feb/2002 02:42:49:1] info: ENGINE-class_loader_created: New class loader com.kivasoft.engine.EngineClassLoade
    rNonVersionable@1c14d67f has just been created
    Can anyone share with me his experience about ld.so.1?? What is it and why does it cause my apps server to reboot?

    It looks like you might simply have run out of memory. It just looks like the JRE tried to adjust its memory map and run out space. When mprotect fails the problem probably isn't with the .so itself.
    What are the memory characteristics of your machine? Including the heap and stack space that you allocate for your JVM, as well as the actual physical and swap space available on the server.

  • Error msg when changing the MRP type in ME22N

    Hi,
    When i change MRP type from MRP to Manual  in ME22N, it will come out the error msg:Purchase request mandatory for MRP generated Purchase order (Application area: ME Message no. ME901)!  My question is how to change this error msg to warning msg?
    From SPRO-Material Management-Purchasing-Environment Data-Define Attributes of System Messages ,i can not find the entry regarding this issue.
    Any suggestion!
    Thanks!

    Hi,
    Sometimes end user want to add some item without PR under MRP PO.
    As before system will only indicate the warning msg that we change to error msg three month ago, but i forgot how to change!
    thanks!

  • Payroll Error msg "The gross wages do not cover the negative offset that has been forwarded, therefore, no grossup is permitted".

    Hi Experts,
    I am getting the below error msg while running payroll for an US employee.
    "The gross wages do not cover the negative offset that has been forwarded; therefore, no grossup is permitted."
    I am getting this error msg just after USTAX function processing part of UTX0 subschema. I am highlighting below facts & findings for your reference.
    As per a client requirement,  I have configured a new gross up WT (ER benefit contribution) for a benefit plan (IT 0168) and the changes are in QAS system. The changes have to be reflected in period 20/2014 (4th May'14- 10th May'14) with retro effective 01/01/2014 as per the benefit plan record maintained from 01/01/2014.
    This error msg is coming only for few employees. In my example, when I am running payroll in period 20/2014 with forced retro as 01/01/2014, system is giving error in period 14/2014 (23rd Mar'14-29th Mar'14). When I checked the pay result of this employee for period 14/2014, I can see the /101 is in -ve value and there is claim generated for this period. So I think, eventhough, a value of $ 2.53 is getting added as per the IT 0168 record, its not helping to give a +ve gross value and thus tax is not able to recoved on the same.
    I hope you have come across this issue and can help me to assist to resolve the error msg.
    Regards,
    Prakash  

    If you have correctly configured payroll the system should automatically off set that and should create wage tyes /561 or /563 in RT.

  • I put incorrect passcode to unlock my iphone and it disabled my phone, instructions say to restore but when I try to i get error msg saying to turn off the find my iphone app in order to restore, how can i do that w/o being able to get into my phone ???

    after trying to remember my new pass code and failing, my iphone disabled and is now telling me to connect to itunes, ive done that and tried instruction to restore from back up however when i do that i get an error msg saying that i need to turn off the app find my iphone to b able to restore, i cant do that tho because i cant use my phone and i dont see app on my computer on itunes either???what do i do >??

    This the Activation Lock. Read here: http://support.apple.com/kb/HT5818
    The only way is to login to iCloud with your computer browser and wipe the iPhone.
    If you can't then you have a brick, Apple won't help and AL cannot be bypass.
    https://www.icloud.com

Maybe you are looking for

  • GR IR CLEARING TOLERANCE LIMIT.

    We are clearing  in F.13the GR and IR account there is difference in the GR and IR amount by Rs 100 ,SO IT IS NOT CLEARING. WHERE IS THE SETTING MADE FOR TOLERANCE FOR GR IR CLEARING.PLEASE PROVIDE THE PATH. Pls help. Edited by: mysap query on Feb 6,

  • Odd scratch folder behavior...?

    I have just set up several disk images on an internal drive to use for member scratch disks. When I set the virtual drive as the scratch location, FCP creates the proper folder structure as normal, but each folder is set to read only. So when a membe

  • How do i load music from hard drive to my ipod?

    how do i load music from hard drive to my ipod? I had to reset my ipod and it blew away all my music. I have a ton of music on my computer hard drive but haven't figured out how to get it to my ipod. Thanks

  • HP Network Printer periodically prints a page from a web crawler

    I support a HP Color LaserJet CP2025dn which ocassionally prints a page that says: GET http://www.baidu.com/ HTTP/1.1 Host: www.baidu.com Accept: */* Pragma: no-cache User-Agent: Sometimes the GET HTTP/1.1 statement is from  http://www.sciencedirect.

  • Early 2013 rMBP (10,1) Freezes While Scrolling, Yosemite 10.2.2

    MacBook Pro (Retina, 15-inch, Early 2013) 2.7 GHz Intel Core i7 16 GB 1600 MHz DDR3 (Factory installed) Intel HD Graphics 4000 1024 MB I installed 10.10.2 on January 28th. Since that time, I've been having this same problem, progressively more often: