1700 or 1800 ?

Hi,
I need a Cisco router with two Ethernet ports which supports IPSEC, QoS, NATing etc. There is only 20-30 users going via this router. Which router is recommended and the IOS version?
I thought 1721 is good, but I need to download a IOS which supports VPN module. Which IOS supports IPSEC VPN for Cisco 1721? Also, 1721 comes with 32MB flash which I think won't be enough for IOS with ipsec support.
Please suggest a router model for my requirement. 1700 or do I need to go for 1800 series?
- Ribin

The HSEC/K9 is a bundle. In the link I provided you can see that there are a couple of bundled options available. These bundles reduce the errors when ordering routers with common options. You can order a router w/o the high security option, but you will need to upgrade the IOS (to advanced security) and possibly the flash and DRAM.
There is a Security Bundle which includes the correct IOS and flash and DRAM upgrades only.
CISCO1841-SEC/K9
Here's a link with the IOS security features.
http://www.cisco.com/en/US/partner/prod/collateral/routers/ps5854/product_data_sheet0900aecd80169b0a_ps6586_Products_Data_Sheet.html

Similar Messages

  • Email Notification send from previous setting although it has been deleted.

    Hello,
    Current monitoring schedule for Daily Monitor Open Item (Vendor) are 3 times a day at 1700, 1730 and 1800. However, we receive a notification for this monitoring activity at 0600 with a differents in (1) email header, (2) Monitoring ID and (3) Email Description.
    (1) Email Header:
    a) Normal notification has a header like below:
    Solution number.....SOL/0020203551/0021324570_0020203551
    Solution name.......BPM - PER
    Business Process....Daily Monitoring
    Step................Monitor AP Open Items
    System..............PER
    Monitoring Object...Open Items (Vendors)
    Monitoring ID.......000002736757000
    b) The notification we received at 0600 has header like below:
    Solution number.....SOL/0020203551/0021324570_0020203551
    Solution name.......BPM - PER
    Business Process....0000000662
    XXX.................0000000674
    System..............PER
    Monitoring Object...0000000719
    Monitoring ID.......000002563457000
    (2) Monitoring ID
    a) Monitoring ID from our setting at 1700, 1730 & 1800 is 000002736757000
    b) Monitoring ID from email at 0600 is 000002563457000
    (3) Email Description
    Email description from email at 0600 is an old email format. We have no longer using that email format for all of our monitoring activities.
    We double check this issue at Scheduling Overview and every day it is expected Collector Runs at 0600 even weu2019re not scheduling this session.
    We already deactivate and delete the current setting. Then do the setting again for Daily Monitor Open Item (Vendor). But still the notification is still there.
    Please advice on how to disable the unwanted email notification.
    Thanks

    I have discovered this site which claims the ability to do what you might want. I have no personal experience of it!
    http://www.icopybot.com/itunes-backup-manager.htm

  • How can we give values to the variable

    Oracle Forms6i
    Hai All
    I am generating an daily attendance regarding shift basis.In that i have written an ifelse condition it work successfull and but it fetches only 350 row out of 800.
    I have declared a variable and i need to know how to assign values to the variable Pls tell the steps to do.I have done correctly but there is an logic error in my coding.Let give me some steps to solve the problem
    My coding is
    declare
    t_in varchar2(25);
    t_out varchar2(25);
    cursor cur_test is
    select * from dail_att where intime=t_in and outtime =t_out;
    --into t_in,t_out from dail_att; 
    begin
    loop
    go_block('TEST_SRI');
    FIRST_RECORD;
    if :bartime between 0145 and 0630 then
         update dail_att set outtime = :bartime where barcode= :barcode
    and ATTEND_DATE = :bardate-1 and intime is null and outtime is not null;
    elsif :bartime between 0630 and 0900 or :bartime between 1130 and 1230 or
    :bartime between 1700 and 1800 and t_in is null then
    insert into dail_att(barcode,intime,attend_date)
    values(:barcode,:bartime,:bardate);
         elsif :bartime > 1645 and t_in is not null and t_out is null then
    update dail_att set outtime = :bartime where barcode= :barcode
    and ATTEND_DATE = :BARDATE and intime is not null and outtime is null;
    end if;
    EXIT WHEN :SYSTEM.LAST_RECORD = 'TRUE' OR :BARCODE IS NULL;
    NEXT_RECORD;
    END LOOP;
    forms_ddl('commit');
    exception
    when others then
    forms_ddl('rollback');
    message(sqlerrm||dbms_error_Text);
    message(sqlerrm||dbms_error_Text);
    end;
    Regards
    Srikkanth.M

    Hai man
    I have generated a daily attendance roll in oracle forms and it executed correctly but while fetching it fetch some of the records. So i have declared a variable in a block and in my coding.
    For those variable i need to pass values from select statement or using cursor.According to that i can use in my ifelse statement.
    If It is clear Or else see the coding
    declare
    bar_code varchar2(25);
    in_time varchar2(25);-------------------------- these are the variable i going to use in select statement to pass values
    out_time varchar2(25); so that i can use in if else statement.
    begin
    loop
    go_block('TEST_SRI');
    FIRST_RECORD;
    select BARCODE,INTIME,OUTTIME into bar_code,in_time,out_time from dail_att where BARCODE= :Barcode
    and ATTEND_DATE = :bardate;
    if :bartime between 0100 and 0630 then
    update dail_att set outtime = :bartime where barcode= :barcode
    and ATTEND_DATE = :bardate-1 and in_time is null and out_time is not null;
    elsif :bartime between 0630 and 0900 or :bartime between 1130 and 1230 or
    :bartime between 1700 and 1800 and in_time is null then
    insert into dail_att(barcode,intime,attend_date)
    values(:barcode,:bartime,:bardate);
         elsif :bartime > 1645 then
    update dail_att set outtime = :bartime where barcode= :barcode
    and ATTEND_DATE = :BARDATE and in_time is not null and out_time is null;
    end if;
    EXIT WHEN :SYSTEM.LAST_RECORD = 'TRUE' OR :BARCODE IS NULL;
    NEXT_RECORD;
    message(:barcode);
    END LOOP;

  • My coding execution is slow due to Group function

    Hai All
    I have genetating an attendace function by day today process
    My coding is
    declare
    bar_code varchar2(25);
    in_time varchar2(25);
    out_time varchar2(25);
    Cursor c1 is
    Select BARCODE,BARDATE,BARTIME
    From temp_attendance
    group by barcode,bardate,bartime
    ORDER BY BARCODE,bartime;
    begin
    for r1 in c1 loop
    declare
    bar_code varchar2(25);
    begin
    select barcode into bar_code from dail_att where barcode=r1.barcode and attend_date=r1.bardate;
    For r in (select empcode,empname,barcode,intime,intrin,introut,addin,addout,outtime,attend_date from dail_att)loop
    if r1.bartime between 1630 and 1830 and r.intime between 0715 and 0915 then
    -- update dail_att set outtime=(select max(bartime) from temp_attendance group by barcode,bardate
    -- having temp_attendance.barcode=dail_att.barcode and temp_attendance.bardate= dail_att.attend_date );
    update dail_att set outtime=r1.bartime where barcode=r1.barcode and attend_date=r1.bardate and intime is not null;
    elsif r1.bartime between 1930 and 2130 and r.intime between 1145 and 1245 then
         update dail_att set outtime=r1.bartime where barcode=r1.barcode and attend_date=r1.bardate and intime is not null;
    --update dail_att set outtime=(select max(bartime) from temp_attendance  group by barcode,bardate
              -- having temp_attendance.barcode=dail_att.barcode and temp_attendance.bardate= dail_att.attend_date );
    elsif r.intrin is null and r.intime is not null then
         update dail_att set intrin=r1.bartime where barcode=r1.barcode and attend_date=r1.bardate and
         intime is not null and introut is null and addin is null and addout is null;
    elsif r.introut is null and r.intime is not null and r.intrin is not null then
         update dail_att set introut=r1.bartime where barcode=r1.barcode and attend_date=r1.bardate and intime is not null and intrin is not null and addin is null and addout is null;
         end if;     
    end loop;
         exception
         when no_data_found then
         if r1.bartime between 0715 and 0915 or r1.bartime between 1145 and 1245 or r1.bartime between 1700 and 1800 then
              insert into dail_att(barcode,intime,attend_date)
              (select r1.barcode,min(r1.bartime),r1.bardate from temp_attendance group by r1.barcode,r1.bardate);
         elsif r1.bartime between 0100 and 0630 then
              update dail_att set outtime=r1.bartime where barcode=r1.barcode and attend_date=r1.bardate-1;
         end if;
         end;
    end loop;
    commit;
    end;
    when i to generate 700 records without Max function i working and takes time.But when i use MAX Function its not working and taking a lot of time why
    Pls tell me some solution to rectify these problem
    While using Max function with sample data it works fine..
    Thanks & Regards
    Srikkanth.M

    Hello Sir
    Thanks for your reply
    As of now i have completed first part and in that little bit problems..
    First step Fetch the records as text file and stores into table T1
    and the next step is i have seperated the text using substring and stores in different columns of a table
    There are two shifts 0815 to 1645 and 1200 and 2000
    Here I rep IN and O rep OUT
    Empno date time inout
    001 01-01-10 0815 I
    002 01-01-10 0815 I
    003 01-01-10 0818 I
    001 01-01-10 1100 0
    001 01-01-10 1130 I
    002 01-01-10 1145 0
    002 01-01-10 1215 I
    004 01-01-10 1200 I
    005 01-01-10 1215 I
    004 01-01-10 1315 O
    004 01-01-10 1345 I
    001 01-01-10 1645 0
    002 01-01-10 1715 0
    003 01-01-10 1718 0
    004 01-01-10 2010 0
    005 01-01-10 2015 0
    This is my T1 table i have taken data from text file and stored in this table from this table i need to move data to another table T2
    T2 contains like this
    Empno Intime Intrin Introut Outtime Date
    001 0815 1100 1130 1645 01-01-10
    002 0815 1145 1215 1715 01-01-10
    003 0818 1718 01-01-10
    004 1200 1315 1345 2010 01-01-10
    005 1215 2015 01-01-10
    This what i am trying to do man but i have little bit problems Pls give some solution with good example
    Thanks & Regards
    Srikkanth.M

  • Wiring for a Symbol SPT17xx RJ45 to DB9 or where to find

    I have (as I have mentioned) the Symbol SPT1700 and SPT1740 with the charging cradle. I was able to repair the charging cradle (blown input capacitor and shorted voltage regulator), but I still need a cable to connect the RJ45 on the cradle to a DB9 serial port to HotSync. I thought I read that the original cable was a null modem cable, so I wired it up as such (or so I thought) but I cannot get it to sync.
    Can someone please give me a pin to pin wiring diagram to go from the RJ45 to a DB9 or tell me where I might can find this information? I don't see spending $25 to $30 for a cable that I can build myself for less than $5... I mean, I did spend three hours troubleshooting a SMT charging cradle instead of just buying a new one.
    Post relates to: Palm Pilot

    Did you ever figure this out? I have the SPT 1700 and 1800 that I want to do. actualy I want to convert it to db25 then use my serial to usb.

  • Por que no puedo usar variable fecha en este query.

    en este query he intentado utilizar la variable   para lo que sería mi variable fecha, por queno me la esta aceptando el generador de consultas del sap?.
    SELECT distinct 'series'= case
    When T0.series=1 then ' FORJADORES'
    WHEN T0.series=34 then  'UNIVERSIDAD'
    WHEN T0.series=35 then 'LIBRAMIENTO'
    WHEN t0.series=36 then 'CANGREJOS'
    WHEN T0.series=37 then 'ROSARITO'
    WHEN T0. Series=144 then 'SANTA ROSA'
    END,
    (select count(docentry) from oinv where (series=t0.series and doctime between '700' and '800' and docdate='2009/02/18')) as [7 AM A 8 AM],
    (select count(docentry) from oinv where (series=t0.series and doctime between '800' and '900' and docdate='2009/02/18')) as [8 AM A 9 AM],
    (select count(docentry) from oinv where (series=t0.series and doctime between '900' and '1000' and docdate='2009/02/18')) as [9 AM  A 10 AM],
    (select count(docentry) from oinv where (series=t0.series and doctime between '1000' and '1100' and docdate='2009/02/18')) as [10 AM A 11 AM],
    (SELECT Count(docentry) From OINV where (series = t0.series and doctime between '1100' and '1200' and docdate='2009/02/18')) As  [11 AM a 12 PM],
    (SELECT Count(docentry) From OINV where (series= t0.series and doctime between '1200' and '1300' and docdate='2009/02/18')) As [12 PM a 1 PM],
    (select count(docentry) from oinv where (series=t0.series and doctime between '1300' and '1400' and docdate='2009/02/18')) as [1 PM A 2 PM],
    (select count(docentry) from oinv where( series=t0.series and doctime between '1400' and '1500' and docdate='2009/02/18')) as [2 PM A 3 PM],
    (select count(docentry) from oinv where (series=t0.series and doctime between '1500' and '1600' and docdate='2009/02/18')) as [3PM A 4 PM],
    (select count(docentry) from oinv where (series=t0.series and doctime between '1600' and '1700' and docdate='2009/02/18')) as [4PM A 5 PM],
    (select count(docentry) from oinv where (series=t0.series and doctime between '1700' and '1800' and docdate='2009/02/18')) as [5 PM A 6 PM],
    (select count(docentry) from oinv where (series=t0.series and doctime between '1800' and '1900' and docdate='2009/02/18')) as [6 PM A 7 PM]
    From OINV T0
    where t0.docdate='2009/02/18'

    Por favor, marque esta
    Re: docdate search for current posting period
    Gracias,
    Gordon

  • PS Datamove fails on one table (pspcmprog)

    Thanks for taking my question!
    We are trying to install peopletools 8.49 on demo database 10.2.0.3 10g 64bit server and for some reason one table will not load. The job fails at just about the same place - after inserting about 6000. The error is below. Any help or suggestion would be great!!
    Thanks, Kathie
    Started: Tue Jul 31 13:08:27 2007
    Data Mover Release: 8.49.03
    Database: CSDMO (ENG)
    Indexing export file P:\csdemo\data\hcengs.db
    Input file: P:\csdemo\data\hcengs.db (ENG)
    Importing PSPCMPROG
    Rows inserted into PSPCMPROG
    50, 100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750,
    800, 850, 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, 1300, 1350, 1400,
    1450, 1500, 1550, 1600, 1650, 1700, 1750, 1800, 1850, 1900, 1950, 2000,
    2050, 2100, 2150, 2200, 2250, 2300, 2350, 2400, 2450, 2500, 2550, 2600,
    2650, 2700, 2750, 2800, 2850, 2900, 2950, 3000, 3050, 3100, 3150, 3200,
    3250, 3300, 3350, 3400, 3450, 3500, 3550, 3600, 3650, 3700, 3750, 3800,
    3850, 3900, 3950, 4000, 4050, 4100, 4150, 4200, 4250, 4300, 4350, 4400,
    4450, 4500, 4550, 4600, 4650, 4700, 4750, 4800, 4850, 4900, 4950, 5000,
    5050, 5100, 5150, 5200, 5250, 5300, 5350, 5400, 5450, 5500, 5550, 5600,
    5650, 5700, 5750, 5800, 5850, 5900, 5950, 6000, 6050, 6100, 6150, 6200,
    6250, 6300, 6350, 6400, 6450, 6500, 6550, 6600, 6650, 6700, 6750, 6800,
    6850, 6900,File: Data MoverSQL error. Stmt #: 0 Error Position: 0 Return: 3135 - ORA-03135: connection lost contact
    Failed SQL stmt:INSERT INTO PSPCMPROG (OBJECTID1, OBJECTVALUE1, OBJECTID2, OBJECTVALUE2, OBJECTID3, OBJECTVALUE3, OBJECTID4, OBJECTVALUE4, OBJECTID5, OBJECTVALUE5, OBJECTID6, OBJECTVALUE6, OBJECTID7, OBJECTVALUE7, PROGSEQ, VERSION, NAMECOUNT, PROGLEN, PROGRUNLOC, PROGFLAGS, LICENSE_CODE, LASTUPDDTTM, LASTUPDOPRID, PROGEXTENDS, PROGTXT) VALUES (:1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :12, :13, :14, :15, :16, :17, :18, :19, :20, :21, TO_TIMESTAMP(:22,'YYYY-MM-DD-HH24.MI.SS.FF'), :23, :24, :25)
    Error: Unable to insert row 37
    Error: SQL execute error for PSPCMPROG
    Ended: Tue Jul 31 13:11:35 2007
    Unsuccessful completion

    03135, 00000, "connection lost contact"
    // *Cause:  1) Server unexpectedly terminated or was forced to terminate.
    //          2) Server timed out the connection.
    // *Action: 1) Check if the server session was terminated.
    //          2) Check if the timeout parameters are set properly in sqlnet.ora.It looks like either someone, or something is killing your session. Are you running this across a network? If so, you may be either dropping the network connection or possibly it is really slow and is timing out.
    John

  • Confusion about Nokia specs pages....

    I will be getting a 920... but am saddened to hear Nokia Canada only showing black as a colour choice.  So I started looking around to other places I could buy the same phone and found that different sites show different frequencies supported.  Is this just a website issue or are there different versions of the phone? 
    I want to be careful to get a phone that will work with my chosen carrier and their LTE frequencies.
    Nokia.ca shows
    Operating Frequency Bands
    LTE 700
    LTE 1900
    Meanwhile on Nokia.com for the US I see...
    Operating Frequency Frequency bands
    LTE 700
    LTE 850
    LTE 1700
    LTE 1900
    LTE 2100
    And Nokia.fi
    Käyttötaajuus Taajuusalueet
    LTE 700
    LTE 800
    LTE 850
    LTE 900
    LTE 1700
    LTE 1800
    LTE 1900
    LTE 2100
    LTE 2600

    As much as I would like to believe that is the specs... that doesn't match Canadian frequencies so I wouldn't buy it.  Not to mention it shows a completely different LTE list than what I already had.  
    So which one is right?  Or is there more than one "920"?

  • New to Java, need assistance

    First, I'd like to apologize in case this post is in the wrong place.
    Now I'm new to Jcreator and I missed about a month from my computer programming class in school, and am far behind. My assignment right now is this problem p5.12 from Computing Concepts with Java Essentials it says:
    "A year with 366 days is called a leap year. A year is a leap year if it is divisible by 4 (for ex.,1980). However, since the introduction of the Gregorian calender on October 15, 1582, a year is not a leap year if it is divisible by 100 (for ex., 1900); however, it is a leap year if it is divisible by 400 (for ex., 2000). Write a program that asks the user for a year and computes whether that year is a leap year., Implement a class *Year* with the method *boolean isLeapYear*
    This is the code that I came up with:
    import javax.swing.JOptionPane;
    public class LeapYear {
         public static void main(String[] args) {
              String input = JOptionPane.showInputDialog("Enter Year");
              double year = Double.parseDouble(input);
              LeapYear newYear = new LeapYear(year);
              System.out.println(newYear.boolean isLeapYear()); //line 11
    public class LeapYear {
         private double year;     
         public LeapYear(double year)
                   a = year;
              public boolean isLeapYear(){
                   if(a % 4 == 0)
                             if(a % 100 != 0) System.out.println("Leap Year");
                   else if (a % 400 == 0) System.out.println("Leap Year");
                   else System.out.println("Not Leap Year");
    The error I am receiving is on the 11th line of the test class. I know if there is something wrong besides that. I'm not asking for someone to fix this for me but I would like if somebody could give me advice on what to do, hints, explain where I went wrong, or know of any good tutorials I could read that could help me with this it would be much appreciated.

    Year           Is Leab Year?
    1           no      
    4            yes
    1580            yes
    1582           no      
    1584            yes      
    1600            yes      
    1700            no      
    1800            no      
    1900            no      
    1996            yes      
    1997           no      
    1999            no      
    2000            yes      
    2100            no      
    2200            no      
    2300            no      
    2400            yes      
    2800            yes      
    2900            no      
    3200            yes      
    3300            no      
    3600            yes      
    3800            no      
    4000            yes      
    4200            no      
    4400            yes      
    4700            no      
    4800            yes      
    5100            no      
    5200            yes      
    6400            yes      
    6500            no      
    6800            yes      
    6900            no      
    7200            yes      
    7400            no      
    7600            yes      
    7800            no           

  • I need quick reviews(MS-6570)

    i currently have a ms-6330 and i plan on upgrading to the ms-6570 with ddr 3200 ram...has anyone had issues with the nforce2 spp??

    I'm mad as hell and I ain't taking it anymore,
    I want the same unlocking the 1700 and 1800's have with my 2700.
    that's all.....good choice.

  • K7T Turbo2 (6330v5) problem (with locked Tbreds)

    Hi,
    I've recently bought a K7T Turbo2 board (6330v5) OEM version (green PCB) made probably for Fujitsu-Siemens UK. They probably didn't need those board anymore and sold them (a lot of wholesalers have them in my country now).
    Anyway I think the board I bought is damaged, but I not sure.
    The problem is that it won't POST with locked T-breds. I've tried a 2000+ (3rd week of 2004) and a 2400+ locked T-bred (46th week of 2003) and the PC haven't started.
    But with a T-Bird 1400Mhz, a 1700+ and 1800+ Palomino (probably locked) and 2400+ unlocked T-bred the board started without any problems.
    Is this the problem with new XP processors (produced after the 39th week 2003 and internally locked) and this board or I have a damaged board?
    TIA,
    Max

    Well, I didn't know it was the OEM version when I was buying it...  But in this case I don't think the bios is the problem. The board looks virtually the same as the normal board.
    And it boots with a pre-39 (24th week of 2003) T-bred 2400+, so it's not a lack of compatibility with T-bred issue.
    For me it seems that this board has problem with T-bred made after the 39th week of 2003 (internally locked ones).  
    So I need to know if all of those boards have the same problem, or only this one?
    BTW. Currently I'm running my unlocked T-bred 2400+ on a Abit KT7A board, and I've tried the same locked T-bred 2400+ that failed on MSI K7T Turbo2 on my abit board and it also didn't boot. So maybe there's something wrong the KT133A chip which makes KT133A boards incompatible with new locked T-breds?
    Of course the locked T-bred runs fine on a KT400 board or a nforce2 ultra400 boards...

  • Tariff Zone_Postal Codes

    Hi All
    I have created new Tariff Zone for Export to England. Now as per configuration you need to assign this new tariff zone to Country and Range of Postal code. But in our business the postal code for England is not a number range but it is u201CME 17 54XZu201D.
    So I have assigned postal code as ME 17 54XZ  in first postal code column and other postal code column is blank.
    Now when I am creating Shipment cost document my first fright condition is not getting calculated and in analysis I can see that in front of that u201CTariff Zone of Destinationu201D system is showing YELLOW mark saying u201CAccess not made-initialized fieldu201D
    But I have maintained shipment cost Condtion record properly in TK11.
    Is it necessary that postal code should always be a numeric number like 1700 or 1800?
    Am missing something? Please help.
    Thanks
    Tushar
    9822984340

    Hi,
    Alternatively you can use postal codes "Fields- PSTLZA and PSTLZZ" to determine shipment costs.

  • KT6V and Athlon 2700+ boot problem

    I recently got an Athlon 2700+ to replace my 1800+ on this KT6V board.
    I know the motherboard supports that CPU but after putting the new CPU in and hitting power, nothing happes.  My monitor stays on Standby and there are no beeps from the BIOS.  The power comes on and fans go though.
    I updated the BIOS and that went fine, but was no help.
    I flashed the CMOS back to defaults, then put the 2700+ in and still nothing.
    The 1700+ and 1800+ processors I have work perfectly so I think my 2700+ is toast... although it looks fine.  There are no scorch marks or cracks in the die and all pins are there and straight.
    My 4 pin P4 PSU connector is in place... the 1700 and 1800 won't run without it.
    any suggestions before I send this 2700+ CPU back for a replacement.

    Can you try it in another system?  You can use this link to check its OPN number to verify what model 2700 it is.
    http://www.thedigerati.us/info/amdcpuchart.html#xp
    Do you have the diagnostic led connection hooked up to the motherboard?

  • MSI K7T Turbo2 & T-bred?

    I know that this board support XP up to 2600 , but are there any problems with T-bred (0.13 ) CPU ,,,or it works only with XP PALOMINO (0.18)?Experience?

    Quote
    Originally posted by xroyal
    Dave: From all I've read, "B" model will run cooler than "A" (of course, we all live in a rumor mill), and probably overclock better. I'm sort of hanging out for results on 1700 and 1800 "B" models when they finally appear/get put to the test.
    xroyal,
    I could have it backwards. I wish that I had none that a "B" version was coming and I would have waited as well. At this point I am looking at it as doing my part to keep a good company going. I suspect that the differences will be minimal at least for me. I don't overclock so as long as it runs well I am happy. Beside it is much faster than my old Duron 800:-).
    Dave

  • KT7 will not boot

    I just replaced my duron 850 with a XP1700 and I can not get the system to boot.  I get 4 red lights.  I have 256mb pc133 ram and have opened the jumper so it runs at 133mhz.  No beeps nothing.  I got a new power supply and tried swaping out the RAM still nothing.  Put the 850 back in and it works fine.  Any suggestions?  I tried the BIOS and bumping the voltage to 1.8 b 4 putting the xp in but no go....very odd
    I also have the lastest BIOS.  3.5 i believe
    I have a K7T Tubro sorry about title.  

    Quote
    Originally posted by bart_joosten
    I have an msi k7t turbo ver 3.0
    My thunderbird 750 works fine , but the athlon 1700 or 1800 Xp processors don't do anything. My system won't post.
    All lights are red, I've pc133 ram, tried to set the bus to 100 and 133, but nothing, it won't post, it's really really bugging me.
    Cooler is istalled correctly and my psu is good enough.
    It drives me REALLY REALLY MAD.
    If you've solved the problem, please tell me
     :D  :D  :O  :O  :D  :D  ;(  ;(  :D  :D  :O  :O  :D  :D
    Sorry had to return the processor yet again.  I do have a 1600xp that works fine though....

Maybe you are looking for

  • Exception Handling for OPEN DATA SET and CLOSE DATA SET

    Hi ppl, Can you please let me know what are the exceptions that can be handled for open, read, transfer and close data set ? Many Thanks.

  • Qty withdrawn issue

    We do the goods issue mvt 261 through MB1A. But it's done through the external barcode system. The issue is after we did the goods issue qty withdrawn is still 0 in the BOM screen. It remains 0 even after we close the production orders. Because of th

  • Why can I not get HBO on my apple TV

    can we have an easy way to ask a ? and get an answer?

  • Posting accounting documents in G/L accounts.

    HI friends, what are the tables involved in posting accounting documents in G/L accounts. Please let me know. Thanks in advance. Roberts.K

  • Order Entry - Line Items Unit_Selling_Price Updation

    Dear All, When creating order in Order Entry form, Line Items TAB, I am unable to change the unit_selling_price, Presently this is populating from Order Management Price List form. We are struck here, Please help us how to manualy change the unit_sel