TFTP, pt8, joa, JOAException


Hi all

I get under exception when creating a user in the system target of peoplesoft HCM:

CREATEUSER running

Target class = oracle.iam.connectors.icfcommon.prov.ICProvisioningManager

java.lang.reflect.InvocationTargetException

at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:597)

at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpHCMPSFTUMCREATEUSER.CREATEUSER(adpHCMPSFTUMCREATEUSER.java:109)

at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpHCMPSFTUMCREATEUSER.implementation(adpHCMPSFTUMCREATEUSER.java:54)

at oracle.iam.connectors.icfcommon.prov.ICProvisioningManager.createObject(ICProvisioningManager.java:269)

... more than 112

Caused by: java.lang.NoClassDefFoundError: TFTP, pt8, joa, JOAException

com.thortech.xl.dataobj.util.tcAdapterTaskException: TFTP, pt8, joa, JOAException

at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpHCMPSFTUMCREATEUSER.CREATEUSER(adpHCMPSFTUMCREATEUSER.java:115)

I have downloaded the psjoa.jar and peoplesoft.jar to the IOM, restart the server OIM 11 g R2 PS1 also. Reconciliation works fine however. I see a reference to the same error in the documentation of the connector, but that did not help. I cloned the user TFTP management connector to create the target TFTP hcm system connector. I do not use the connector server.

Help, please.

problem solved after the addition of psjoa.jar in the classpath.

Tags: Fusion Middleware

