Update multiple firewalls with one TFTP download

Good evening, forum participants!
I'm in a bit of a conundrum and need to ask the group a question:
I need to update 21 firewalls that a previous consultant-vendor hasn't updated in several major versions.  The previous vendor didn't feel it important to maintain a current contract license on any of those firewalls to be able to update the software.  I don't want to purchase 21 service contracts in order to be able to update all the firewalls.
Can I purchase one contract so I can download all of the versions of the software needed and use that software to update every firewall?  I just want to download once to my TFTP server and be done.  Is that possible?
Your reply and quick response is greatly appreciated!
Thanks!
-Ed

Hello,
Can you let us know what is the model number of the devices? I'm just asking because, on the Small Business devices, you DO NOT need a contract to download any firmware version, they are all readily available for anyone to download with or without a contract.
Please let us know.

Similar Messages

  • Update multiple records with one submit?

    I can't for the life of me figure out how to do this. I have checkboxes with primary key id's listed as the value in a repeat region. I want to perform an update on 2 columns for all id's checked.
    SUDEO CODE
    <form>
    <cfoutput query ....
    other textfields...
               <input name="checkbox" type="checkbox" id="checkbox" value="#table.id#" />
    </cfoutput>
    SUBMIT BUTTON
    </form>
    My update statement:
    UPDATE table
    SET column1 = 1, column2 ='whatever'
    WHERE id IN (<cfqueryparam cfsqltype="cf_sql_integer" value="#TRIM(FORM.checkbox)#">)
    </cfquery>
    It only updates if I check one box, does nothing when more than one is selected.
    I also tried looping over the update statement but nothing seems to work.

    You were missing the list attribute to cfqueryparam (you can also
    replace the cfif with a null attribute on the cfqueryparam but it has
    the disadvantage of sending the query to the db: null="#Not
    Len(Trim(form.checkbox))#").
    <cfif Len(Trim(form.checkbox))>
    <cfquery ...>
    UPDATE table
    SET column1 = 1, column2 = 'whatever'
    WHERE id IN (<cfqueryparam cfsqltype="cf_sql_integer"
    value="#form.checkbox#" list="true">)
    </cfquery>
    </cfif>
    Mack

  • Updating multiple devices with one download

    Hi all,
         I have two iPods that need updating. Can I download the update once to update both devices?
    Thanks

    Welcome to the Apple Community.
    Ideally you should each have your own iCloud account, that way you can each manage your own mail, contacts, calendars, documents etc and avoid unintentional deletions and unwanted editing. If there is information you wish to share between you, this can be done with a secondary account.
    Having separate iCloud accounts, doesn't mean you have to have separate iTunes accounts, so whilst you keep your personal data separate, you can continue to share music, apps, books, TV shows, movies etc.

  • Update Multiple DataAdapters with one Sql Transaction

    hello, am trying to implement a save routine , common scenario master detail data . However after the first save succeed the second time the save fails with the common message.
    Concurrency Violation The Update affect....  
    I have the following function Save
    Private Function _Save() As Boolean
    _Save = False
    Dim con As New SqlClient.SqlConnection(connectionString)
    con.Open()
    Dim Tran As SqlClient.SqlTransaction = con.BeginTransaction
    Try
    MasterTA.InsertCommand = Masterbuilder.GetInsertCommand
    MasterTA.UpdateCommand = Masterbuilder.GetUpdateCommand
    MasterTA.DeleteCommand = Masterbuilder.GetDeleteCommand
    MasterTA.InsertCommand.Transaction = Tran
    MasterTA.DeleteCommand.Transaction = Tran
    MasterTA.UpdateCommand.Transaction = Tran
    MasterTA.InsertCommand.Connection = con
    MasterTA.DeleteCommand.Connection = con
    MasterTA.UpdateCommand.Connection = con
    DetailsTA.InsertCommand = DetailsBuilder.GetInsertCommand
    DetailsTA.UpdateCommand = DetailsBuilder.GetUpdateCommand
    DetailsTA.DeleteCommand = DetailsBuilder.GetDeleteCommand
    DetailsTA.InsertCommand.Transaction = Tran
    DetailsTA.UpdateCommand.Transaction = Tran
    DetailsTA.DeleteCommand.Transaction = Tran
    DetailsTA.InsertCommand.Connection = con
    DetailsTA.UpdateCommand.Connection = con
    DetailsTA.DeleteCommand.Connection = con
    MasterTA.Update(DS.Tables(0))
    DetailsTA.Update(DS.Tables(1))
    UpdateLedger(Tran)
    Tran.Commit()
    Return True
    Catch ex As Exception
    Tran.Rollback()
    MessageBox.Show(ex.Message, My.Application.Info.Title, MessageBoxButton.OK, MessageBoxImage.Error)
    Return False
    Finally
    con = Nothing
    Tran = Nothing
    End Try
    End Function
    I am using a CommandBuilder
    if the Adpater 1 pass and the adapter 2 fail , I need to Re Fill my adapters again in order to avoid the concurrency violation . I CANNOT refill because I already have changes in the  DataTables I don't want the user to loose their information
    and start writing them again.
     The FULL procedure is successfully executed if no Exception occur with in the try catch
    I was able to eliminate the concurrency violation by  setting the
    commandBuilder.ConfilctOption=ConflictOption.OverwriteChanges but this will fail to update the correct changes the 2nd time to the database
    the only possible solution that I come  close to it. Before attempt to save anything
    Is to copy the datatables
    After update Fail Or Not
    Clear the DataTables from the Dataset
    Merge The dataTables from the DataSet with the Previous Copy Tables
    Exception Occure (Violation of primary key constraint '.....' attempt to insert a duplicate key)
    My IDS are not Auto Increment .
    I Really really need to use a transaction with DataAdapters ,
    I Also try the System.Transactions.TransactionScope
    but I have 2 problems
    Sometimes raise an error from the Server
    It doesn't work always as it behaves almost the same as I describe the problems above (Works only The first time)
    stelios ----------

    this the StackTrace when the error is ExecuteReader requires the command to have....
     at System.Data.Common.DbDataAdapter.UpdatingRowStatusErrors(RowUpdatingEventArgs rowUpdatedEvent, DataRow dataRow)
       at System.Data.Common.DbDataAdapter.Update(DataRow[] dataRows, DataTableMapping tableMapping)
       at System.Data.Common.DbDataAdapter.UpdateFromDataTable(DataTable dataTable, DataTableMapping tableMapping)
       at System.Data.Common.DbDataAdapter.Update(DataTable dataTable)
    And this is the StackTrace for the error Concurrency Violation
       at System.Data.Common.DbDataAdapter.UpdatedRowStatusErrors(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, Int32 commandCount)
       at System.Data.Common.DbDataAdapter.UpdatedRowStatus(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, Int32 commandCount)
       at System.Data.Common.DbDataAdapter.Update(DataRow[] dataRows, DataTableMapping tableMapping)
       at System.Data.Common.DbDataAdapter.UpdateFromDataTable(DataTable dataTable, DataTableMapping tableMapping)
       at System.Data.Common.DbDataAdapter.Update(DataTable dataTable)
    stelios ----------

  • Updating multiple rows with different values

    Hi!
    I have a problem. I need to update more then 1000 rows with different values. How can I do it?
    For exsample i have table:
    id; color, date,
    1 red
    2 green
    3 white
    I need to update date field.
    Update table
    set date='01.02.03'
    where id=1
    Update table
    set date='01.03.03'
    where id=2
    Maybe there is way how to update multiple rows at one query?
    Sorry for my bad english.
    Thanks!

    Hi,
    You can try this
    UPDATE TABLE SET DATE = CASE
                        WHEN ID = 1 THEN TO_DATE('01-02-03','DD-MM-RR')
                        WHEN ID = 2 THEN TO_DATE('01-03-03','DD-MM-RR')
                        ENDcheers
    VT

  • Update multiple records on one page php/mysql

    Hi folks,
    I am trying to adapt a page to offer the option to update multiple records on one page.
    The intention is to edit FAQ categories which are contained in a table with just two fields - the category and an id.
    The page lists each categories in a form with a submit button which is then repeated for each record in the recordset.
    Unfortunately my plan didn't work and only the first record updates as intended.
    Can anyone suggest how I can make it work?
    Here's the code I have so far.
    ************** The Update Code *****************
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if (!isset($mm_abort_edit) || !$mm_abort_edit) {
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) {
      $updateSQL = sprintf("UPDATE faq_categories SET category=%s WHERE id=%s",
                           GetSQLValueString($_POST['category'], "text"),
                           GetSQLValueString($_POST['id'], "int"));
      mysql_select_db($database_con_mysite, $con_mysite);
      $Result1 = mysql_query($updateSQL, $con_mysite) or die(mysql_error());
      $updateGoTo = "faq-category-edit.php
      if (isset($_SERVER['QUERY_STRING'])) {
        $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
        $updateGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $updateGoTo));
    ************** Update Code Ends *****************
    ************** The Form *****************
    <form name="frm_editcategory" id="frm_editcategory" method="POST" action="<?php echo $editFormAction; ?>">
      <?php do { ?>
    <fieldset>
              <input name="id" type="hidden" value="<?php echo $row_rs_faqcategory['id']; ?>" />
              <input name="category" type="text" class="formrightcolumn"  value="<?php echo $row_rs_faqcategory['category']; ?>" />
              <input name="save" type="submit" class="submitbutton" id="save" value="save" />
    </fieldset>
              <input type="hidden" name="MM_update" value="form1" />
       <?php } while ($row_rs_faqcategory = mysql_fetch_assoc($rs_faqcategory)); ?>
    </form>
    ************** The Form Ends *****************
    Cheers
    Dave

    What does debugging tell you? What's the value of each of the variables? Did you try using regular echo statements to monitor what's going on? That's what I always do whenever I am stuck in my PHP coding.

  • Create multiple folders with one click on documents tab in BP in SAP CRM

    Hi Experts,
    I have a requirement to create multiple folders by clicking on a button in Documents tab in BP transaction in CRM. In standard process by clicking on create folder button we create folders. we want to create multiple folders with one single click ( i guess we can develop another button for that) folder name will be hard coded. Kindly let me know , how this can be achieved.

    Hi Experts,
    I have a requirement to create multiple folders by clicking on a button in Documents tab in BP transaction in CRM. In standard process by clicking on create folder button we create folders. we want to create multiple folders with one single click ( i guess we can develop another button for that) folder name will be hard coded. Kindly let me know , how this can be achieved.

  • Multiple iPhones with one one computer

    I was using multiple iPhones with one one computer, each iPhone device has it's Owen Apple ID. When I connected my device. I got my mothers photos, contacts &amp; applications. All my applications are deleted, is there a way to retrieve my iPhones photos and applications ?

    Sign out of your mom's account in itunes, then sign in with your account, then restore your phone from your itunes backup.

  • Multiple selections to multiple layers or multiple files with one go ?

    Hi,
    how to convert multiple selections to multiple layers or multiple files with one go ?
    Thanks!

    You may want to ask over at
    http://forums.adobe.com/community/photoshop/photoshop_scripting?view=discussions
    or
    http://ps-scripts.com/bb/
    I think there are Scripts about for the task or at least ones that could be adapted without too much problems.
    The usual approach is, I think, creating a Work Path from a Selection and then using (expanded) Selections based on the individual subPathItems to intersect with the original selection.
    Of course there are possibilities for bad results …

  • Photoshop crashes while using multiple windows with one image

    Has anyone else encountered the following problem:
    Photoshop CS4 crashes sooner or later when working with multiple windows with one image (window->arrange->new window for...).
    I remember having same problem since CS2. Is this a bug in Photoshop or am I having a bad luck?
    Technical specifics:
    Ps CS4, iMac, 21.5, 10.6

    Don't know.  I haven't heard of other people having that problem.
    Do you have a crash report I could look at?
    Or have you attached your email to crash reports sent to Adobe and can you tell me the date on one of them?

  • Create multiple delivery with one invoice

    Hi all,
    can you tell me how to do multiple delivery with one invoice,
    i tried in vf01 by giving their my 3 delivery nos but it is generating three invoices
    pls explain this in details
    points will be rewarded
    regards,
    smmmmmm

    Dear Sameer
    As per your requirement run the Tcode VF04 (Billing Due list) and select the Delivery Documents for which you want to to have single Billing Document by clicking on Collective Billing document/Online  Push Button in that screen.
    To Have Single Billing Document for Multiple Delivery you need to have Payer,Terms of Payment,Incoterms(part 1 and part2) same for all materials orelse the billing document will split and this split analysis is visible during creating of Billing document.
    Hope this will help you in solving your problem.
    Regards
    PSH

  • Select or deselect multiple rows with one single selection  event

    Does anyone know how to create a JTable which can select or deselect multiple rows with one single selection event in JTable. Fore example, if the table has
    row1
    row2
    row3
    row4
    row5
    row6
    What I need is when user select row1 or row2, both row1 and row2 should be set to be selected. Then if user press CTRL and click one of row3 or row4, both of them should be selected including the previouse selected row1 and row2.
    For deselection, if row1 and row2 are selected, when users deselect one of row1 or row2, both of them should be deselected.
    Hopefully someone can give me a hint.

    Here is a partial solution using a JList. Only one line gets highlighted when the user makes a selection in the list. But, two lines are returned. There is a blank line between every two lines.
         private void addLineToList() {
              String a = f_one.getText();
              String b = f_two.getText();
              if (a.length() == 0) {
                   Utils.showInformationMessage("Item field is empty.");
                   f_one.requestFocusInWindow();
                   return;
              if (b.length() == 0) {
                   Utils.showInformationMessage("Match field is empty.");
                   f_two.requestFocusInWindow();
                   return;
              model.addElement("item: " + a);
              model.addElement("match: " + b);
              model.addElement(" ");
              int size = model.getSize();
              pairList.setSelectedIndex(size - 3);
              f_one.setText("");
              f_two.setText("");
              f_one.requestFocusInWindow();
         private void editList() {
              if (pairList.getSelectedValue().toString().equalsIgnoreCase(" ")) {
                   Toolkit.getDefaultToolkit().beep();
                   f_one.requestFocusInWindow();
                   return;
              if (!f_one.getText().equals("")) {
                   int result = JOptionPane.showConfirmDialog(this,
                   "The Item field contains text. Replace the text?",
                   "Flash Card Activity", JOptionPane.YES_NO_OPTION,
                   OptionPane.INFORMATION_MESSAGE);
                   if (result == JOptionPane.NO_OPTION) return;
              if (!f_two.getText().equals("")) {
                   int result = JOptionPane.showConfirmDialog(this,
                   "The Match field contains text. Replace the text?",
                   "Flash Card Activity", JOptionPane.YES_NO_OPTION,
                   JOptionPane.INFORMATION_MESSAGE);
                   if (result == JOptionPane.NO_OPTION) return;
              String item = "";
              String match = "";
              int index = pairList.getSelectedIndex();
              String choice = model.getElementAt(index).toString();
              if (choice.startsWith("item")) {
                   item = choice;
                   match = model.getElementAt(index + 1).toString();
                   model.remove(index);
                   model.remove(index);
                   model.remove(index);
              else {
                   item = model.getElementAt(index - 1).toString();
                   match = choice;
                   model.remove(index + 1);
                   model.remove(index);
                   model.remove(index - 1);
              int size = model.getSize();
              if (size > 2) {
                   pairList.setSelectedIndex(size - 2);
              f_one.setText(item.substring(6));
              f_two.setText(match.substring(7));
              f_one.requestFocusInWindow();
         }

  • How download from multiple accounts with one button

    What do I do to have multiple accounts checked and messages downloaded without opening the get mail dropdown. I used to just hit the get mail button.

    I use this add-on:
    https://addons.mozilla.org/en-US/thunderbird/addon/get-selected-mails/
    which lets you define various sets of email accounts. Any of these sets can be defined as the default action.
    There is also a GetAllMails add-on:
    https://addons.mozilla.org/en-US/thunderbird/addon/get-all-mails/

  • How do I install lion to multiple macs with a single download from the Mac App Store?

    I want to upgrade multiple Macs, but I don't want to download the update multiple times.
    Has Apple posted instructions on this?  My searches have been in vain.
    Bob

    Upgrading to OS X 10.7 FAQ
    Backup your user files and folders manually (drag and drop) from all partitions/OS's installed to a external powered drive and disconnect this drive, before proceeding in addition to TimeMachine, Bootable Clones etc.
    You need to make sure you're running the latest version of Snow Leopard10.6.8
    Click the "Apple" symbol in the top left corner of your screen and select "About This Mac."
    Make sure you're running version 10.6.8.
    If not, click "Software Update" from the same Apple menu and update your system.
    Then when that's finished launch the MacAppStore from the same menu.
    You'll see the giant Lion banner across the top. Click on it.
    This brings you to the app page for Lion. It costs $29.99 -- click the price, then click "Buy App."
    Free Lion? check here
    http://www.apple.com/macosx/uptodate/
    You'll be prompted to sign in with your iTunes ID. After that, yourdownload / upgrade begins.
    BackupLion
    http://www.eggfreckles.net/tech/burning-a-lion-boot-disc/
    http://eggfreckles.net/tech/installing-lion-clean/
    Check Apple's license details throughly before usingorinstalling Lion.
    This is what binds you legally, notwhat users say or sites suggest you can do.
    Other Lion FAQ's answered.
    No"Rosetta" sorry. 
    Someof your older programs (like Appleworks) that depend upon it will notwork.
    OS X Lion cannot be installed on these Macs:
    1:Any PowerPC processor Mac (G3, G4, G5)
    2:Any Intel Mac on this list:
    iMac4,1Early(Jan-Sept) 2006 17"
    iMac4,1Early(Jan-Sept) 2006 20"
    iMac4,2Mid(July-Sept) 2006 17"
    MacMini1,1(Feb-Sept) Early 2006
    MacMini1,1(Sept-Aug) Late 2006
    MacBook1,113"(May-Nov 2006)
    MacBookPro1,115" A1150 (Jan-May 2006)
    MacBookPro1,217" A1151 (Aprl-Oct 2006)
    MacBookPro1,115" A1175 (May-Oct 2006)
    Look under the Apple Menu > About this Mac > More information for you rmachine details.
    (there are reports of hacking Lion to work on 32 bit Intel Core DuoMac's, it's unsupported by Apple and not advised)
    Didn't get Lion?
    These are user to user support forums and Apple doesn't respond here,
    We users can't speak for Apple about your free Lion status or problems downloading, reissuing a download.
    It's possible Apple could be spacing out the downloads as not to knock theservers offline. So be patient.
    If after a week or so when the initial rush is over, and you still haven't gotten your Lion, I suggest you contact Apple.
    Mission critical
    If your using Mac's in a mission critical type environment or have third party hardware or software you must rely upon working correctly. It's advised to wait until all the bugs, driver updates, third party software and other issues are resolved before upgrading. This might take several months. Then if you do so, do one machine at a time andcarefully test everything before full deployment.

  • How do I create multiple TEBs with one submit button on one page in Captivate 7

    I've read other posts on this topic (which refer primarily to earlier versions of Captivate) and am still at a loss as to how to put multiple text entry boxes on a page with one submit button. Here's my scenario:
    I am creating test questions.
    Each test question has multiple text entry boxes (for numbers only).
    Student should be able to enter numbers into the textboxes in any order.
    Then there is one Submit button that should initiate validating all the text entries, and move to a scoring page (so I can test it). (What would be best is if this button not only did the above, but also submitted scores to the LMS.  But that is not my question at this time.)
    I'd like this question to be set up as a template so that I can duplicate it, be able to add or delete text boxes and change the values required in the text boxes.  
    Here is an image of a sample question page with multiple TEBs. The yellow boxes tell the student where they need to enter text:
    Any help or direction to help is appreciated!!

    I think the problem here is that Arlhoolie wants all of the different TEBs to behave as if they were part of a single interaction that submits only ONE result to the quiz.  Using multiple TEBs in Captivate means that you have multiple scored objects and therefore multiple results being submitted to the quiz.
    If you want a single Success or Failure result submitted to the quiz based on the results from multiple interactive objects then there really is no simple way to do it.  But you could try using the Infosemantics Interactive Master widget to combine all the TEBs as slave objects that report to the Master Widget, which then reports a single score to the quiz based on the results from the slave objects.
    You can learn more about the Master widget here:
    http://www.infosemantics.com.au/adobe-captivate-widgets/interactive-master
    http://www.infosemantics.com.au/interactivemaster/help
    You can download a free trial version of the widget here:
    http://www.infosemantics.com.au/adobe-captivate-widgets/download-free-trial-widgets
    One caveat you should be aware of is that this widget is not HTML5 compatible.

Maybe you are looking for

  • Ipod connected but not recognized

    When I connect my ipod it charges but is not recognized by itunes. Usually when I have something connected to the usb port it has a little icon on my toolbar on the bottom of my screen...that doesn't happen with this. For some reason I think I select

  • How come I cant play my content on the TV when I push play

    I recently sync'd my computer to the apple TV and I can clearly see my library and al my shows on TV. But when I press play to view them It doesnt play unless I  fast forward and then I can see the content but Forwraded.

  • ARGH HELP NEEDED DESPERATELY

    I've just found out my processor is 2.33 GHz (top of the line when i got my mac back in march 2007) and i need a 2.5 to install leopard, problem is i already have the discs its tell me its ot possible to install leopard. is there a way around this wi

  • Regd:Export And Import

    Hi, Can i get the steps and syntax of expdp and impdp. Or else any links . I could find only forums Regards, Simma......

  • Working with Data Field (XMLTYTPE)

    XMLTYPE is a new type of data element I have yet to work with and I am seeking some guidance as how best to approach this in order to display the contents of these fields. I have the XSD available to me which I believe I will have to query the conten