Alteon Application Switch

 You have to use Telnet, Telnet, TFTP as your settings, but if you do this will work.

  • You have seriously screwed up one line here preventing NCM from loading template

    <Command Name="PreCommand" Value="{CRLF}$ RegEx="[global command, always available]"/> 

    should be

    <Command Name="PreCommand" Value="${CRLF}" RegEx="[global command, always available]"/> 

    And below (no need for appending $ at the end)

    <Command Name="DownloadConfigIndirect" Value="/cfg/ptcfg ${StorageAddress} ${StorageFilename}${CRLF}$"/>

    <Command Name="UploadConfigIndirect" Value="/cfg/gtcfg ${StorageAddress} ${StorageFilename}${CRLF}$"/>

    change to:

    <Command Name="DownloadConfigIndirect" Value="/cfg/ptcfg ${StorageAddress} ${StorageFilename}${CRLF}"/>

    <Command Name="UploadConfigIndirect" Value="/cfg/gtcfg ${StorageAddress} ${StorageFilename}${CRLF}"/>

  • Works well with the change Yann specified. Does anyone know of a way to do this with a read only account so you don't have to use one with admin privileges?
  • Only works if certadmin export keys are generated. I'm continuing to work on a version that does not require alternate upload methods.
  • The PreCommand is improperly formatted.

    You will have to modify it to get it to work otherwise, NCM will not be able to parse the file and will tell you that it cannot find the template.

    "/>

    should be:



    a " was missing and the $ was at the end of the variable for the Value.