Similar Questions

  • PeopleSoft IOM commissioning has failed, create task user rejected with response - TFTP, pt8, joa, API

    Hi Experts,

    Ask for your help regarding the provision of Peoplesoft with TFTP UM connector 11.1.1.6.

    I'm no exceptions in logs diagnostic and connector. And even surprisingly the utility PeoplesoftProvisioningTester.sh to test the IOM Peoplesoft provisioning worked.

    Please share your experiences so everyone faces this problem.

    Thank you

    Problem is solved.

    psjoa.jar must be transferred to IOM DB using UploadJars.sh utility, then purge the cache and also reboot may also be necessary.

  • The IOM for Peoplesoft connector - you can copy a user?

    PeopleSoft inside there is a function copy of user profile that allows you to make an exact duplicate of the user, including security. We use this function when we change a user name (say someone marries).

    Has anyone found a way to make the IOM?

    Thank you.

    With the help of these imports:

    Psft.pt8.joa import. *;
    PeopleSoft.Generated.CompIntfc import. *;

    Connect

    >
    public Peoplesoft (String hostname, String port, String admin, String password) {}
    log.info (CLASS_NAME + "---> entries = hostname [" + hostname + "]")
    "] [] port" + port +.
    "] admin [] ' + admin +.
    "] password [*]"); "."
    This.HostName = hostname;
    This.port = port;
    This.admin = admin;
    This.password = password;
    this.strAppServerPath = hostname + ":" + port;
    Connect boolean = false;
    try {}
    Create the object of PeopleSoft Session *.
    oSession = API.createSession ();
         
    Connect to the App Server *.
    Connect = oSession.connect (1, strAppServerPath, admin, password, null);
    log. Debug ("login:" + connect);
    If (! connect) {}
    log. Error ("unable to connect to the application server.");
    ErrorHandler();
    return;
    }
                   
    } catch (Exception e) {}
    e.printStackTrace ();
    log. Error ("an error occurred");
    ErrorHandler();
    }

    log.info (CLASS_NAME "---> connect =" + connect);
         
    }
    >

    Creating user

    >
    public String createUser (String oprid, String oprdefndesc, String useridalias, String operpswd,
    String emplid, String emailid, String emailtype, String language_cd, String multilang_cd,
    String currencycode, String prpermissionlist, String rowpermissionlist,
    String processprofilelist, String navigatorhomelist) {}
    log.info (CLASS_NAME + ". createUser()---> entries = oprid [" + oprid + "]")
    '] oprdefndesc [] "+ oprdefndesc +.
    '] useridalias [] "+ useridalias +.
    '] operpswd [] ' + ' * ' +.
    '] emplid [] "+ emplid +.
    "] [] emailid" + emailid +.
    '] emailtype [] "+ emailtype +.
    '] language_cd [] "+ language_cd +.
    '] multilang_cd [] "+ multilang_cd +.
    "] [] currencycode" + currencycode +.
    '] prpermissionlist [] "+ prpermissionlist +.
    '] rowpermissionlist [] "+ rowpermissionlist +.
    '] processprofilelist [] "+ processprofilelist +.
    "] navigatorhomelist [" "+ navigatorhomelist +"] ");"
              
    String response = "";
    Boolean then = false;
              
    try {}
    Get the component Interface *.
    IUserProfile oUserProfile;
    String ciName;
    ciName = 'USER_PROFILE ';
    oUserProfile = oSession.getCompIntfc (ciName) (IUserProfile);
    If (oUserProfile == null) {}
    log. Error ("Can't get a component Interface" + ciName);
    ErrorHandler();
    response = "UNABLE_TO_GET_CI";
    } else {}
    Next = true;
    }
                   
    Set the Interface Mode of component *.
    oUserProfile.setInteractiveMode (false);
    oUserProfile.setGetHistoryItems (false);
    oUserProfile.setEditHistoryItems (false);
                   
    If {(next)
    Next = false;
    Boolean create = oUserProfile.create ();
    log. Debug ("Create:" + create);
    If (! create) {}
    ErrorHandler();
    response = "UNABLE_TO_CREATE";
    } else {}
    Next = true;
    }
    }
                   
    If {(next)
    Next = false;
    Define the component Interface Get/Create Keys *.
    oUserProfile.setUserID (oprid);
    oUserProfile.setUserDescription (oprdefndesc);
    oUserProfile.setUserIDAlias (useridalias);
    oUserProfile.setPrimaryPermissionList (prpermissionlist);
    oUserProfile.setRowSecurityPermissionList (rowpermissionlist);
    oUserProfile.setProcessProfilePermissionList (prpermissionlist);
    oUserProfile.setNavigatorHomePermissionList (navigatorhomelist);
    oUserProfile.setLanguageCode (language_cd);
    oUserProfile.setCurrencyCode (currencycode);
    If (multilang_cd.equals("0")) {}
    oUserProfile.setMultiLanguageEnabled (BigDecimal.valueOf (0));
    } else {}
    oUserProfile.setMultiLanguageEnabled (BigDecimal.valueOf (1));
    }
         
    If (emailid.trim () .length () == 0) {}
    If (emailtype.trim () .length () == 0) {}
    Set/Get EmailAddresses Collection field properties - Parent: PS_ROOT Collection
    IUserProfileEmailaddressesCollection oEmailAddressesCollection;
    IUserProfileEmailaddresses oEmailAddresses;
    oEmailAddressesCollection = oUserProfile.getEmailAddresses ();
    oEmailAddresses = oEmailAddressesCollection.item (0);
    oEmailAddresses.setEmailType (emailtype);
    oEmailAddresses.setEmailAddress (emailid);
    oEmailAddresses.setPrimaryEmail("Y");
    } else {}
    log. Debug ("emailtype is empty, not setting do not email address");
    }
    } else {}
    log. Debug ("emailid is empty, not setting do not email address");
    }
                        
         
    Set/Get IDTypes Collection field properties - Parent: PS_ROOT Collection
    IUserProfileIdtypesCollection oIDTypesCollection;
    IUserProfileIdtypes oIDTypes;
    oIDTypesCollection = oUserProfile.getIDTypes ();
    oIDTypes = oIDTypesCollection.item (0);
    If (emplid.trim () .length () == 0) {}
    oIDTypes.setIDType ('NO');
    } else {}
    oIDTypes.setIDType ("EMP");
    Set/Get attributes Collection field properties - Parent: IDTypes Collection
    IUserProfileIdtypesAttributesCollection oAttributesCollection;
    IUserProfileIdtypesAttributes oAttributes;
    oAttributesCollection = oIDTypes.getAttributes ();
    oAttributes = oAttributesCollection.item (0);
    oAttributes.setFieldname ("COST");
    oAttributes.setRecname ("PERSONAL_DATA");
    oAttributes.setAttributeName ("COST");
    oAttributes.setAttributeValue (emplid);
    }
                        
    oUserProfile.setSymbolicID ("SYSADM1");
    oUserProfile.setPassword (operpswd, operpswd);
    Boolean save = oUserProfile.save ();
    log. Debug ("Save:" + save);
                        
    If (! save) {}
    ErrorHandler();
    response = "UNABLE_TO_SAVE";
    } else {}
    response = "SUCCESS";
    }
    Next = true;
    }
                   
    Boolean cancel = oUserProfile.cancel ();
    log. Debug ("Cancel:" + cancel);
    If (! cancel) {}
    ErrorHandler();
    response = "UNABLE_TO_CANCEL";
    }

    } catch (JOAException e) {}
    e.printStackTrace ();
    log. Error ("an error occurred");
    ErrorHandler();
    response = "ERROR";
    }
              
    log.info (CLASS_NAME + ". createUser()---> response =" + response);
    send the response;
         
         
    }
    >

    Add a role

    >
    public String addRole (String oprid, String role) {}
    log.info (CLASS_NAME + ". addRole()---> entries = oprid [" + oprid + "]")
    "] role [" + role + "']"); "
    String response = "";
    Boolean then = false;
              
    try {}
    Get the component Interface *.
    IUserProfile oUserProfile;
    String ciName;
    ciName = 'USER_PROFILE ';
    oUserProfile = oSession.getCompIntfc (ciName) (IUserProfile);
    If (oUserProfile == null) {}
    log. Error ("Can't get a component Interface" + ciName);
    ErrorHandler();
    response = "UNABLE_TO_GET_CI";
    } else {}
    Next = true;
    }
                   
                   
                   
    If {(next)
    Next = false;
    oUserProfile.setUserID (oprid);
    Run Get *.
    Boolean get = oUserProfile.get ();
    log. Debug ("Get:" + get);
    If (! to) {}
    log. Error ("no line does exist for the specified keys. Unable to get the component Interface. ») ;
    ErrorHandler();
    response = "UNABLE_TO_GET_USER";
    } else {}
    Next = true;
    }
    }

    If {(next)
    Next = false;
    Set the Interface Mode of component *.
    oUserProfile.setInteractiveMode (false);
    oUserProfile.setGetHistoryItems (false);
    oUserProfile.setEditHistoryItems (false);
                        
    IUserProfileRolesCollection oRolesCollection;
    IUserProfileRoles oRoles.
    oRolesCollection = oUserProfile.getRoles ();
    oRoles = oRolesCollection.insertItem (oRolesCollection.getCount () - 1);
    for (int l = 0; l)< orolescollection.getcount();="" l++)="">
    If (role.equalsIgnoreCase (oRolesCollection.item (l) .getRoleName ())) {}
    response = "ROLE_ALREADY_EXISTS";
    break;
    }
    If (l == oRolesCollection.getCount () - 1) {}
    oRoles.setRoleName (role);
    Next = true;
    }
    }
    }
                   
    If {(next)
    Next = false;
    Boolean save = oUserProfile.save ();
    log. Debug ("Save:" + save);
                        
    If (! save) {}
    ErrorHandler();
    response = "UNABLE_TO_SAVE";
    } else {}
    response = "SUCCESS";
    }
    Next = true;
    }
                        
                   
    Boolean cancel = oUserProfile.cancel ();
    log. Debug ("Cancel:" + cancel);
    If (! cancel) {}
    ErrorHandler();
    response = "UNABLE_TO_CANCEL";
    }
                             
                   
    } catch (JOAException e) {}
    e.printStackTrace ();
    log. Error ("an error occurred");
    ErrorHandler();
    response = "ERROR";
    }
              
    log.info (CLASS_NAME + ". addRole()---> response =" + response);
    send the response;
    }
    >

    There are a few examples from.

    -Kevin

  • It seems down provide a tftp server for Windows Server 2008 R2 to Microsoft. Where can I get one that is known to work?

    TFTP server

    It seems down provide a tftp server for Windows Server 2008 R2 to Microsoft.

    Where can I get one that is known to work?

    I tried the SolarWinds tftp server, I get an error during installation that says it takes Microsoft .NET Framework 3.5 installed, but I have already installed.

    Hello

    Your question of Windows 7 is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the public on the TechNet site. Please post your question in the following link for assistance:

    Link to the forum:
    http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

  • How the new firmware of tftp to wag160n?

    Hello

    My WAG160N has same problem as described in this post from xellmon

    http://forums.linksysbycisco.com/linksys/board/message?board.id=DSL&thread.id=9859 .

    The cancellation of my warranty but new. (void warranty in a storm). Desperately trying to resurrect WAG160n.

    Details of the device

    Annex WAG160N has

    Firmware 1.00.10

    Is it possible to new firmware tftp in the unit?

    If so, how the new firmware tftp?

    what firmware file I need to download?

    Thank you

    Download the firmware for Annex WAG160N has... Try this link and check if it works... If this isn't the case, then, you need to replace the router.

  • Where can I download the utility of Linksys TFTP.exe?

    Hello everyone, I am trying to upgrade the router I have, and I was wondering if anyone knew where to find the Linksys TFTP.exe utility.  Apparently Linksys decided to reorganize their public FTP and the file is no longer anywhere to be found.  I've been linked to ftp://ftp.linksys.com/pub/network/tftp.exe but I get an error message "550 Failed to Change Directory".  I went through all the directories on the public FTP server and I'm at a loss.  Can anyone help?  Thank you 1 million.

    Hello scabflak, you can get it here. Simply select the 4.0 version and find the utility under drivers and downloads.

    Good luck!

  • cannot no new firmware tftp to e2000

    I'm Flash a firmware for an E2000 using the TFTP (supposedly) integrated in the bootstrapper.  I don't seem to have no luck.

    When I turn on the router, it is not even repsond ping 192.168.1.1 for 12 seconds, time at which it is already started in the currently installed firmware.

    I tried just pushing the firmware several times with a 1 second delay and turn the router but he abandoned only about 12 seconds later with an invalid password, because at this point, the router is started.

    What Miss me on the ability to Flash this thing?

    So my goal here was to get OpenWRT on this router, but the OpenWRT firmware for this router doesn't suppor flashed from firmware 'factory' Linksys.

    But DD - WRT firmware does.  So I updated (because DD - WRT Linksys firmware update) to DD - WRT first.

    But ultimately I wanted to OpenWRT on it, so I copied the firmware OpenWRT to the router and then used mtd - r write /tmp/openwrt_firmware.bin linux, but it was actually the wrong thing to do.  I guess that invalidated the image on the router and when I restarted it, the bootstrapper tftp server was actually ready to take a new firmware.

    In any case, I OpenWRT on there now and this router now acts as a distribution switch of VLAN (tagged trunk in, 4 networks not marked on) for my house.

  • BEFW11S4 v4: cannot download from LinkSys Web site tftp.exe

    Hi all!

    I am a new user on this forum.  I've seen a lot of useful information here, so I KNOW that someone has the answer to my problem.

    The power light on my trusty BEFW11S4 v4 flashes and nothing I tried to solve the problem has worked.  I downloaded the latest firmware (1.52.03) but I can't go to the router configuration page.  So says the site Web of LinkSys, you can go in the back door by using their routine tftp.exe.  It is, whenever I try to download I get an error message "Unable to connect" Windows.

    Anyone know where I can download the correct tftp.exe file for my unit so I can try to update the firmware?

    Thanks in advance for any help you can give me.

    I thank very you much for the link to the download.  I'm on the road right now, but I will try this fix as soon as I get back.  I'll let everyone know how it comes out.  Thanks again!

  • Force10 S4810P start endless loop when you try to start using TFTP

    The image I have on the machine is damaged and will and therefore no longer starts. So I downloaded the image of the site of Force10 already on this device. (AFP - SE - 8.3.7.0.bin) and this is what I see.

    -Online boot
    The main line of seed starting...
    ENET 100BT/FD from
    Speed: 100, full-duplex
    ETSEC3 device using
    TFTP server 192.168.0.21; Our IP address is 192.168.0.23
    File name ' OTF - SE - 8.3.7.0.bin'.
    Load address: 0 x 6400000
    Loading: #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    #################################################################
    ###########################################
    fact
    Bytes transferred = 22571135 (158687f in hexadecimal)
    WARNING: setting the memory available for 30000000
    # Boot the kernel of the Image of the legacy at 064000f0...
    Image name: netbsd
    Image type: the NetBSD's PowerPC kernel Image (gzip compressed)
    Data size: 7416792 bytes = 7.1 MB
    Load address: 00100040
    Entry point: 00100040
    Checksum checking... Ok
    Image of the core decompression... Ok
    CPLD: HW Watchdog disabled
    # The control transfer of NetBSD stage charger 2 (address 00100040)...

    The core dump information is sent @ 0 x 84000

    Copyright (c) 2005-2010 Force10 Networks, Inc. All rights reserved.
    Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002
    The NetBSD Foundation, Inc. All rights reserved.
    Copyright (c) 1982, 1986, 1989, 1991, 1993
    The regents of the University of California. All rights reserved.

    Force10 Release 8.3.7.0
    NetBSD 1.6.1 (S4810) #0: Thu Dec 16 11:56:36 PST 2010
    Build@build-SJC-74: / work/build/buildSpaces/build19/E8-3-7/SW-NetBSD/usr/src/sys/arch/bacardi/compilation/S4810
    Model: Freescale Semiconductor CDS
    total memory = 2048 MB
    to use memory = 1960 MB
    using pads of 2000 containing 8000 KB of memory
    boot device:
    root on discharges md0a on md0b
    inittodr: RTC absent - CHECK AND RESET THE DATE.
    type of root file system: ffs
    LD0 to sdmmc0: 8 GB MID: 0x61 OID: 0x4e4c S/N: 0xb411f3

    LD0: 4065 cyl, 64 heads, s 63, 8003 MB, 512 bytes/sect x 16390144 sectors
    ignoring SIGQUIT SIGTSTP and SIGINFO

    Seizure of Jumpstart app:
    The initialization of the runtime directories
    JumpStart: initialization of the network is located in the boot line
    Add a 192.168.0.23 host: gateway 127.0.0.1
    Add net 192.168.0.23: gateway 192.168.0.23
    Add net 0.0.0.0: gateway 192.168.0.1: network is unreachable
    TFTP 192.168.0.21
    binary mode
    get the OTF - SE - 8.3.7.0.bin /force10/rd/tgtimg/FTOS-SE-8.3.7.0.bin
    TFTP: sendto: cannot assign requested address
    TFTP > tftp > tftp > boot Cp: ExtractReleaseHdr failed: err = 0
    start-up of CP: CheckReleaseImage: ExtractReleaseHdr failed
    TFTP 192.168.0.21
    binary mode
    get the OTF - SE - 8.3.7.0.bin /force10/rd/tgtimg/FTOS-SE-8.3.7.0.bin
    TFTP: sendto: cannot assign requested address
    TFTP > tftp > tftp > boot Cp: ExtractReleaseHdr failed: err = 9
    start-up of CP: CheckReleaseImage: ExtractReleaseHdr failed
    TFTP 192.168.0.21
    binary mode
    get the OTF - SE - 8.3.7.0.bin /force10/rd/tgtimg/FTOS-SE-8.3.7.0.bin
    TFTP: sendto: cannot assign requested address
    TFTP > tftp > tftp > boot Cp: ExtractReleaseHdr failed: err = 9
    start-up of CP: CheckReleaseImage: ExtractReleaseHdr failed
    synchronization of disks... done
    reset

    ---------------------------------------------------------------------------------------------

    That's how I env boot. installation program.

    -Online printenv
    BootDelay = 5
    BaudRate = 9600
    loads_echo = 1
    eth1addr = 00:E0:0 C: 02: 01:FD
    eth2addr = 00:E0:0 C: 02: 02:FD
    eth3addr = 00:E0:0 C: 02: 03:FD
    pre-launch = mii write 0 x 1 0x1c 0xfcad; Mii write 0 x 1 0 x 00 0 x 0140; Mii write 0 x 1 0x1c 0xfcac; Mii write 0 x 1 0x1c 0xb4ef;
    RootPath = / opt/nfsroot
    host name = unknown
    LoadAddr = 6400000
    uboot_filesize = 0 x 80000
    tftpflash = tftpboot $loadaddr $uboot; protect the 0xfff80000 + $uboot_filesize; erase the 0xfff80000 + $uboot_filesize; CP.b $loadaddr 0xfff80000 $uboot_filesize. protect on 0xfff80000 + $uboot_filesize; CMP.b $loadaddr 0xfff80000 $uboot_filesize
    ethact = eTSEC3
    ethaddr = 00:01:E8:8 B: 13:8 D
    mgmtautoneg = true
    mgmtspeed100 = true
    mgmtfullduplex = true
    uboot = u - boot.bin
    158687F = file size
    fileaddr = 6400000
    gatewayip = 192.168.0.1
    IPAddr = 192.168.0.23
    ServerIP = 192.168.0.21
    secondary_boot = f10boot tftp://192.168.0.21/FTOS-SE-8.3.7.0.bin
    primary_boot = f10boot tftp://192.168.0.21/FTOS-SE-8.3.7.0.bin
    default_boot = f10boot tftp://192.168.0.21/FTOS-SE-8.3.7.0.bin
    stdin = series
    stdout = series
    stderr = series
    bootcmd = echo Booting main line boot...; $primary_boot start; echo Failed; echo Booting secondary line of boot...; $secondary_boot start; echo Failed; echo Booting default line boot...; $default_boot start; echo Failed; echo restarting...; reset

    The environment size: 1218/8188 bytes
    =>

    I do not have a guarantee of current on this unit, any help would be most appreciated. If more information is needed please let me know and I will it get to you.

    OK, I was able to get the unit to start all the way using the image that is on the flash. I had to remove the startup for the gateway, the system and the tftp server configuration information. Once I did the unit booted all the way. Now to upgrade this thing.

  • the source for copy tftp address configuration

    Hello

    on cisco, I can define the interface source for tftp transfers.  I can do this on 8024f? or 8132F

    Here are the valid destination URL

    TFTP: / / {IPAddress | hostname} / path/file name
    {SCP://{User@ipaddresss | hostname} / path/file name
    {sftp://{User@IPAddress | hostname} / path/file name
    Flash://filename
    USB://filename/filename

    There is no option for a specific interface.

  • How to save files to switch to tftp Server configuration

    Hello!
    I want to copy running config/start switch 8164 to the TFTP server config.

    On the desktop, I use Cisco TFTP's that works very well for the copy of the files beetwen cisco devices.

    but I don't know what good command of switches dell.
    It is said that need access to the tftp file path, but I've tried and failed with the following syntax:

    copy launch tftp:/192.168.1.14/c:/backup.txt

    Let me know.
    Kind regards!

    Do not have registration in .txt format questions

    copy the startup-config tftp://192.168.1.14/startup.txt

    copy the running-config tftp://192.168.1.14/running.txt

  • IOS image using TFTP

    Hi all

    I have several 2950,2960,3550,3750 Switch

    they performed old IOS (I don't know the exact version, but I'm sure they don't support all the features and upgrade to the image of EI and newer)

    so I saw two articles

    http://www.Cisco.com/c/en/us/support/docs/switches/catalyst-2950-series-...

    and

    http://www.Cisco.com/c/en/us/TD/docs/switches/LAN/catalyst2960x/software...

    -----------------------

    so my question is to upgrade my ios to new version can I use two commands? and what is different between each CLI?

    Command1:

    first---> delete flash:

    then:

    Copy tftp flash:

    IP:

    name:

    .....

    order 2:

    Archive Download-sw [directory] / crush/recharging tftp:[[//location]/directory]/image-name1.tar [image-name2.tar image image name3.tar - name4.tar]

    So what is or what are the different between 2 commands above?

    can I use two of them or not?

    --------------------------------------------------

    question 2:

    How can I download the latest version of cisco layer 2 switch (2950, 2960) and layer 3 (3550,3750)?

    How can I find out what are the different differ between the two IOS image?  only I need (* .bin) no CMS (* .tar)

    Best wishes

    Thank you very much

    Hello

    I'll give you the method that I use to upgrade the L2 or L3 switches:

    1 install the new image of page Web of Cisco (cisco.com--> support--> DOWNLOAD), I advise you do not install the last being rather install the recommended. (It will have a star next to it)

    2. check if the version that you have installed if it has bugs.

    3. install a TFTP server on a computer that has access to an IP address on the switch (example: you can configure an IP address for management by using the command "Int Vlan")

    4 - Check the Flash on the switch by using the command "show Flash" to make sure that you have enough space.

    5 put the image in the folder root of the TFTP server on your computer.

    6. question a copy SERVICE TFTP to make a backup of your configuration. (it is always good to do a backup)

    7. issue a copy TFTP Flash to make the image to be copied on the FLASH of the switch.

    8-do a "show run | "I boot" to see images of starting on the switch.

    9. do 'no boot system XXXXX"to the old images essentially copy the output of the command in step 8 and just put none initially.

    10. do 'boot system THENEWIMAGE.

    11 - this step is not required but I highly recommend it, you can add the old image using 'boot system OLDIMAGE' he will place the old image as a secondary image just in case where for some reason any main image does not start.

    12 save changes using "copy run start".

    13 - reload

    14. use the 'view version' to ensure that the new version is in place.

    It is the process of upgrading the software on the switch. It will be useful.

    Note: Make sure that you have console access to the switch before performing the upgrade, just in case something goes wrong.

    Best regards

  • The copy from the tftp server to Flash

    I have the controls down to the copy from a tftp server to Flash, but cannot connect to the server tftp through the console.

    I need to set an IP address on an interface vlan, assign a port to the vlan and then plug my computer/server tftp running into the port?

    What is the best practice to access a router/switch tftp server?

    1 you must have a physical port with an ip address or interface vlan by ip address and the port assigned to this interface on your router/switch

    2 your pc needs to have an address ip in the same range make sure you can ping between the pc interface and router first then connectivity is there for the tftp to work

    3. make sure that no local firewall is running on your pc, sometimes this can cause the tftp to fail because it can be blocked according to what is running

    4. make sure that there is enough memory your camera flash to take the new image, your tftp server is running on your pc and the root folder is set int ready to load on the router/switch with your IOS tftp server

    http://www.Cisco.com/c/en/us/support/docs/routers/2500-series-routers/15...

  • CUCM 7.1 (3) TFTP Auth Fail

    Since the upgrade of CUCM 7.1.3.10000 - 11 all new phone plugged into the system gets an 'auth fail"from the TFTP server when you try to upgrade the firmware to the version that comes with 7.1 (3). Phones that were saved before the upgrade work fine. I see the same behanviour on our non-production environment, which is also in 7.1.3 - 10000-11.

    Firmware of the phone for a 7.1 (3) on the plateau of 7961G is SCCP41.8 - 5-2SR1S

    Someone at - sle seen this behavior before... did someone else turns 7.1 (3) yet?

    Hello world

    My problem was that the Firmware of the phone must first be 8.5.2 and after that, the phone can go to 8.5.3. What is written in the Relase Notes

    http://www.Cisco.com/en/us/docs/voice_ip_comm/cuipph/firmware/8_5_3/English/release/notes/7900_853.html

    Concerning

  • Cannot TFTP remote VPN access

    I am accessing a remote site with a VPN client. I am trying to download the config of the router for this laptop remotely with a server tftp on it.

    This does not work, and I think it is because it is the supply of the external interface. Is this correct? If so how to fix it?

    Thanks for help.

    Antony

    To fix this problem set up the router with ip tftp source interface

    This will get the router to use the address of the interface specified as the source for TFTP.

    HTH

    Rick

Maybe you are looking for

  • Contact information of accessible emergency since iOS 10 lock screen?

    First responders can access emergency on my iPhone contact information if I am not aware to unlock?

  • Full case for S7 - 392?

    Hello Unfortunately my s7 had a bad fall in the corners of metal to the right of the screen & body bending. I checked spare parts, some Chinese sellers offering S7 - 391 - I don't think that this would correspond to 392... Any help guys?

  • Sonic - Record now

    'Sonic - Record Now' I had come with my Dell PC, but it has not worked for these days. Is it possible to remove it and get a free download to reinstall? Is there something better to burn audio CDs or music quickly and easily? Thanks for any help and

  • Removed (uninstalled) Sound Max by accident.

    How can I reinstall Sound Max I "deleted" by accident.  Retore system does not / will not work. I have no "sound". Help!

  • Is there a way to synchronize files between two computers?

    I'm trying to find a program or a feature that will synchronize your laptop with a desktop computer.  for example the folder My Documents reproduced on two PCs.