<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8468175954436162697</id><updated>2011-12-13T22:45:34.429-08:00</updated><title type='text'>Nabeen</title><subtitle type='html'>Professionalism is knowing how to do it, when to do it, and doing it..</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>26</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-3672856704411453730</id><published>2011-12-13T22:45:00.000-08:00</published><updated>2011-12-13T22:45:34.440-08:00</updated><title type='text'>Cool Hacking Command</title><content type='html'>1) ping : This command will allow you to know if the host you pinging is alive, which means if it is up at the time of executing the “ping” command.&lt;br /&gt;Code:&lt;br /&gt;ping x.x.x.x (x is the IP address)&lt;br /&gt;or&lt;br /&gt;ping www.whatever.com (www.whatever.com is the website you want to ping, but you don't know the IP)&lt;br /&gt;&lt;br /&gt;OBS: Keep in mind that if the host you pinging is blocking ICMP packets, then the result will be host down.&lt;br /&gt;2) nslookup : This command has many functionalities.&lt;br /&gt;One is for resolving DNS into IP.&lt;br /&gt;Lets say you know the website URL but you don’t know its IP(and you want to find out).&lt;br /&gt;nslookup www.whatever.com (www.whatever.com is the website you want to find out the IP)&lt;br /&gt;Now, another really nice function of nslookup is to find out IP of specific Mail Severs.&lt;br /&gt;Code:&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;nslookup (enter) set type=mx (enter) yahoo.com&lt;br /&gt;&lt;br /&gt;This command will give you the mail server IP of yahoo.com. You can use whatever server you want and if it is listed on DNS, then you get the IP. Simple, isn’t it?&lt;br /&gt;&lt;br /&gt;3) tracert : This command will give you the hops that a packet will travel to reach its final destination.&lt;br /&gt;OBS: This command is good to know the route a packet takes before it goes to the target box.&lt;br /&gt;Code:&lt;br /&gt;tracert x.x.x.x (x is the IP address)&lt;br /&gt;or&lt;br /&gt;Code:&lt;br /&gt;tracert www.whatever.com (www.whatever.com is the website you don't know the IP)&lt;br /&gt;&lt;br /&gt;4) arp : This command will show you the arp table. This is good to know if someone is doing arp poisoning in your LAN.&lt;br /&gt;Code:&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;arp -a&lt;br /&gt;&lt;br /&gt;5) route : This command will show you the routing table, gateway, interface and metric.&lt;br /&gt;Code:&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;route print&lt;br /&gt;&lt;br /&gt;6) ipconfig : This command will show tons of very helpful things.&lt;br /&gt;Your IP, gateway, dns in use.&lt;br /&gt;Code:&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;ipconfig&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;Code:&lt;br /&gt;ipconfig /all&lt;br /&gt;&lt;br /&gt;this command will give all that info but for all networks you might have it.&lt;br /&gt;Also, in case you have a dynamic IP and want to change it, then type…&lt;br /&gt;Code:&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;ipconfig /release (this will release your IP) ipconfig /renew (this will renew your iP)&lt;br /&gt;&lt;br /&gt;OBS: Keep in mind that those commands will change your IP, but the new IP will still be tighed up to you. So don’t do anything stupid.&lt;br /&gt;7) netstat : This command will show you connection to your box.&lt;br /&gt;Code:&lt;br /&gt;netstat&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;netstat -a (this will show you all the listening ports and connection with DNS names) netstat -n (this will show you all the open connection with IP addresses) netstat -an (this will combined both of the above)&lt;br /&gt;&lt;br /&gt;8)nbtstat : This command will show you the netbios name of the target box.&lt;br /&gt;Code:&lt;br /&gt;nbtstat -A x.x.x.x (x is the IP address) nbtstat -a computername&lt;br /&gt;&lt;br /&gt;net view x.x.x.x or computername (will list the available sharing folders on the target box)&lt;br /&gt;Now some hints:&lt;br /&gt;Code:&lt;br /&gt;net use \ipaddressipc$ "" /user:administrator&lt;br /&gt;&lt;br /&gt;(this command will allow you to connect to the target box as administrator)&lt;br /&gt;Now if you want to connect to the target box and browse the entire C drive, then use this command:&lt;br /&gt;Code:&lt;br /&gt;net use K: \computernameC$&lt;br /&gt;&lt;br /&gt;(this will create a virtual drive on your “my computer” folder)&lt;br /&gt;OBS: Keep in mind that this will only works if the target box doesn’t have an administrator password set.&lt;br /&gt;And least but not last, the “help” command.&lt;br /&gt;Code:&lt;br /&gt;whatevercommand /help&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;whatevercommand /?&lt;br /&gt;&lt;br /&gt;This command will help you to understand what it does and all the switchs available for each command.&lt;br /&gt;Very useful if you know the command, but forgot the right switch.&lt;br /&gt;&lt;br /&gt;Enjoy........&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-3672856704411453730?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/3672856704411453730/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2011/12/cool-hacking-command.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3672856704411453730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3672856704411453730'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2011/12/cool-hacking-command.html' title='Cool Hacking Command'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-2512909035420280505</id><published>2011-12-01T23:51:00.000-08:00</published><updated>2011-12-01T23:51:25.531-08:00</updated><title type='text'>Blocking unblocking websites manually</title><content type='html'>FOR BLOCKING&lt;br /&gt;Do The Following :&lt;br /&gt;For eg you want to block www.xyz.com !&lt;br /&gt;1. Open the folder C:\WINDOWS\system32\drivers\etc&lt;br /&gt;2. There you will find a file named HOSTS&lt;br /&gt;3. Click on the file and press SHIFT and now right click on it .&lt;br /&gt;4. From the right click menu select Open with .&lt;br /&gt;5. Now, select Notepad to open the file from the list !&lt;br /&gt;6. Now, in the file under the line 127.0.0.1 localhost add another line as 127.0.0.2 www.xyz.com.&lt;br /&gt;7. Now, File&gt;&gt;Save !&lt;br /&gt;For unblocking just follow the same procedure vice versa.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-2512909035420280505?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/2512909035420280505/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2011/12/blocking-unblocking-websites-manually.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/2512909035420280505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/2512909035420280505'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2011/12/blocking-unblocking-websites-manually.html' title='Blocking unblocking websites manually'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-3215080584004357066</id><published>2011-09-29T02:54:00.000-07:00</published><updated>2011-09-29T03:05:50.553-07:00</updated><title type='text'>How to Use Windows 7 Without Activation</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-bxDth1DLlTA/ToQ_502YD0I/AAAAAAAAAKo/yqfXXfScgB4/s1600/Windows_7.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="133" width="135" src="http://2.bp.blogspot.com/-bxDth1DLlTA/ToQ_502YD0I/AAAAAAAAAKo/yqfXXfScgB4/s320/Windows_7.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;Most of you might be aware of the fact that it is possible to use Windows 7 and Vista for 120 days without activation. This is actually possible using the slmgr -rearm command which will extend the grace period from 30 days to 120 days. However in this post I will show you a small trick using which it is possible to use Windows 7 without activation for approximately an year! Here is a way to do that.&lt;br /&gt;&lt;br /&gt;1. Goto “Start Menu -&gt; All Programs -&gt; Accessories” . Right click on “Command Prompt” and select “Run as Administrator“. If you are not the administrator then you are prompted to enter the password, or else you can proceed to step-2.&lt;br /&gt;&lt;br /&gt;2. Now type the following command and hit enter&lt;br /&gt;slmgr -rearm&lt;br /&gt;&lt;br /&gt;3. You will be prompted to restart the computer. Once restarted the trial period will be once again reset to 30 days. You can use the above command for up to 3 times by which you can extend the trial period to 120 days without activation.&lt;br /&gt;&lt;br /&gt;4. Now comes the actual trick by which you can extend the trial period for another 240 days. Open Registry Editor (type regedit in “Run” and hit Enter) and navigate to the following location&lt;br /&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform&lt;br /&gt;&lt;br /&gt;5. In right-side pane, change value of SkipRearm to 1.&lt;br /&gt;&lt;br /&gt;6. Now you will be able to use the slmgr -rearm command for another 8 times so that you can skip activation process for another 240 days. So you will get 120 + 240 = 360 days of free Windows 7 usage.&lt;br /&gt;120 days using “slmgr -rearm” command before registry edit&lt;br /&gt;&lt;br /&gt;+                                                                                                                                                                  &lt;br /&gt;&lt;br /&gt;240 days using “slmgr -rearm” command after registry edit&lt;br /&gt;&lt;br /&gt;=      360 Days&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-3215080584004357066?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/3215080584004357066/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2011/09/accessories.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3215080584004357066'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3215080584004357066'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2011/09/accessories.html' title='How to Use Windows 7 Without Activation'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-bxDth1DLlTA/ToQ_502YD0I/AAAAAAAAAKo/yqfXXfScgB4/s72-c/Windows_7.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-3006483704544846770</id><published>2011-05-10T02:54:00.000-07:00</published><updated>2011-05-10T02:54:23.588-07:00</updated><title type='text'>How to Detect Anonymous IP Addresses</title><content type='html'>As the fraudsters are now becoming more sophisticated in bypassing the Geo-location controls by using proxies (Anonymous IPs) to spoof their IP address, it has become very much necessary to come up with a means for detecting the proxies so that the authenticity of the users can be verified. Using a proxy (web proxy) is the simplest and easiest way to conceal the IP address of an Internet user and maintain the online privacy. However proxies are more widely used by online fraudsters to engage in cyber crimes since it is the easiest way to hide their actual Geo-location such as city/country through a spoofed IP address. Following are some of the examples where fraudsters use the proxies to hide their actual IP.&lt;br /&gt;&lt;br /&gt;1. Credit Card Frauds&lt;br /&gt;For example, say a Nigerian fraudster tries to purchase goods online with a stolen credit card for which the billing address is associated with New York. Most credit card merchants use Geo-location to block orders from countries like Nigeria and other high risk countries. So in order to bypass this restriction the credit card fraudster uses a proxy to spoof his IP address so that it appears to have come from New York. The IP address location appears to be legitimate since it is in the same city as the billing address. A proxy check would be needed to flag this order.&lt;br /&gt;&lt;br /&gt;2. Bypass Website Country Restrictions&lt;br /&gt;Some website services are restricted to users form only a selected list of countries. For example, a paid survey may be restricted only to countries like United States and Canada. So a user from say China may use a proxy so as to make his IP appear to have come from U.S. so that he can earn from participating in the paid survey.&lt;br /&gt;&lt;br /&gt;3. Proxy Detection Services&lt;br /&gt;So in order to stop such online frauds, Proxy Detection has become a critical component. Today most companies, credit card merchants and websites that deal with e-commerce transactions make use of Proxy Detection Services like MaxMind and FraudLabs to detect the usage of proxy or spoofed IP from users participating online.&lt;br /&gt;&lt;br /&gt;Proxy Detection web services allow instant detection of anonymous IP addresses. Even though the use of proxy address by users is not a direct indication of fraudulent behaviour, it can often indicate the intention of the user to hide his or her real IP. In fact, some of the most used ISPs like AOL and MSN are forms of proxies and are used by both good and bad consumers.&lt;br /&gt;&lt;br /&gt;How Proxy Detection Works?&lt;br /&gt;&lt;br /&gt;Proxy detection services often rely on IP addresses to determine whether or not the IP is a proxy. Merchants can obtain the IP address of the users from the HTTP header on the order that comes into their website. This IP address is sent to the proxy detecting service in real time to confirm it’s authenticity.&lt;br /&gt;&lt;br /&gt;The proxy detection services on the other hand compare this IP against a known list of flagged IPs that belong to proxy services. If the IP is not on the list then it is authenticated and the confirmation is sent back to the merchant. Otherwise it is reported to be a suspected proxy. These proxy detection services work continuously to grab a list or range of IPs that are commonly used for proxy services. With this it is possible to tell whether or not a given IP address is a proxy or spoofed IP.&lt;br /&gt;&lt;br /&gt;How to Tell Whether a given IP is Real or a Proxy?&lt;br /&gt;&lt;br /&gt;There are a few free sites that help you determine whether or not a given IP is a proxy. You can use free services like &lt;a href="http://whatismyipaddress.com"&gt;WhatisMyIPAddress&lt;/a&gt; to detect proxy IPs. Just enter the suspected IP in the field and click on “Lookup IP Address” button to check the IP address. If it is a suspected proxy then you will see the results something as follows.&lt;br /&gt;How to Tell Whether a given IP is Real or a Proxy?&lt;br /&gt;&lt;br /&gt;There are a few free sites that help you determine whether or not a given IP is a proxy. You can use free services like WhatisMyIPAddress to detect proxy IPs. Just enter the suspected IP in the field and click on “Lookup IP Address” button to check the IP address. If it is a suspected proxy then you will see the results something as follows.&lt;br /&gt;&lt;br /&gt;Detect Anonymous Proxy&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So for all those who think that they can escape by using a spoofed IP, this post is the answer. I hope this information helps. Pass your comments.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-3006483704544846770?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/3006483704544846770/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2011/05/how-to-detect-anonymous-ip-addresses.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3006483704544846770'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3006483704544846770'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2011/05/how-to-detect-anonymous-ip-addresses.html' title='How to Detect Anonymous IP Addresses'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-8963870305549692357</id><published>2011-02-26T04:49:00.000-08:00</published><updated>2011-02-26T04:49:27.854-08:00</updated><title type='text'>Internet Security, Protection, Habits and Cybercrime</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-lWVmaKF6D8w/TWj2e0NLhTI/AAAAAAAAAJs/m_nfTJ4Mg7Y/s1600/Computer-Crime-300x199.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="199" width="300" src="http://1.bp.blogspot.com/-lWVmaKF6D8w/TWj2e0NLhTI/AAAAAAAAAJs/m_nfTJ4Mg7Y/s320/Computer-Crime-300x199.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;The nature and tactics of cybercriminals is rapidly changing. Operating systems, software and network equipment that used to protect your network probably no longer work. The habits that we use to work on the Internet have also changed and may have opened doors for hackers, malware and more&lt;br /&gt;report from the Blue Coat WebPulse service and the Blue Coat Security Lab provide a comprehensive overview of the changing ways in which people are using the Internet and the new methods cybercrime is using perpetrate attacks.&lt;br /&gt;&lt;br /&gt;As conditions and platforms change our use of the Internet also changes in response.&lt;br /&gt;&lt;br /&gt;The current 2010 communication platforms based on usage are:&lt;br /&gt;&lt;br /&gt;1)      Social Networking&lt;br /&gt;&lt;br /&gt;2)      Personal Pages/Blogs&lt;br /&gt;&lt;br /&gt;3)      Chat/Instant Messaging&lt;br /&gt;&lt;br /&gt;4)      Email&lt;br /&gt;&lt;br /&gt;Webmail has fallen to 17th place ( falling from ninth in 2009, and fifth in 2008)&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Web search patterns for 2010 have changed from previous years:&lt;br /&gt;&lt;br /&gt;1)      Audio/Video Clips&lt;br /&gt;&lt;br /&gt;2)       New/Media&lt;br /&gt;&lt;br /&gt;3)      Reference&lt;br /&gt;&lt;br /&gt;Personal search categories that were popular in previous years have lost position and declined in use, perhaps based on the state of the economy.&lt;br /&gt;&lt;br /&gt;4)      Dating/Personals&lt;br /&gt;&lt;br /&gt;5)      Pornography&lt;br /&gt;&lt;br /&gt;8) Adult/Mature Content&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;With this change in usage come a shift in tactics used by cyber criminals. The landscape for 2010 revealed some noticeable shifts:&lt;br /&gt;&lt;br /&gt;1) Cybercrime repositioned itself to take advantage of Social Networking relationships and infect friends and followers with malware. Phishing and click-jacking attacks on social networks became the most common types of attacks in 2010. The main focus of these attacks is to obtain user credentials that might also be the user name and password for banking, financial and other online accounts.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;2) Use of hacked websites and email addresses of legitimate companies.  Rather than using free domains as a penetration point sites with trusted reputations and good page rank and category recognition became the hackers preferred places from which to host an attack.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;3) Attacks by malware moved to categories which would slip through spam filters and site block filters.&lt;br /&gt;&lt;br /&gt;For example, Online Storage ranked second and Open/Mixed Content ranked sixth on the list of sites hosting malware.  In fact, the number of new Online Storage sites hosting malware increased 13 percent and the number of new Open/Mixed Content sites hosting malware increased 29 percent. Interestingly, both of these categories would easily slip past most company’s filtering systems.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Based on the findings of this report many lessons can be learned to better protect employees and  confidential data.&lt;br /&gt;&lt;br /&gt;1)      Web defenses must analyze data in real time and provide immediate attack alerts since attacks that only last for a few hours can still cause huge damage.&lt;br /&gt;&lt;br /&gt;2)     A defense that only utilizes reputation ratings will leave its users exposed to malware attacks from legitimate sites.&lt;br /&gt;&lt;br /&gt;3)     Web access never sleeps so network protection must provide security 24/7 regardless of location.&lt;br /&gt;&lt;br /&gt;4)     Malware can not be deterred through the use of data governance or automated prevention parameters. A dynamic Web defense must be implemented that can identify command and control servers and block data to/from those servers.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Set comprehensive policies, update your firewalls and make sure your network equipment systems and software have you protected against malicious attacks.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-8963870305549692357?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/8963870305549692357/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2011/02/internet-security-protection-habits-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/8963870305549692357'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/8963870305549692357'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2011/02/internet-security-protection-habits-and.html' title='Internet Security, Protection, Habits and Cybercrime'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-lWVmaKF6D8w/TWj2e0NLhTI/AAAAAAAAAJs/m_nfTJ4Mg7Y/s72-c/Computer-Crime-300x199.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-6894229988767803112</id><published>2010-05-24T00:28:00.001-07:00</published><updated>2010-05-24T00:28:56.304-07:00</updated><title type='text'>Add a Map Drive Button to the Toolbar</title><content type='html'>Do you want to quickly map a drive, but can?t find the toolbar button? If you map drives often, use one of these options to add a Map Drive button to the folder toolbar.&lt;br /&gt;&lt;br /&gt;Option One (Long Term Fix)&lt;br /&gt;&lt;br /&gt;Click Start, click My Computer, right-click the toolbar, then unlock the toolbars, if necessary.&lt;br /&gt;&lt;br /&gt;Right-click the toolbar again, and then click Customize.&lt;br /&gt;&lt;br /&gt;Under Available toolbar buttons, locate Map Drive, and drag it into the position you want on the right under Current toolbar buttons.&lt;br /&gt;&lt;br /&gt;Click Close, click OK, and then click OK again.&lt;br /&gt;&lt;br /&gt;You now have drive mapping buttons on your toolbar, so you can map drives from any folder window. To unmap drives, follow the above procedure, selecting Disconnect under Available toolbar buttons. To quickly map a drive, try this option.&lt;br /&gt;&lt;br /&gt;Option Two (Quick Fix)&lt;br /&gt;&lt;br /&gt;Click Start, and right-click My Computer.&lt;br /&gt;Click Map Network Drive.&lt;br /&gt;&lt;br /&gt;If you place your My Computer icon directly on the desktop, you can make this move in only two clicks!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-6894229988767803112?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/6894229988767803112/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2010/05/add-map-drive-button-to-toolbar.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/6894229988767803112'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/6894229988767803112'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2010/05/add-map-drive-button-to-toolbar.html' title='Add a Map Drive Button to the Toolbar'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-4079574848247616117</id><published>2010-02-01T18:22:00.000-08:00</published><updated>2010-02-01T19:00:22.058-08:00</updated><title type='text'>Access Gmail through Outlook Mobile</title><content type='html'>Gmail offers both POP and IMAP e-mail access. Though both POP and IMAP enable you to access e-mail through Microsoft Office Outlook Mobile, using IMAP provides more benefits. With POP you can only download e-mail from your Inbox to your Windows Mobile phone. Any changes that are made to your phone’s mailbox will not be reflected in your Gmail account and vice versa. For instance, if you create a folder in Office Outlook Mobile, the same folder will not be visible in your online Gmail account, and vice versa. However, with IMAP you will see folders that you create in Office Outlook Mobile and folders that you create in Gmail. You don’t need to sort e-mails into various folders in Outlook Mobile if you have already done so in your Gmail account. Also with IMAP, if you check your e-mail on multiple devices, you can view the latest e-mail from any of the devices.&lt;br /&gt;&lt;br /&gt;Scenario 1 explains how to configure your Outlook Mobile for POP access, and Scenario 2 describes the IMAP access. You can use either of these two options to access your mail.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Scenario 1: Configure Gmail as a POP account &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Sign in to your Gmail account on your desktop or laptop computer.&lt;br /&gt;Click Settings at the top of any Gmail page&lt;br /&gt;Click Forwarding and POP/IMAP tab on the Settings page.&lt;br /&gt;Under POP Download, choose to Enable POP for all mail or Enable POP only for mail that arrives from now on.&lt;br /&gt;Specify whether you want Gmail to keep a copy of messages in the Inbox when you access messages through POP.&lt;br /&gt;Click Save Changes.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_RMO3-0CV438/S2eS-1N40uI/AAAAAAAAAH4/i7ExaESOCrM/s1600-h/gmail1.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 184px;" src="http://1.bp.blogspot.com/_RMO3-0CV438/S2eS-1N40uI/AAAAAAAAAH4/i7ExaESOCrM/s320/gmail1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5433473083580666594" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;To configure Outlook Mobile to access your Gmail POP account on your Windows Mobile 6 phone:&lt;/span&gt;&lt;br /&gt;On your phone, click Start, and scroll to Messaging.&lt;br /&gt;Click Menu, click Tools, and then click New Account.&lt;br /&gt;Enter your e-mail address.&lt;br /&gt;Select the Try to get e-mail settings automatically from the Internet  check box, and then click Next.&lt;br /&gt;When the Auto Setup found settings screen appears, click Next.&lt;br /&gt;Enter your name and a name for the account.&lt;br /&gt;Click Next.&lt;br /&gt;Enter your user name and password. &lt;br /&gt;If you want your Windows Mobile 6 phone to save your password so you won’t have to enter it every time you want to check your mail, select the Save password check box.&lt;br /&gt;On the Automatic Send/Receive menu, select how often you want your Windows Mobile 6 phone to automatically check for new messages.&lt;br /&gt;Click Finish. &lt;br /&gt;To view your latest messages on your Windows Mobile 6 phone, click Menu, and then click Send/Receive.&lt;br /&gt;&lt;br /&gt;Scenario 2: Configure Outlook Mobile to access Gmail on your Windows Mobile 6 phone &lt;br /&gt;&lt;br /&gt;Sign in to your Gmail account on your desktop or laptop computer.&lt;br /&gt;Click Settings at the top of any Gmail page.&lt;br /&gt;Click Forwarding and POP/IMAP tab on the Settings page.&lt;br /&gt;Under IMAP Access, click Enable IMAP.&lt;br /&gt;Click Save Changes&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_RMO3-0CV438/S2eUBWLixxI/AAAAAAAAAIA/YKScE7hOH6k/s1600-h/gmail2.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 184px;" src="http://1.bp.blogspot.com/_RMO3-0CV438/S2eUBWLixxI/AAAAAAAAAIA/YKScE7hOH6k/s320/gmail2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5433474226300569362" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;To configure Outlook Mobile to access your Gmail IMAP account on your Windows Mobile 6 phone:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Click Start, and scroll to Messaging.&lt;br /&gt;Click Menu, click Tools, and then click New Account.&lt;br /&gt;Enter your e-mail address.&lt;br /&gt;Clear the Try to get e-mail settings automatically from the Internet check box, and then click Next.&lt;br /&gt;Under Your e-mail provider, click Internet e-mail.&lt;br /&gt;Click Next.&lt;br /&gt;Enter your name and a name for the account.&lt;br /&gt;Enter imap.gmail.com in the Incoming mail server text box&lt;br /&gt;In Account type select IMAP4, and then click Next.&lt;br /&gt;Enter your user name and password.&lt;br /&gt;If you want your Windows Mobile 6 phone to save your password so you won’t have to enter it every time you want to check your mail, select the Save password check box.&lt;br /&gt;Click Next.&lt;br /&gt;Enter smtp.gmail.com in the Outgoing (SMTP) mail server text box&lt;br /&gt;Make sure that the Outgoing server requires authentication check box is selected.&lt;br /&gt;Make sure that the Use the same user name and password for sending e-mail check box is selected.&lt;br /&gt;Click Advanced Server Settings.&lt;br /&gt;Select the Require SSL for Incoming e-mail check box.&lt;br /&gt;Select the Require SSL for Outgoing e-mail check box.&lt;br /&gt;Click Done.&lt;br /&gt;Select Next.&lt;br /&gt;On the Automatic Send/Receive menu, select how often you want your Windows Mobile 6 phone to automatically check for new messages.&lt;br /&gt;Click Finish. &lt;br /&gt;To view your latest messages on your Windows Mobile 6 phone, click Menu, and then click Send/Receive.&lt;br /&gt;&lt;br /&gt;DONE&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-4079574848247616117?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/4079574848247616117/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2010/02/access-gmail-through-outlook-mobile.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/4079574848247616117'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/4079574848247616117'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2010/02/access-gmail-through-outlook-mobile.html' title='Access Gmail through Outlook Mobile'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_RMO3-0CV438/S2eS-1N40uI/AAAAAAAAAH4/i7ExaESOCrM/s72-c/gmail1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-5108949964660563826</id><published>2009-12-30T00:49:00.000-08:00</published><updated>2009-12-30T01:13:13.218-08:00</updated><title type='text'>Nokia Mobile SIP Configuration</title><content type='html'>&lt;strong&gt;STEP 1 &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Go to Tools / Settings / Connection / SIP settings. &lt;br /&gt;Create the following profile &lt;br /&gt;Profile Name: eg-VoIP (Your VoIP Provider Name)&lt;br /&gt;Service Profile: IETF &lt;br /&gt;Default Access point: (your WLAN AP name or 3G AP name) &lt;br /&gt;Public user name: 800800@208.89.104.97 (Instead of 800800 account number example,use the &lt;br /&gt;account number assigned to you when signed up for VoIP service.When recorded your phone will &lt;br /&gt;show sip: 800800@208.89.104.97) &lt;br /&gt;Use Compression: No &lt;br /&gt;Registration: "Always onâ€• &lt;br /&gt;Use Security: No&lt;br /&gt; &lt;br /&gt;&lt;strong&gt;STEP 2 &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Enter the following for Proxy Server settings &lt;br /&gt;Proxy Server Address: eg- 208.89.104.97 &lt;br /&gt;Registrar Server: 208.89.104.97 &lt;br /&gt;Realm: 208.89.104.97 &lt;br /&gt;User Name: (Yours VoIP A/C User ID) &lt;br /&gt;Password: (Yours VoIP A/C Password)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STEP 3 &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Enter the following for Registrar Server settings &lt;br /&gt;Registrar Server: 208.89.104.97 (When recorded your phone will show sip: 208.89.104.97) &lt;br /&gt;Realm: 208.89.104.97 &lt;br /&gt;User Name: 800800 (Instead of 800800 account number example, use the PIN number assigned to you from VoIP service.) &lt;br /&gt;Password: (VoIP A/C Password) &lt;br /&gt;Transport Type: UDP &lt;br /&gt;Port: 5060 &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STEP 4 &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Go to connection / Internet Tel. Settings &lt;br /&gt;Create a new profile for “VoIP "(8291xxxx), name it “eg- ABC “In Connectivity / Internet tel. / preferred profile &lt;br /&gt;Choose “ABC” &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STEP 5 &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Reboot your phone. Once your phone is back on it will automatically register to VoIP Service Provider. Once it is registered you can start making calls. &lt;br /&gt;Default call type: To switch between normal GSM calls or VOIP calls, navigate to Tools / Settings / Call / Default call type. Select Cellular to make normal calls to the phone number or Internet to use VoIP to call the number or address &lt;br /&gt;&lt;br /&gt;Make Calls! &lt;br /&gt;&lt;br /&gt;To dial any phone number that is part of the NANP (North American Numbering Plan), you must dial: 1 + Area Code + Phone number &lt;br /&gt;&lt;br /&gt;To dial any phone number that is outside of the NANP (North American Numbering Plan), you must dial: Country Code + City Code + Phone number &lt;br /&gt;&lt;br /&gt;For example if you want to call India Dail 91(Country Code) 11(Area Code)123456789(Tel. No)&lt;br /&gt;&lt;br /&gt;But This Dailer Only Support Some Latest Nokia Cell Phone.&lt;br /&gt;NOKIA E51 NOKIA E60 NOKIA E61 NOKIA E61i NOKIA E62 NOKIA E65 NOKIA E66 NOKIA E70 NOKIA E71 NOKIA E90 NOKIA N71 NOKIA N73 NOKIA N75 NOKIA N77 NOKIA N78 NOKIA N79 NOKIA N80 NOKIA N81 NOKIA N81_8GB NOKIA N82 NOKIA N85 NOKIA N90 NOKIA N91 NOKIA N91_8GB NOKIA N92 NOKIA N93 NOKIA N93i NOKIA N95 NOKIA N95_8GB NOKIA N96&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-5108949964660563826?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/5108949964660563826/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/12/nokia-mobile-sip-configuration.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/5108949964660563826'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/5108949964660563826'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/12/nokia-mobile-sip-configuration.html' title='Nokia Mobile SIP Configuration'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-2207738205196530176</id><published>2009-11-09T18:38:00.000-08:00</published><updated>2009-11-11T02:08:36.640-08:00</updated><title type='text'>Nokia Universal Codes- Try this</title><content type='html'>NOKIA&lt;br /&gt;Nokia Universal Codes&lt;br /&gt;Code Description :&lt;br /&gt;Today i am going to share the the latest Universal Codes of Nokia Cell Phone these Codes will work on most of Nokia Cell Phone Enjoy with Latest Tips !!!&lt;br /&gt;&lt;br /&gt;(1) *3370# Activate Enhanced Full Rate Codec (EFR) - Your phone uses the best sound quality but talk time is reduced my approx. 5%&lt;br /&gt;(2) #3370# Deactivate Enhanced Full Rate Codec (EFR) OR *3370#&lt;br /&gt;(3) *#4720# Activate Half Rate Codec - Your phone uses a lower quality sound but you should gain approx 30%&lt;br /&gt;more Talk Time.&lt;br /&gt;(4) *#4720# Deactivate Half Rate Codec.&lt;br /&gt;(5) *#0000# Displays your phones software version, 1st Line : Software Version, 2nd Line : Software Release&lt;br /&gt;Date, 3rd Line : Compression Type.&lt;br /&gt;(6) *#9999# Phones software version if *#0000# does not work.&lt;br /&gt;(7) *#06# For checking the International Mobile Equipment Identity (IMEI Number).&lt;br /&gt;(Cool #pw+1234567890+1# Provider Lock Status. (use the "*" button to obtain the "p,w"&lt;br /&gt;and "+" symbols).&lt;br /&gt;(9) #pw+1234567890+2# Network Lock Status. (use the "*" button to obtain the "p,w"&lt;br /&gt;and "+" symbols).&lt;br /&gt;(10) #pw+1234567890+3# Country Lock Status. (use the "*" button to obtain the "p,w"&lt;br /&gt;and "+" symbols).&lt;br /&gt;(11) #pw+1234567890+4# SIM Card Lock Status. (use the "*" button to obtain the "p,w" &lt;br /&gt;and "+" symbols).&lt;br /&gt;(12) *#147# (vodafone) this lets you know who called you last.&lt;br /&gt;(13) *#1471# Last call (Only vodofone).&lt;br /&gt;(14) *#21# Allows you to check the number that "All Calls" are diverted to&lt;br /&gt;(15) *#2640# Displays security code in use.&lt;br /&gt;(16) *#30# Lets you see the private number.&lt;br /&gt;(17) *#43# Allows you to check the "Call Waiting" status of your phone.&lt;br /&gt;(18) *#61# Allows you to check the number that "On No Reply" calls are diverted to.&lt;br /&gt;(19) *#62# Allows you to check the number that "Divert If Unreachable (no service)" calls are diverted to.&lt;br /&gt;(20) *#67# Allows you to check the number that "On Busy Calls" are diverted to.&lt;br /&gt;(21) *#67705646# Removes operator logo on 3310 &amp; 3330.&lt;br /&gt;(22) *#73# Reset phone timers and game scores.&lt;br /&gt;(23) *#746025625# Displays the SIM Clock status, if your phone supports this power saving feature "SIM Clock Stop&lt;br /&gt;Allowed", it means you will get the best standby time possible.&lt;br /&gt;(24) *#7760# Manufactures code.&lt;br /&gt;(25) *#7780# Restore factory settings.&lt;br /&gt;(26) *#8110# Software version for the nokia 8110.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-2207738205196530176?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/2207738205196530176/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/11/nokia-universal-codes-try-this.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/2207738205196530176'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/2207738205196530176'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/11/nokia-universal-codes-try-this.html' title='Nokia Universal Codes- Try this'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-8490602768846432704</id><published>2009-11-09T18:36:00.000-08:00</published><updated>2009-11-09T18:37:42.783-08:00</updated><title type='text'>How To Speed Up A Slow Computer</title><content type='html'>Follow these tips.&lt;br /&gt;In the bottom right hand corner of your computer if you see lot of icons start up when you first start your computer, then this the major cause for the slowdown of your PC. Try to get rid of unwanted icons from there.&lt;br /&gt;&lt;br /&gt;Press your Start Button (bottom left) and go to "run"&lt;br /&gt;now type in: msconfig&lt;br /&gt;now you will get a box that pops up and will tell you bunch of stuff dont mess with anything else other than what I tell you now.&lt;br /&gt;Now go to your "startup" tab on the top right of the screen where it usually place and click it.&lt;br /&gt;&lt;br /&gt;Now you will have a closed in box with bunch of filenames and addresses and more boxes with checks in them. Now if you do not like anything startin up when you start your computer up then you have disable those programs. But other than that uncheck every box and then hit apply and ok. Then window will close and ask you if you want to restart or wait till later to restart.&lt;br /&gt;&lt;br /&gt;Either way when you shut it off and then turn it back on the settins will kick in. Here you are.......your PC will be more faster now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-8490602768846432704?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/8490602768846432704/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/11/how-to-speed-up-slow-computer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/8490602768846432704'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/8490602768846432704'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/11/how-to-speed-up-slow-computer.html' title='How To Speed Up A Slow Computer'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-1566335606411716703</id><published>2009-11-09T18:30:00.000-08:00</published><updated>2009-11-09T18:58:55.251-08:00</updated><title type='text'>PDF to WORD converter</title><content type='html'>If you want to convert any PDF file to Doc file you can use this software. It is very user friendly and does the job efficiently. If you have any issues in handling the application then feel free to ask.&lt;br /&gt;&lt;br /&gt;Download PDF to WORD converter&lt;br /&gt;&lt;br /&gt;Pls follow link to convert .pdf to .doc&lt;br /&gt;&lt;br /&gt;www.4shared.com/file/18877675/56bdb4b2/PDF_to_Word_converter.html?s=1/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-1566335606411716703?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/1566335606411716703/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/11/pdf-to-word-converter.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/1566335606411716703'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/1566335606411716703'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/11/pdf-to-word-converter.html' title='PDF to WORD converter'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-8285209782733714548</id><published>2009-11-06T18:46:00.000-08:00</published><updated>2009-11-06T19:02:27.083-08:00</updated><title type='text'>Setup Your Own Hot Spot :</title><content type='html'>&lt;span style="font-weight:bold;"&gt;Definition:What is  Hot Spot ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;A Hot-spot is a venue that offers Internet access over a wireless LAN through the use of a shared Internet. In general, a hot spot provides users' unfettered access to the Internet via one or more wireless access points.&lt;br /&gt;Well, how to set up your own hot spot, from determining your coverage area to installing and controlling access to your network. However, before we begin, make sure your ISP lets you share your Internet connection. Some companies don't care, while it may be a violation of your Terms of Service with others. &lt;br /&gt;&lt;br /&gt;Before you start:&lt;br /&gt;&lt;br /&gt;Who want this connection.&lt;br /&gt;Where you want them to connect &lt;br /&gt;What your ISP's connection-sharing policy is for your service &lt;br /&gt;Which network resources on your network require protection from hot-spot users &lt;br /&gt;&lt;br /&gt;Follow the Steps:&lt;br /&gt;&lt;br /&gt;Determine Hot-Spot Coverage: The goal of a hot spot is to cover a public area with an 802.11 signal. Most of the decisions about how and where to mount your access point and what antenna to use will depend on your desired coverage area. For small areas close to the physical location of your access point, a standard device such as one offered by your service provider or any wireless routers you can get off-the-shelf would do the job. Draft N (or 802.11n or Wireless-N) routers are faster and offer larger coverage than 802.11g routers. &lt;br /&gt;&lt;br /&gt;Well,  if you want to provide coverage to a municipal park a mile away, you will need to attach a more sensitive antenna and establish a line-of-site connection between your access point and the hot-spot location. &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Wireless Standards &amp; Characteristics&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;802.11&lt;/span&gt; &lt;br /&gt;Operates at 2.4GHz; the lowest common denominator of the IEEE wireless LAN standards; provides bandwidth of only 1Mbps; equipment based on this older standard may be hard to find &lt;br /&gt;&lt;span style="font-weight:bold;"&gt;802.11b&lt;/span&gt;&lt;br /&gt;Operates at 2.4GHz; backward compatible with the older 802.11 standard; delivers bandwidth of up to 11Mbps. This once-popular standard is becoming obsolete and routers/access points based on this standard are hard to find. &lt;br /&gt;&lt;span style="font-weight:bold;"&gt;802.11g&lt;/span&gt;&lt;br /&gt;Operates at 2.4GHz; delivers bandwidth of up to 54Mbps; backward compatible with 802.11b; currently has the largest user base, especially in mobile hand held applications&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;802.11n&lt;/span&gt;&lt;br /&gt;Also called Draft N; operates at 2.4GHz and 5GHz ; currently a draft specification awaiting ratification by the IEEE; delivers bandwidth of up to 300Mbps; backward compatible with 802.11g and b (when operated at 2.4Ghz); we expect this standard to co-exist with 802.11g as the standards of choice. &lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Bluetooth &lt;/span&gt;&lt;br /&gt;Operates at 2.4GHz; is a short-range, low-bandwidth solution designed to connect peripheral devices without the use of cables; is not compatible with any of the above standards; is not well suited for hot-spot deployment. &lt;br /&gt;&lt;br /&gt;Steps 2,&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Choose an antenna type:&lt;/span&gt; If you use a Wireless-N router and have a relatively small area to cover, say a restaurant or a cafe, the built-in antenna of the router should suffice. For larger area, you will need a high-gain antenna capable of bridging the gap. &lt;br /&gt;&lt;br /&gt;High-gain antennas concentrate radiation in a certain direction, in much the same way that flashlights focus beams of light. A low-gain, omni directional antenna spreads the signal in a 360-degree circular pattern, whereas a high-gain antenna focuses the signal in a particular direction, reducing the coverage from 360 degrees to 180 degrees or less. However, because a high-gain antenna delivers a more-concentrated radiation pattern, it's capable of spanning a greater distance. For example, a 24dB-gain antenna may reduce your coverage to a 10-degree swath of space but will dramatically increase the sensitivity and range of your access point in one direction. &lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_RMO3-0CV438/SvTgCuUfz8I/AAAAAAAAAHQ/By1KypRHfKI/s1600-h/4_OVR_120.gif"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 120px; height: 90px;" src="http://4.bp.blogspot.com/_RMO3-0CV438/SvTgCuUfz8I/AAAAAAAAAHQ/By1KypRHfKI/s320/4_OVR_120.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5401188190522429378" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;Connect the antenna:&lt;/span&gt; Once you've determined the appropriate antenna based on your desired coverage area, you'll need to attach it to your access point or wireless router. (A wireless router is a regular router with a built-in access point). While most antennas feature N or SMA connectors, access points can vary.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SvThAAh_S4I/AAAAAAAAAHY/G5Rw7YCN16Q/s1600-h/1_OVR_120.gif"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 120px; height: 90px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SvThAAh_S4I/AAAAAAAAAHY/G5Rw7YCN16Q/s320/1_OVR_120.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5401189243382877058" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Step 4&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;Mount the antenna:&lt;/span&gt; If your entire setup sits inside, mounting the antenna should prove easy. However, if your rig sits outside, you will need to put your access point into a weatherproof case. Just how much weatherproofing you need to make the enclosure depends on the local climate. There are both commercial and home-brew options available, depending on your level of crafting skills, it can range from something as simple as putting the device in a close box or elaborate. &lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;Step 5&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Lock down your Network:&lt;/span&gt; Generally, if your hot spot is open to the public, you'd want to separate it from your home or office network while allowing it to share your access to the Internet.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-8285209782733714548?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/8285209782733714548/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/11/setup-your-own-hot-spot.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/8285209782733714548'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/8285209782733714548'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/11/setup-your-own-hot-spot.html' title='Setup Your Own Hot Spot :'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_RMO3-0CV438/SvTgCuUfz8I/AAAAAAAAAHQ/By1KypRHfKI/s72-c/4_OVR_120.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-3753947836880448180</id><published>2009-11-05T18:38:00.000-08:00</published><updated>2009-11-05T18:46:34.607-08:00</updated><title type='text'>Introduction Of VPN (Virtual Private Network)</title><content type='html'>A VPN, or Virtual Private Network, is a connection between two endpoints - a VPN Router, for instance – in different networks that allows private data to be sent securely over a shared or public network, such as the Internet. This establishes a private network that can send data securely between these two locations or Networks. This is done by creating a “tunnel”. A VPN tunnel connects the two PCs or networks and allows data to be transmitted over the Internet as if it were still within those networks. Not a literal tunnel, it is a connection secured by encrypting the data sent between the two Networks. VPN was created as a cost-effective alternative to using a private, dedicated, leased line for a private Network. Using industry standard encryption and authentication techniques - IPSec, short for IP Security - the VPN creates a secure connection that, in effect, operates as if you were directly connected to your local network. Virtual Private Networking can be used to create secure networks linking a central office with branch offices, telecommuters, and/or professionals on the road (travelers can connect to a VPN Router using any computer with&lt;br /&gt;VPN client software that supports IPSec, such as SSH Sentinel.)&lt;br /&gt;&lt;br /&gt;There are two basic ways to create a VPN connection:&lt;br /&gt;&lt;br /&gt;•VPN Router to VPN Router&lt;br /&gt;•Computer (using VPN client software that supports IPSec) to VPN Router&lt;br /&gt;&lt;br /&gt;The VPN Router creates a “tunnel” or channel between two endpoints, so that data transmissions between them are secure. A computer with VPN client software that supports IPSec can be one of the two endpoints. Any computer with the built-in IPSec Security Manager (Microsoft 2000 and XP) allows the VPN Router to create a VPN&lt;br /&gt;tunnel using IPSec). Other versions of Microsoft operating systems require additional, third-party VPN client software applications that support IPSec to be installed.&lt;br /&gt;&lt;br /&gt;Note-:&lt;br /&gt;VPN- Virtual Private Network.&lt;br /&gt;IPSec-Internet Protocol Security &lt;br /&gt;SSH- Secure Shell&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-3753947836880448180?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/3753947836880448180/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/11/introduction-of-vpn-virtual-private.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3753947836880448180'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3753947836880448180'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/11/introduction-of-vpn-virtual-private.html' title='Introduction Of VPN (Virtual Private Network)'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-5402364509353490943</id><published>2009-11-05T02:22:00.001-08:00</published><updated>2009-11-05T18:11:25.526-08:00</updated><title type='text'>Configuring VPN tunnel between Linksys routers?</title><content type='html'>A Virtual Private Network (VPN) is a connection between two endpoints - a VPN router, for instance - in different networks that allows private data to be sent securely over a shared or public network, such as the Internet. This establishes a private network that can send data securely between these two locations or networks through a "tunnel." A VPN tunnel connects two PCs or networks and allows data to be transmitted over the Internet as if it were still within those networks. It is a connection secured by encrypting the data sent between the two networks.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SvOEL4adi0I/AAAAAAAAAG4/URwiIG99GUs/s1600-h/5049-001.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 210px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SvOEL4adi0I/AAAAAAAAAG4/URwiIG99GUs/s320/5049-001.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400805717804157762" /&gt;&lt;/a&gt;&lt;br /&gt;To setup a VPN Tunnel on a Linksys router you need to perform four steps: &lt;br /&gt;1.Connecting Devices Together&lt;br /&gt;2.Verifying the VPN Settings Needed on the Two Routers&lt;br /&gt;3.Configuring VPN Tunnel settings on Router A&lt;br /&gt;4.Configuring VPN Tunnel settings on Router B&lt;br /&gt;&lt;br /&gt;Connecting Devices Together&lt;br /&gt;&lt;br /&gt;Before connecting to a VPN tunnel you need to ensure that there is an active Internet connection between the two routers that will communicate. After ensuring that there is an active Internet connection, you need to verify the VPN settings. To verify the VPN settings of the two routers, follow the instructions below.&lt;br /&gt;&lt;br /&gt;Verifying the VPN Settings Needed on the Two Routers&lt;br /&gt;&lt;br /&gt;In order for you to successfully configure a VPN tunnel, you need to take note of the settings needed to set-up a tunnel. To verify the settings needed for your VPN Tunnel follow the steps below.&lt;br /&gt;&lt;br /&gt;Step 1:&lt;br /&gt;Access the router's web-based setup page.&lt;br /&gt;Step 2:&lt;br /&gt;Click Status then under WAN/Gateway take note of the Internet IP Address.&lt;br /&gt;Step 3:&lt;br /&gt;Click Status then LAN and take note of the IP Address.&lt;br /&gt;&lt;br /&gt;Router A's Status page:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_RMO3-0CV438/SvODk290r2I/AAAAAAAAAGw/c6MC1_c-f3U/s1600-h/5049-003.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 191px;" src="http://1.bp.blogspot.com/_RMO3-0CV438/SvODk290r2I/AAAAAAAAAGw/c6MC1_c-f3U/s320/5049-003.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400805047400705890" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_RMO3-0CV438/SvODfHe1ZlI/AAAAAAAAAGo/bX3BBF8uutU/s1600-h/5049-005.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 166px;" src="http://3.bp.blogspot.com/_RMO3-0CV438/SvODfHe1ZlI/AAAAAAAAAGo/bX3BBF8uutU/s320/5049-005.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400804948754916946" /&gt;&lt;/a&gt;&lt;br /&gt;Router B's Status page:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SvODWTkv6GI/AAAAAAAAAGg/_yJ3P2ozi9I/s1600-h/5049-007.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 192px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SvODWTkv6GI/AAAAAAAAAGg/_yJ3P2ozi9I/s320/5049-007.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400804797382125666" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_RMO3-0CV438/SvODMFsFwdI/AAAAAAAAAGY/WyiKMQ1WUTA/s1600-h/5049-009.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 166px;" src="http://3.bp.blogspot.com/_RMO3-0CV438/SvODMFsFwdI/AAAAAAAAAGY/WyiKMQ1WUTA/s320/5049-009.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400804621856129490" /&gt;&lt;/a&gt;&lt;br /&gt;Step 4:&lt;br /&gt;Make sure the Local IP Address of the two routers are different. Take note that the Local IP Address of Router A will be Router B's Remote Secure Group.&lt;br /&gt;Note: Change the Local IP Address of a Linksys router if necessary.&lt;br /&gt;In this example, we will use the following:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_RMO3-0CV438/SvOC95a4bwI/AAAAAAAAAGQ/fmo2R6vmzAg/s1600-h/5049-011.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 170px;" src="http://1.bp.blogspot.com/_RMO3-0CV438/SvOC95a4bwI/AAAAAAAAAGQ/fmo2R6vmzAg/s320/5049-011.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400804378044559106" /&gt;&lt;/a&gt;&lt;br /&gt;Step 5:&lt;br /&gt;After verifying the settings needed to setup a tunnel, you need to configure the settings on Router A. For instructions, follow the steps below.&lt;br /&gt;Configuring VPN Tunnel settings on Router A&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_RMO3-0CV438/SvOCtbohGmI/AAAAAAAAAGI/NxPNE--_ock/s1600-h/5049-013.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 210px;" src="http://4.bp.blogspot.com/_RMO3-0CV438/SvOCtbohGmI/AAAAAAAAAGI/NxPNE--_ock/s320/5049-013.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400804095170779746" /&gt;&lt;/a&gt;&lt;br /&gt;Step 1:&lt;br /&gt;Access the router's web-based setup page.&lt;br /&gt;Step 2:&lt;br /&gt;When the router's web-based setup page appears, click VPN.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SvOCfwOR2cI/AAAAAAAAAGA/qcwB0q6Mpok/s1600-h/5049-015.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 63px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SvOCfwOR2cI/AAAAAAAAAGA/qcwB0q6Mpok/s320/5049-015.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400803860179704258" /&gt;&lt;/a&gt;&lt;br /&gt;Step 3:&lt;br /&gt;Look for IPsec VPN Tunnel then select Enable.&lt;br /&gt;Step 4:&lt;br /&gt;Under Tunnel Name enter the name you want to set your tunnel. In this example "tunnel1" was used.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SvOCWKCEZqI/AAAAAAAAAF4/bGpWsAw3p54/s1600-h/5049-017.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 141px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SvOCWKCEZqI/AAAAAAAAAF4/bGpWsAw3p54/s320/5049-017.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400803695309121186" /&gt;&lt;/a&gt;&lt;br /&gt;Step 5:&lt;br /&gt;Look for Local Secure Group and select either Subnet, IP Addr. or IP Range, then on the fields provided enter the appropriate values of the router. In this example, we selected Subnet and entered "192.168.1.0" for the IP since this is the LAN segment of the local router and "255.255.255.0" for the Mask.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_RMO3-0CV438/SvOCL7ECIjI/AAAAAAAAAFw/Ny3AI7SMESM/s1600-h/5049-019.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 142px;" src="http://3.bp.blogspot.com/_RMO3-0CV438/SvOCL7ECIjI/AAAAAAAAAFw/Ny3AI7SMESM/s320/5049-019.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400803519492137522" /&gt;&lt;/a&gt;&lt;br /&gt;Step 6:&lt;br /&gt;Under Remote Security Group, select either Subnet, IP Addr., IP Range, or Any, then on the fields provided enter the appropriate values of the remote router. In this example, we selected Subnet and entered "192.168.2.0" for the IP since this is the LAN segment of the remote router and "255.255.255.0" for the Mask.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_RMO3-0CV438/SvOCB07nTvI/AAAAAAAAAFo/1huUQJ1RN7g/s1600-h/5049-021.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 181px;" src="http://4.bp.blogspot.com/_RMO3-0CV438/SvOCB07nTvI/AAAAAAAAAFo/1huUQJ1RN7g/s320/5049-021.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400803346047520498" /&gt;&lt;/a&gt;&lt;br /&gt;Step 7:&lt;br /&gt;Look for the Remote Security Gateway drop down menu and select either IP Addr. or Any, then enter the WAN/Internet IP address or the DDNS of the remote router. In this example, we selected IP Addr. and entered "10.100.16.60" for the IP Address field since this is the Internet IP address of the remote router.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SvOB3YCXbMI/AAAAAAAAAFg/BNEh74TBhbw/s1600-h/5049-023.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 121px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SvOB3YCXbMI/AAAAAAAAAFg/BNEh74TBhbw/s320/5049-023.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400803166492519618" /&gt;&lt;/a&gt;&lt;br /&gt;Step 8:&lt;br /&gt;Under Encryption, select 3DES since this is the only Encryption type supported.&lt;br /&gt;Note: Make sure the Encryption level selected is the same with the router you wish to establish a VPN tunnel with.&lt;br /&gt;Step 9:&lt;br /&gt;Under Authentication, select the authentication mode you wish to enable on your tunnel. In this example we used SHA1.&lt;br /&gt;Note: Make sure the Authentication mode selected is the same with the router you wish to establish a VPN tunnel with.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_RMO3-0CV438/SvOBrdFYSlI/AAAAAAAAAFY/9fixik-_QSc/s1600-h/5049-025.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 104px;" src="http://3.bp.blogspot.com/_RMO3-0CV438/SvOBrdFYSlI/AAAAAAAAAFY/9fixik-_QSc/s320/5049-025.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400802961688906322" /&gt;&lt;/a&gt;&lt;br /&gt;Step 10:&lt;br /&gt;Under Key Exchange Method, select Auto (IKE).&lt;br /&gt;Step 11:&lt;br /&gt;Make sure PFS is set to Enable. This will ensure that the initial key exchange and IKE proposals are secured.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SvOBhGU81QI/AAAAAAAAAFQ/0ym6n61iA9Q/s1600-h/5049-027.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 90px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SvOBhGU81QI/AAAAAAAAAFQ/0ym6n61iA9Q/s320/5049-027.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400802783781508354" /&gt;&lt;/a&gt;&lt;br /&gt;Step 12:&lt;br /&gt;Under Pre-Shared Key, enter the key you want to enable on your tunnel. In this example "MyPresharedKey" was used.&lt;br /&gt;Step 13:&lt;br /&gt;Under Key Life Time, enter the time period you want the key to expire on your tunnel. In this example "28800" was used.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_RMO3-0CV438/SvOBR6hHD5I/AAAAAAAAAFI/sKUhPncCGhw/s1600-h/5049-029.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 121px;" src="http://4.bp.blogspot.com/_RMO3-0CV438/SvOBR6hHD5I/AAAAAAAAAFI/sKUhPncCGhw/s320/5049-029.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400802522913247122" /&gt;&lt;/a&gt;&lt;br /&gt;Note: Make sure the Pre-shared Key and Key Life Time entered are the same with the remote router.&lt;br /&gt;Step 14:&lt;br /&gt;Click On &lt;span style="font-weight:bold;"&gt;Save Setting  &lt;/span&gt;&lt;br /&gt;Step 15:&lt;br /&gt;After verifying the settings needed to setup a tunnel, you need to configure the settings on Router B. For instructions, follow the steps below. &lt;br /&gt;Configuring VPN Tunnel settings on Router B&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_RMO3-0CV438/SvOA0TIo5RI/AAAAAAAAAFA/SxtvTUYqOLw/s1600-h/5049-033.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 210px;" src="http://3.bp.blogspot.com/_RMO3-0CV438/SvOA0TIo5RI/AAAAAAAAAFA/SxtvTUYqOLw/s320/5049-033.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400802014125417746" /&gt;&lt;/a&gt;&lt;br /&gt;Step 1:&lt;br /&gt;Access the router's web-based setup page.&lt;br /&gt;Step 2:&lt;br /&gt;When the router's web-based setup page appears, click VPN.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_RMO3-0CV438/SvOAmYy2E_I/AAAAAAAAAE4/KJwR0ONnG3E/s1600-h/5049-015.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 63px;" src="http://1.bp.blogspot.com/_RMO3-0CV438/SvOAmYy2E_I/AAAAAAAAAE4/KJwR0ONnG3E/s320/5049-015.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400801775126451186" /&gt;&lt;/a&gt;&lt;br /&gt;Step 3:&lt;br /&gt;Look for IPsec VPN Tunnel then select Enable.&lt;br /&gt;Step 4:&lt;br /&gt;Under Tunnel Name enter the name you want to set your tunnel. In this example "tunnel1" was used.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_RMO3-0CV438/SvOAaMbBZLI/AAAAAAAAAEw/UG_joxobnrc/s1600-h/5049-017.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 141px;" src="http://3.bp.blogspot.com/_RMO3-0CV438/SvOAaMbBZLI/AAAAAAAAAEw/UG_joxobnrc/s320/5049-017.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400801565646873778" /&gt;&lt;/a&gt;&lt;br /&gt;Step 5:&lt;br /&gt;Look for Local Secure Group and select either Subnet, IP Addr. or IP Range, then on the fields provided enter the appropriate values of the router. In this example, we selected Subnet and entered "192.168.2.0" for the IP since this is the LAN segment of the local router and "255.255.255.0" for the Mask.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_RMO3-0CV438/SvOAOwsnjII/AAAAAAAAAEo/aZqxVc117UI/s1600-h/5049-035.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 141px;" src="http://4.bp.blogspot.com/_RMO3-0CV438/SvOAOwsnjII/AAAAAAAAAEo/aZqxVc117UI/s320/5049-035.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400801369225923714" /&gt;&lt;/a&gt;&lt;br /&gt;Step 6:&lt;br /&gt;Under Remote Security Group select either Subnet, IP Addr., IP Range, or Any, then on the fields provided enter the appropriate values on your router (this values should be from the remote router). In this example we select Subnet and enter "192.168.1.0" for the IP since this is the LAN segment of the remote router and "255.255.255.0" for the Mask.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_RMO3-0CV438/SvOAD1J0FFI/AAAAAAAAAEg/kamJS6ZcXrA/s1600-h/5049-037.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 180px;" src="http://1.bp.blogspot.com/_RMO3-0CV438/SvOAD1J0FFI/AAAAAAAAAEg/kamJS6ZcXrA/s320/5049-037.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400801181443560530" /&gt;&lt;/a&gt;&lt;br /&gt;Step 7:&lt;br /&gt;Look for the Remote Security Gateway drop down menu and select either IP Addr. or Any, then enter the WAN/Internet IP address or the DDNS of the remote router. In this example, we selected IP Addr. and entered "22.15.160.53"  for the IP Address field since this is the Internet IP address of the remote router. &lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_RMO3-0CV438/SvN_l5BcwJI/AAAAAAAAAEY/rqBjuQ8OuK4/s1600-h/5049-023.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 121px;" src="http://1.bp.blogspot.com/_RMO3-0CV438/SvN_l5BcwJI/AAAAAAAAAEY/rqBjuQ8OuK4/s320/5049-023.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400800667086143634" /&gt;&lt;/a&gt;&lt;br /&gt;Step 8:&lt;br /&gt;Under Encryption, select 3DES since this is the only Encryption type supported.&lt;br /&gt;Note: Make sure the Encryption level is the same with the router you wish to establish a VPN tunnel with.&lt;br /&gt;Step 9:&lt;br /&gt;Under Authentication, select the authentication mode you wish to enable on your tunnel. In this example we used SHA1.&lt;br /&gt;Note: Make sure the Authentication mode is the same with the router you wish to establish a VPN tunnel with.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SvN_OQzLaGI/AAAAAAAAAEQ/s95QjA3j1ew/s1600-h/5049-025.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 104px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SvN_OQzLaGI/AAAAAAAAAEQ/s95QjA3j1ew/s320/5049-025.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400800261151877218" /&gt;&lt;/a&gt;&lt;br /&gt;Step 10:&lt;br /&gt;Under Key Exchange Method, &lt;span style="font-weight:bold;"&gt;select Auto (IKE).&lt;/span&gt;&lt;br /&gt;Step 11:&lt;br /&gt;Make sure PFS is set to Enable. This will ensure that the initial key exchange and IKE proposals are secured. &lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_RMO3-0CV438/SvN-iYjI3bI/AAAAAAAAAEI/BJJE7j230os/s1600-h/5049-027.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 90px;" src="http://3.bp.blogspot.com/_RMO3-0CV438/SvN-iYjI3bI/AAAAAAAAAEI/BJJE7j230os/s320/5049-027.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400799507317841330" /&gt;&lt;/a&gt;&lt;br /&gt;Step 12:&lt;br /&gt;Under Pre-Shared Key, enter the key you want to enable on your tunnel. In this example &lt;span style="font-weight:bold;"&gt;"MyPresharedKey"&lt;/span&gt; was used.&lt;br /&gt;Step 13:&lt;br /&gt;Under Key Life Time, enter the time period you want the key to expire on your tunnel. In this example &lt;span style="font-weight:bold;"&gt;"28800"&lt;/span&gt; was used.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SvN-IHr8E7I/AAAAAAAAAEA/6ckcMvrS7GI/s1600-h/5049-029.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 121px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SvN-IHr8E7I/AAAAAAAAAEA/6ckcMvrS7GI/s320/5049-029.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5400799056114750386" /&gt;&lt;/a&gt;&lt;br /&gt;Note: Make Sure the Pre-Shared Key and Key Life Time Entered are the same with the remote Router &lt;br /&gt;Step:14&lt;br /&gt;Click On &lt;span style="font-weight:bold;"&gt;Save Setting&lt;/span&gt; &lt;br /&gt;Step:15&lt;br /&gt;Click On &lt;span style="font-weight:bold;"&gt;Connect &lt;/span&gt;&lt;br /&gt;Cheers Now your VPN is Ready to Use&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-5402364509353490943?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/5402364509353490943/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/11/note-make-sure-pre-shared-key-and-key.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/5402364509353490943'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/5402364509353490943'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/11/note-make-sure-pre-shared-key-and-key.html' title='Configuring VPN tunnel between Linksys routers?'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_RMO3-0CV438/SvOEL4adi0I/AAAAAAAAAG4/URwiIG99GUs/s72-c/5049-001.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-4331412765169236553</id><published>2009-11-02T23:45:00.001-08:00</published><updated>2009-11-02T23:45:47.169-08:00</updated><title type='text'>Wireless Networks vs. Wired: Which Network is More Secure?</title><content type='html'>&lt;a href="http://3.bp.blogspot.com/_RMO3-0CV438/Su_fpaswGuI/AAAAAAAAADw/ppcQjdLlQRQ/s1600-h/cord_in_globe.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 240px;" src="http://3.bp.blogspot.com/_RMO3-0CV438/Su_fpaswGuI/AAAAAAAAADw/ppcQjdLlQRQ/s320/cord_in_globe.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5399780380875168482" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-4331412765169236553?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/4331412765169236553/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/11/wireless-networks-vs-wired-which.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/4331412765169236553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/4331412765169236553'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/11/wireless-networks-vs-wired-which.html' title='Wireless Networks vs. Wired: Which Network is More Secure?'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_RMO3-0CV438/Su_fpaswGuI/AAAAAAAAADw/ppcQjdLlQRQ/s72-c/cord_in_globe.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-2024472827771537132</id><published>2009-11-02T18:19:00.000-08:00</published><updated>2009-11-02T18:20:41.226-08:00</updated><title type='text'>Smart Cell Phone</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_RMO3-0CV438/Su-Tc2G7ybI/AAAAAAAAADo/qeCL1W_AxG4/s1600-h/stock-photo-smart-cell-phone-39317581.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 227px;" src="http://4.bp.blogspot.com/_RMO3-0CV438/Su-Tc2G7ybI/AAAAAAAAADo/qeCL1W_AxG4/s320/stock-photo-smart-cell-phone-39317581.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5399696602010732978" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-2024472827771537132?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/2024472827771537132/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/11/smart-cell-phone.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/2024472827771537132'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/2024472827771537132'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/11/smart-cell-phone.html' title='Smart Cell Phone'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_RMO3-0CV438/Su-Tc2G7ybI/AAAAAAAAADo/qeCL1W_AxG4/s72-c/stock-photo-smart-cell-phone-39317581.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-5559470617522409588</id><published>2009-11-02T18:17:00.001-08:00</published><updated>2009-11-02T18:17:53.491-08:00</updated><title type='text'>Concept Of Telecommunications Technology...!!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/Su-SyiTO2-I/AAAAAAAAADg/Qa0vScsBmhs/s1600-h/stock-photo-concept-of-telecommunications-technology-with-network-cables-39848068.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 306px; height: 320px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/Su-SyiTO2-I/AAAAAAAAADg/Qa0vScsBmhs/s320/stock-photo-concept-of-telecommunications-technology-with-network-cables-39848068.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5399695875139099618" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-5559470617522409588?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/5559470617522409588/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/11/concept-of-telecommunications.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/5559470617522409588'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/5559470617522409588'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/11/concept-of-telecommunications.html' title='Concept Of Telecommunications Technology...!!'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_RMO3-0CV438/Su-SyiTO2-I/AAAAAAAAADg/Qa0vScsBmhs/s72-c/stock-photo-concept-of-telecommunications-technology-with-network-cables-39848068.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-811988003832726217</id><published>2009-11-02T02:12:00.000-08:00</published><updated>2009-11-02T02:13:04.975-08:00</updated><title type='text'>Digital Camera....!!!!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_RMO3-0CV438/Su6wmsUdGNI/AAAAAAAAADY/W8ry9fvCF_w/s1600-h/stock-photo-digital-camera-8002987.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 306px; height: 320px;" src="http://4.bp.blogspot.com/_RMO3-0CV438/Su6wmsUdGNI/AAAAAAAAADY/W8ry9fvCF_w/s320/stock-photo-digital-camera-8002987.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5399447182042274002" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-811988003832726217?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/811988003832726217/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/11/digital-camera.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/811988003832726217'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/811988003832726217'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/11/digital-camera.html' title='Digital Camera....!!!!'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_RMO3-0CV438/Su6wmsUdGNI/AAAAAAAAADY/W8ry9fvCF_w/s72-c/stock-photo-digital-camera-8002987.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-3672599498276698334</id><published>2009-11-02T02:02:00.001-08:00</published><updated>2009-11-02T02:03:19.639-08:00</updated><title type='text'>Computer network communicating data each other</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_RMO3-0CV438/Su6uYL87LUI/AAAAAAAAADQ/wx1niJCYcH8/s1600-h/stock-photo-computer-network-communicating-data-each-other-9723547.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 199px;" src="http://4.bp.blogspot.com/_RMO3-0CV438/Su6uYL87LUI/AAAAAAAAADQ/wx1niJCYcH8/s320/stock-photo-computer-network-communicating-data-each-other-9723547.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5399444733812223298" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-3672599498276698334?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/3672599498276698334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/11/computer-network-communicating-data.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3672599498276698334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3672599498276698334'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/11/computer-network-communicating-data.html' title='Computer network communicating data each other'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_RMO3-0CV438/Su6uYL87LUI/AAAAAAAAADQ/wx1niJCYcH8/s72-c/stock-photo-computer-network-communicating-data-each-other-9723547.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-2455638982851304726</id><published>2009-10-30T22:00:00.001-07:00</published><updated>2009-10-30T22:00:37.432-07:00</updated><title type='text'>Home Network Benefits</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SuvEbmraf8I/AAAAAAAAACg/Wbe7SdIMHmk/s1600-h/wireless_network2.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 277px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SuvEbmraf8I/AAAAAAAAACg/Wbe7SdIMHmk/s320/wireless_network2.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5398624556851822530" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-2455638982851304726?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/2455638982851304726/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/10/home-network-benefits.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/2455638982851304726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/2455638982851304726'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/10/home-network-benefits.html' title='Home Network Benefits'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_RMO3-0CV438/SuvEbmraf8I/AAAAAAAAACg/Wbe7SdIMHmk/s72-c/wireless_network2.JPG' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-6030623114664974170</id><published>2009-10-30T21:57:00.001-07:00</published><updated>2009-10-30T21:57:55.265-07:00</updated><title type='text'>Home Network Clutter Can Go Away! Take your home network from this:</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SuvDyy-ZBeI/AAAAAAAAACY/tkxvnS_b_Ak/s1600-h/home_network_clutter.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 286px; height: 240px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SuvDyy-ZBeI/AAAAAAAAACY/tkxvnS_b_Ak/s320/home_network_clutter.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5398623855778006498" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-6030623114664974170?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/6030623114664974170/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/10/home-network-clutter-can-go-away-take.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/6030623114664974170'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/6030623114664974170'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/10/home-network-clutter-can-go-away-take.html' title='Home Network Clutter Can Go Away! Take your home network from this:'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_RMO3-0CV438/SuvDyy-ZBeI/AAAAAAAAACY/tkxvnS_b_Ak/s72-c/home_network_clutter.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-4318416624334201440</id><published>2009-10-30T21:52:00.001-07:00</published><updated>2009-10-30T21:54:32.421-07:00</updated><title type='text'>Or This :</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SuvDA0lFFMI/AAAAAAAAACQ/tDYLooRKCYY/s1600-h/office.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 307px; height: 300px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SuvDA0lFFMI/AAAAAAAAACQ/tDYLooRKCYY/s320/office.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5398622997215253698" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-4318416624334201440?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/4318416624334201440/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/10/or-this.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/4318416624334201440'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/4318416624334201440'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/10/or-this.html' title='Or This :'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_RMO3-0CV438/SuvDA0lFFMI/AAAAAAAAACQ/tDYLooRKCYY/s72-c/office.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-2879066982846124545</id><published>2009-10-30T21:42:00.001-07:00</published><updated>2009-10-30T21:43:07.345-07:00</updated><title type='text'>Don’t Be Scared to… Set up and Configure your Wireless Network</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RMO3-0CV438/SuvAUxglCEI/AAAAAAAAAB4/3JZ_Ecu_FWc/s1600-h/Scared_setup_configure_V2.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 216px; height: 280px;" src="http://2.bp.blogspot.com/_RMO3-0CV438/SuvAUxglCEI/AAAAAAAAAB4/3JZ_Ecu_FWc/s320/Scared_setup_configure_V2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5398620041453570114" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-2879066982846124545?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/2879066982846124545/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/10/dont-be-scared-to-set-up-and-configure.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/2879066982846124545'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/2879066982846124545'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/10/dont-be-scared-to-set-up-and-configure.html' title='Don’t Be Scared to… Set up and Configure your Wireless Network'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_RMO3-0CV438/SuvAUxglCEI/AAAAAAAAAB4/3JZ_Ecu_FWc/s72-c/Scared_setup_configure_V2.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-3680103013501963866</id><published>2009-10-30T21:41:00.000-07:00</published><updated>2009-10-30T21:42:17.876-07:00</updated><title type='text'>Don’t be Scared to…Change your Router Passwords</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_RMO3-0CV438/SuvAI_zKN2I/AAAAAAAAABw/Wk38LoiIW_c/s1600-h/Scared_Router_Passwords_v2.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 216px; height: 280px;" src="http://3.bp.blogspot.com/_RMO3-0CV438/SuvAI_zKN2I/AAAAAAAAABw/Wk38LoiIW_c/s320/Scared_Router_Passwords_v2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5398619839131170658" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-3680103013501963866?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/3680103013501963866/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/10/dont-be-scared-tochange-your-router.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3680103013501963866'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3680103013501963866'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/10/dont-be-scared-tochange-your-router.html' title='Don’t be Scared to…Change your Router Passwords'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_RMO3-0CV438/SuvAI_zKN2I/AAAAAAAAABw/Wk38LoiIW_c/s72-c/Scared_Router_Passwords_v2.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-3669477269533245894</id><published>2009-10-30T21:40:00.001-07:00</published><updated>2009-10-30T21:41:02.061-07:00</updated><title type='text'>Don’t be Scared to add another Computer to your Network</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_RMO3-0CV438/Suu_ymhXX-I/AAAAAAAAABo/rKgUum0zm70/s1600-h/Dont_be_scared_computer_4.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 216px; height: 279px;" src="http://3.bp.blogspot.com/_RMO3-0CV438/Suu_ymhXX-I/AAAAAAAAABo/rKgUum0zm70/s320/Dont_be_scared_computer_4.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5398619454388527074" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-3669477269533245894?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/3669477269533245894/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/10/dont-be-scared-to-add-another-computer_30.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3669477269533245894'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/3669477269533245894'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/10/dont-be-scared-to-add-another-computer_30.html' title='Don’t be Scared to add another Computer to your Network'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_RMO3-0CV438/Suu_ymhXX-I/AAAAAAAAABo/rKgUum0zm70/s72-c/Dont_be_scared_computer_4.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8468175954436162697.post-1806165254307307988</id><published>2009-10-30T21:36:00.000-07:00</published><updated>2009-10-30T21:39:36.211-07:00</updated><title type='text'>Don’t Be Scared to Update Your Firmware</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_RMO3-0CV438/Suu_Zolwn7I/AAAAAAAAABg/p5C-VeIp_r0/s1600-h/Scare_Firmware_V2.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 216px; height: 280px;" src="http://4.bp.blogspot.com/_RMO3-0CV438/Suu_Zolwn7I/AAAAAAAAABg/p5C-VeIp_r0/s320/Scare_Firmware_V2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5398619025447100338" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8468175954436162697-1806165254307307988?l=nabeenme.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nabeenme.blogspot.com/feeds/1806165254307307988/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://nabeenme.blogspot.com/2009/10/dont-be-scared-to-update-your-firmware_30.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/1806165254307307988'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8468175954436162697/posts/default/1806165254307307988'/><link rel='alternate' type='text/html' href='http://nabeenme.blogspot.com/2009/10/dont-be-scared-to-update-your-firmware_30.html' title='Don’t Be Scared to Update Your Firmware'/><author><name>Nabeen</name><uri>http://www.blogger.com/profile/15773176580585255689</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_RMO3-0CV438/Su6saXXa7lI/AAAAAAAAACw/5ApnIRYU_ss/S220/hitkeyboard.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_RMO3-0CV438/Suu_Zolwn7I/AAAAAAAAABg/p5C-VeIp_r0/s72-c/Scare_Firmware_V2.jpg' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
