DMVPN Question on NHRP and EIGRP neighbor relations

First of all thank you for your answer, in a DMVPN network, running EIGRP over GRE, will a spoke consider another spoke an EIGRP neighbor? or will it just consider the hub to be an EIGRP neighbor when it comes to sending/receiving eigrp queries/updates? given that in dmvpn setup one spoke can establish a direct tunnel with another spoke.

If you are running EIGRP, under EIGRP type in
no split-horizon eigrp ; where x is the as #.
Also, if your dmvpn routers have default routes ie 0.0.0.0/0 pointing to the ISP on all routers that is ok. IF you have specific static routes for DMVPN hub public on DMVPN spoke router, you would also need to add a static route for the other dmvpn spoke public address on your first dmvpn spoke and vice versa. Hope this helps.

Similar Messages

  • Cisco 3270 MAR WGB and EIGRP Neighbors

    I'm setting up a lab environment where I want to have a 3270 MAR connect to a 1524 MESH AP on the 4.9 Public Safety frequency and form an EIGRP neighbor relationship and perform routing. So far, I can get the MAR associated to the 1524, which is connected to a 2106 running 4.1.192.22M. I have configured the 4.9 Radio on the MAR as a workgroup bridge and infrastructure-client. The radio interface is up, and it is associated. I have defined EIGRP neighbors, the AS numbers and K values match. I can't figure out why the EIGRP neighbor relationship won't come up? I've also configured the MAR as a stub network. I had this working in my lab several months ago, but restoring the configs on each of the devices doesn't result in neighbor formation. Attached is some config info and show commands.
    3560_8Port_PoE ---- 2106 ---- 1524_AP )))) (((( ----- 3270_4.9Radio_WGB ---- 3270_MAR
    Regards,
    Scott

    Update -
    Here's an output from back in January when I had it working:
    3270_MAR#
    *Mar 2 21:41:15.656: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 90: Neighbor 192.168.1.1 (Vlan1) is up: new adjacency <-----------------------LOOK HERE
    THIS MEANS THAT THE TWO ROUTERS EXCHANGED 'HELLOS' AND BECAME BUDDIES, SHARING THEIR ROUTING TABLES
    3270_MAR#sh ip route
    Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
    D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
    N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
    E1 - OSPF external type 1, E2 - OSPF external type 2
    i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
    ia - IS-IS inter area, * - candidate default, U - per-user static route
    o - ODR, P - periodic downloaded static route
    Gateway of last resort is 192.168.1.1 to network 0.0.0.0
    C 192.168.4.0/24 is directly connected, Vlan4
    C 192.168.5.0/24 is directly connected, Vlan5
    D 192.168.6.0/24 [90/28416] via 192.168.1.1, 00:01:31, Vlan1 <----------------------------- This route was updated using EIGRP
    C 192.168.7.0/24 is directly connected, FastEthernet0/0
    C 192.168.1.0/24 is directly connected, Vlan1
    D 192.168.3.0/24 [90/28416] via 192.168.1.1, 00:01:31, Vlan1
    S* 0.0.0.0/0 [1/0] via 192.168.1.1
    3270_MAR#

  • A few questions about Canvas and other Image related stuff.

    I am just starting to play around with Canvas in the hopes of using it to make a little game (not an applet) in my spare time. I have gotten a ball to bounce around the screen and switch colors when it bounces without too much work. (hooray for me!).
    I was wondering:
    1) If you always have to repaint the whole area of the canvas, or can you repaint sections of the screen?
    2) Can there only be one canvas per frame, or if you can have more, like say, one for each sprite (I tried in my own simplistic way but the second canvas overrode the first when I added it to the frame) or do you have to lay out all the sprites in one canvas every time before you paint?
    3) Is Canvas the best platform for rendering my animations and doing collision detection, or are other ways of presenting the images better? By better I mean lower usage of resources, higher speed, accessibility of events that occur. (I have read in the mindprod java glossary "[Canvas] receives all the raw mousing events. Panels, in contrast, see only a few.")
    4) In a call to paint which tells it to display some images which are much larger than the frame the canvas is in, is time and effort spent working on those pixels that aren't displayed or does it take about the same amount of resources as for images that fit in the frame since the same amount of picture is actually displayed?
    5) Is there any convenient way to layers with canvas besides just controlling the order in which the images are painted. (I will admit I haven't searched for this information yet, because I just thought about it.)
    6) Is there any other information you guys would care to bestow on me?
    If any of this question is ridiculous, obvious, ignorant or any other negative adjective, then I apologize. I will continue messing around in the meantime.
    Thanks
    --John                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Okay, well I got it to work by drawing them both to the same canvas. duh I guess.
    Can you have more than one canvas in a frame? How do you set the size if so.
    How do I implement the z-order? I thought of doing it manually by sending the paint method a list of objects to paint and manually managing the order of that list. Would that be an acceptable way to do it?
    Should I only be trying to paint to one canvas? What I would like to do is have several canvases with transparent backgrounds so that I can draw different layers in the same frame. That way flying stuff would be painted on a different canvas than stuff on the ground, and then putting it all in a frame would tie the pictures together into a scene. Kind of like how they do distance in animation by having different layers of drawings on clear plastic that they can move at different speeds to give the illusion of depth.
    Any advise? Sorry for the douba-post
    Thanks
    --John                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • EIGRP neighbor problem

    Hi,
    My router is showing all the routes but cant some of the vlans and routes until and unless i give following command.
    clear ip eigrp neighbors
    After giving this command it manually clears neighbor table and then makes new adjacency.
    What can be the possible problem?

    Hi,
    I am afraid we need more precise information - currently, your question is very general. Ideally, this sequence of outputs would be very helpful:
    The transcript of an experiment in the router's "bad" state, showing the exact issue you would like to get solved, such as pings getting lost, a route pointing to a bad next hop, or a show ip route X.X.X.X output proving that the path to the destination is missing. In your case, there is a hint about a routing problem but your explanation is not clear: you say that you see all routes but you "cant some of the vlans and routes" - cannot what?
    The show command outputs in the router's "bad" state related to the mechanism that should have provided the correct information to the router but ultimately failed to do so. In your case, I understand there is a possible problem with EIGRP. In that case, we would need to see the output of show ip eigrp neighbor and show ip eigrp neighbor topology X.X.X.X where X.X.X.X is the destination you have troubles reaching.
    After you get the router to the "good state", provide again the information from Steps 1 and 2 above.
    Thank you!
    Best regards,
    Peter

  • How to open and the view the .jsp(OAF) page and it's related code?

    Hi,
    Can anybody help on how to open the .jsp and it's related java files to see the coding? I want to know the table and view details related to a particular OAF page. It will be great help if someone explains.
    Thanks in advance.
    Muruga.
    Edited by: Murugeshapps on Jun 26, 2009 6:37 AM

    Hi,
    Please see the following documents.
    Note: 416708.1 - How to find the correct version of JDeveloper to use with eBusiness Suite 11i or Release 12.x
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=416708.1
    Note: 330236.1 - Configuring JDeveloper For Use With Oracle Applications 11i and R12
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=330236.1
    For further OAF questions, please post it in [Technology - OA Framework |http://forums.oracle.com/forums/forum.jspa?forumID=210] forum, you would probably get a better/faster response.
    Regards,
    Hussein

  • A few questions about MacBooks and Parallels Desktop.

    I have a few questions about MacBooks and Parallels Desktop.
    1) I understand I need at least 1GB of RAM to run Parallels Desktop but what about the hard drive, is the stock 60GB drive big enough?
    2) Related to question 1, even if it was big enough to allow me to install and run Windows would the 60GB drive be enough if I wanted to install a Linux distribution as well?
    3) This has nothing to do with Parallels Desktop but thought I'd ask it here anyway, do Apple Stores carry just the stock MacBooks, or do they carry other configurations?
    Thanks
    Keith

    1. Depend on how intensive you use that HD for saving data on both Mac OS and XP. For standard installation on both OS X and XP, the space of 60 Gb is enough.
    2. Same answer as no 1. You can install all three on that HD space, but the extra spacce available will be less and less for your data. You can save your data on external or back up on cd/dvd and erase it from the HD to keep the free space.
    Remember to leave at least 2 or 3 Gb for virtual memory usage.
    3. Just call them, maybe they don't have it in store stock, but by appointment they might configure one for you before your pick-up date.
    Good Luck

  • Oracle Asset (Functional) Practichttps:/e Questions for Interviews and Exam

    https://www.createspace.com/3495382
    http://www.amazon.com/Functional-Questions-Interviews-Certification-Examination/dp/1456311581/ref=sr_1_4?ie=UTF8&s=books&qid=1289178586&sr=8-4
    List Price: $29.99
    Add to Cart
    Oracle Asset (Functional) Practice Questions for Interviews and Certification Examination (Release 11i and 12)
    Functional Consultant
    Authored by Erp Gold
    This book contains 150 Oracle Asset Practice Questions for functional consultants. Very useful for interviews and certification examinations.
    Publication Date:
    Oct 26 2010
    ISBN/EAN13:
    1456311581 / 9781456311582
    Page Count:
    94
    Binding Type:
    US Trade Paper
    Trim Size:
    6" x 9"
    Language:
    English
    Color:
    Black and White
    Related Categories:
    Computers / General

    Reported as spam!

  • Oracle Asset (Functional) Practice Questions for Interviews and Exam

    https://www.createspace.com/3495382
    http://www.amazon.com/Functional-Questions-Interviews-Certification-Examination/dp/1456311581/ref=sr_1_4?ie=UTF8&s=books&qid=1289178586&sr=8-4
    List Price: $29.99
    Add to Cart
    Oracle Asset (Functional) Practice Questions for Interviews and Certification Examination (Release 11i and 12)
    Functional Consultant
    Authored by Erp Gold
    This book contains 150 Oracle Asset Practice Questions for functional consultants. Very useful for interviews and certification examinations.
    Publication Date:
    Oct 26 2010
    ISBN/EAN13:
    1456311581 / 9781456311582
    Page Count:
    94
    Binding Type:
    US Trade Paper
    Trim Size:
    6" x 9"
    Language:
    English
    Color:
    Black and White
    Related Categories:
    Computers / General

    Reported as spam!

  • Oracle Asset (Functional) Practice Questions for Interviews and Certificati

    https://www.createspace.com/3495382
    List Price: $29.99
    Add to Cart
    Oracle Asset (Functional) Practice Questions for Interviews and Certification Examination (Release 11i and 12)
    Functional Consultant
    Authored by Erp Gold
    This book contains 150 Oracle Asset Practice Questions for functional consultants. Very useful for interviews and certification examinations.
    Publication Date:
    Oct 26 2010
    ISBN/EAN13:
    1456311581 / 9781456311582
    Page Count:
    94
    Binding Type:
    US Trade Paper
    Trim Size:
    6" x 9"
    Language:
    English
    Color:
    Black and White
    Related Categories:
    Computers / General

    Reported as spam!

  • Can anyone give me Interview question on forms6i and reports 6i(its urgent)

    plz give me Interview question on forms6i and reports 6i its urgent .plz mail it to me on paritosh [email protected]

    Check this link
    http://www.geekinterview.com/Interview-Questions
    You will find many information regarding interview questions of oracle related domains.

  • DMVPN/preshared key configured and device stolen

    Hello,
    I have a question on DMVPN solutions where device is already configured with a preshared key and expected to be a part of a network once the device is fired up.
    Now what if this device (e.g. router) is stolen and plugged to the Internet? I believe it will establish a connection with a hub router because preshared keys, DMVPN config are matching and is there a solution to prevent this?
    I know it is a physical security question however I need to consider this rare scenario.
    Thanks,
    Deepak Ambotkar

    The solution for that problem is to use digital certificates which is a best-practice for DMVPN. For that you can also use an IOS-router as a CA-server.
    If you decide against certificates, the you can at least use PSK-encryption. That doesn't help against stolen devices, but helps against rouge spokes when someone can get the client-config.
    Don't stop after you've improved your network! Improve the world by lending money to the working poor:
    http://www.kiva.org/invitedby/karsteni

  • How do the User and Shared Folders relate to the main drive? Can we delete?

    I'm curious how the User and Shared folders relate to the main hard drive and if there is duplicate files in these folders and the main hard drive. Some software programs I have seemed to have loaded content/info into these folders and I'm wondering why they put files in there instead of just the regular main hard drive pathing. These 2 folders are more confusing than anything. I can see that might be of use to a family and each family member wants to keep files in a personal file, but when I'm the only one using my computer, it seems like I should have the option to remove these folders completely, but I don't because I feel like I would be deleting some important files that I wasn't aware were in these folders.
    Another thing is, when I click on User folders (at least I think it's the User and not Shared folder), it brings up my name and 'Shared' in 2 seperate subfolders. Is anything in these folders duplicates of what's on my main hard drive? Is there anything significant about these folders if I'm the only user on my computer?
    I would nice to get rid of clutter and to eliminate options for software to install things by deleting these folders and not have home/user/shared folders. Is that possible?

    stikygum wrote:
    Yeah, I'm really low on space, so I'm going about a bunch of different consolidating options. But I mainly posted my main question to help me understand what 'stuff' is in the User and Shared folders and whether or not they act like an Alias, in order to help me make an informed decision what is best for my needs.
    They are not aliases; it is a hierarchy, and there is intentional duplication at different levels. This is a feature.
    First thing is that Users and Shared are at different levels. Users is at the top level, but Shared is one level inside Users, at the same level as any other user account you have created.
    Therefore, if you delete the Users folder, you delete all user accounts, which means you delete all personal data. OS X probably won't even let you delete the Users folder unless you start up from a different hard drive, because you can't delete your user account while you are running in it.
    Now, more about the hierarchy. The intentional duplication is so that documents and software can exist for individual users or all users. For example, there are multiple Applications folders:
    Hard Drive\Applications - applications any user can see, installed at the system level
    Hard Drive\Users\username1\Applications = applications only that user can see
    Hard Drive\Users\username2\Applications = applications only that user can see
    In the same way, there are multiple Preferences, Cookies, Application Support, etc. folders at different levels, for the same reasons.
    If you do not know what you are doing and you delete one of these folders that "looks like a duplicate" you could cripple some essential part of your system or your account. That is why people are telling you not to do this.
    The Shared folder is there because if you are in one user account you are prevented from seeing the files inside other user accounts. (Because you don't want other accounts to be able to see your personal data.) If you want to share files with others in your house using the same Mac, that's a problem. But the Shared folder solves this. if you want some files to be accessible to all users, like some photos or music, just put them in the Shared folder and now anyone with an account on that computer can see those shared files.
    The reason shared files are not simply stored at the top level is because everything above the Users folder is supposed to be reserved for the system. User-specific are supposed to stay in the Users folder. That is why they put the Shared folder in there.
    If you are not using the Shared folder and are just eyeing it because you want to free up some disk space, well, it probably won't help to delete it. Because if you are not using the Shared folder, it is probably not taking up much space, even though you see stuff in there. And if there is stuff in there taking up space, first figure out if someone put it there for a reason before you delete it.

  • No EIGRP neighbor on Layer 3 port

    After "switchport" was removed on the 6509 Gig 1/1 port, I then assign an IP address to it as well as the other end of the cable which is an 2821 router to use it as a Layer 3 ports. I can Ping across the interfaces but they can't establish EIGRP neighbor. Any ideas what I am doing wrong?

    Thanks for quick responds from you and EdisonOrtiz that point me to the right direction .
    I had a bad mask in EIGRP statement, things are looking great now.

  • VTI and EIGRP problem

    Have a lab setup to run IPSEC VPN with DVTI on Hub and SVTI on spoke. The goal is to have two tunnels from each spoke to two Hubs for redundancy. Eigrp is needed in order to get BGP up and running which will be used for routing policies.
    The problem I phase is that eigrp is not established over the IPSEC tunnel (see neighbour details below). The spoke is configured with vrf on the public interface for security reasons. I have one spoke without vrf on the public interface and this connection works fine.
    I can ping the physical interfaces and the ISAKMP SA and IPSEC SA are up. Doing debug eigrp packet shows that both mcast and ucast traffic is exchanged but no ack on both sides are transmitted (also indicated by Q > 0). feels like I have missed some basic stuff but can't find it.
    Spoke1 (vrf with problem):
    sesthcombox001#sh ip eigrp 1 neighbors detail
    IP-EIGRP neighbors for process 1
    H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq
                                                (sec)         (ms)       Cnt Num
    0   172.16.0.1              Tu1               57 00:01:07    1  5000  2  0
       Version 10.0/2.0, Retrans: 14, Retries: 14, Waiting for Init, Waiting for Init Ack
        UPDATE seq 499 ser 0-0 Sent 67028 Init Sequenced
        UPDATE seq 500 ser 1-9 Sequenced
    Spoke2)working fine):
    sesthcombox002#sh ip eigrp 1 neighbors detail
    EIGRP-IPv4 Neighbors for AS(1)
    H   Address                 Interface              Hold Uptime   SRTT   RTO  Q  Seq
                                                       (sec)         (ms)       Cnt Num
    0   172.16.0.1              Tu1                      59 04:21:46    4  1452  0  53
       Version 10.0/2.0, Retrans: 0, Retries: 0, Prefixes: 2
       Topology-ids from peer - 0
    Hub:
    sesthcg1rtr002#sh ip eigrp 1 neighbors detail
    EIGRP-IPv4 Neighbors for AS(1)
    H   Address                 Interface              Hold Uptime   SRTT   RTO  Q  Seq
                                                       (sec)         (ms)       Cnt Num
    0   172.16.0.2              Vi1                      58 00:00:30    1  5000  1  509
       Version 12.4/1.2, Retrans: 7, Retries: 7, Waiting for Init Ack
       Topology-ids from peer - 0
        UPDATE seq 246 ser 0-0 Sent 30664 Init Sequenced
    1   172.16.0.6              Vi2                      10 04:22:04    4   100  0  26
       Version 10.0/2.0, Retrans: 0, Retries: 0, Prefixes: 1
       Topology-ids from peer - 0
    Relevant configuration:
    Spoke1 (no working)
    crypto keyring key-internet vrf internet
      pre-shared-key address 20.20.20.2 key cisco
    crypto isakmp policy 10
    encr aes 256
    authentication pre-share
    group 14
    crypto isakmp key cisco address 20.20.20.2
    crypto isakmp profile ISA-PROP
       keyring key-internet
       match identity address 20.20.20.2 255.255.255.255 internet
    crypto ipsec transform-set aes256sha esp-aes 256 esp-sha-hmac
    crypto ipsec profile LAB
    set transform-set aes256sha
    set pfs group14
    set isakmp-profile ISA-PROP
    interface Tunnel1
    ip address 172.16.0.2 255.255.255.0
    ip mtu 1400
    ip hold-time eigrp 1 60
    ip virtual-reassembly
    ip tcp adjust-mss 1400
    tunnel source FastEthernet0/0.37
    tunnel destination 20.20.20.2
    tunnel mode ipsec ipv4
    tunnel path-mtu-discovery
    tunnel vrf internet
    tunnel protection ipsec profile LAB
    interface FastEthernet0/0.37
    description internet
    encapsulation dot1Q 37
    ip vrf forwarding internet
    ip address 20.20.30.2 255.255.255.248
    HUB:
    crypto isakmp policy 10
    encr aes 256
    authentication pre-share
    group 14
    crypto isakmp key cisco address 0.0.0.0       
    crypto isakmp profile lab-vti
       keyring default
       match identity address 0.0.0.0
       virtual-template 1
       local-address 20.20.20.2
    crypto ipsec transform-set aes256sha esp-aes 256 esp-sha-hmac
    mode tunnel
    crypto ipsec profile LAB
    set transform-set aes256sha
    set pfs group14
    set isakmp-profile lab-vti
    interface Virtual-Template1 type tunnel
    ip unnumbered Loopback10
    ip access-group shop-out out
    ip mtu 1400
    ip hold-time eigrp 1 60
    ip virtual-reassembly in
    ip tcp adjust-mss 1400
    tunnel source GigabitEthernet0/0.800
    tunnel mode ipsec ipv4
    tunnel protection ipsec profile LAB
    Spoke2:
    crypto isakmp policy 10
    encr aes 256
    authentication pre-share
    group 14
    crypto isakmp key cisco address 20.20.20.2    
    crypto ipsec transform-set aes256sha esp-aes 256 esp-sha-hmac
    mode tunnel
    crypto ipsec profile LAB
    set transform-set aes256sha
    set pfs group14
    interface Tunnel1
    ip address 172.16.0.6 255.255.255.0
    ip virtual-reassembly in
    ip tcp adjust-mss 1400
    tunnel source GigabitEthernet0/0.37
    tunnel mode ipsec ipv4
    tunnel destination 20.20.20.2
    tunnel path-mtu-discovery
    tunnel protection ipsec profile LAB

    But from config you provided,
    Relevant configuration:Spoke1 (no working)crypto keyring key-internet vrf internet  pre-shared-key address 20.20.20.2 key ciscocrypto isakmp policy 10 encr aes 256 authentication pre-share group 14crypto isakmp key cisco address 20.20.20.2crypto isakmp profile ISA-PROP   keyring key-internet   match identity address 20.20.20.2 255.255.255.255 internetcrypto ipsec transform-set aes256sha esp-aes 256 esp-sha-hmac crypto ipsec profile LAB set transform-set aes256sha set pfs group14 set isakmp-profile ISA-PROPinterface Tunnel1 ip address 172.16.0.2 255.255.255.0 ip mtu 1400 ip hold-time eigrp 1 60 ip virtual-reassembly ip tcp adjust-mss 1400 tunnel source FastEthernet0/0.37 tunnel destination 20.20.20.2 tunnel mode ipsec ipv4 tunnel path-mtu-discovery tunnel vrf internet tunnel protection ipsec profile LAB
    the tunnel itself is the part of internet routing table. So you should configure eigrp correspondingly, i assume.

  • Question regarding battery and warranty

    Hi all! I have a quick question about how and if my warranty applies to my battery. After about a year and a half of ownership (I have the three-year extended warranty), my battery has gone completely down the toilet. It wasn't a problem before, but this year I have to lug my T61p around a lot for lab work. My battery is now rated at... 39.75Wh when it shipped at 84.24Wh. This is a pretty drastic difference. In any case, I don't think that this is covered by warranty, but figured that I'd ask before I drop $180 on a new battery (ouch). And, speaking of, if my suspicions are correct, does anybody know where I might find a 9-cell battery for the T61p? All I'm seeing on Lenovo's website is the one for the N100... which doesn't... match very well. Yaknow.
    Thanks a lot!
    ThinkPad T61p [June 2008]: 2.5Ghz Penryn Core 2 Duo, 4GB DDR2 RAM, NVidia Quadro FX 570m 256MB, 160GB 7200RPM Fujitsu HDD, 1920x1200 WUXGA Matte LCD, Windows 7 RC1

    Is either of these appropriate? I'm wary of the one on Amazon, as there are other (off-brand) batteries that are advertised as being Lenovo ones (though those generally sell for  a lower price). The other one just looks like I'll have to call up to buy it.
    http://www.amazon.com/Lenovo-43R9255-ThinkPad-Notebook-Battery/dp/B001DX9EKA
    http://affordablepcsupply.com/products/IBM/REF/42T4511.html
    Thoughts?
    ThinkPad T61p [June 2008]: 2.5Ghz Penryn Core 2 Duo, 4GB DDR2 RAM, NVidia Quadro FX 570m 256MB, 160GB 7200RPM Fujitsu HDD, 1920x1200 WUXGA Matte LCD, Windows 7 RC1

Maybe you are looking for

  • How to upload a file using psp?

    how to upload a file to a server using plsql server pages?

  • IPhoto 9.4.3 out

    Looks like 9.4.3 is out, check software update. What's New in Version 9.4.3 Photos can now be deleted from My Photo Stream by dragging to the Trash Photos can now be exported from Photo Stream using the Export command in the File menu RAW images manu

  • HT201250 I need to upgrade from OS X 10.6.8 to 10.7 or higher to install turbotax. What do you recommend I install?

    I need to upgrade from OS X 10.6.8 to 10.7 or better in order to run TurboTax. My iMac is about 4 years old with limited space. To what do you recommend I upgrade?

  • No surround with XBMC

    When playing movies in XBMC I only get sound from my front (left & right) speakers but no sound from center or rear speakers. The HTPC (upgraded Dell Optiplex GX620) is connected to the TV through HDMI and to my Marantz SR8300 AV-Recei'ver with use o

  • Does After Effects have a backup feature?

    After Effects just crashed on me and I lost my project. Is there any way to recover that project. I didn't save it I know it was dumb of me. I tried reopening After Effects but nothing popped up. I also use After Effects CS5.