Sunday, February 24, 2013

WiMAX Wireless Network


In practical terms, WiMAX would operate similar to WiFi but at higher speeds, over greater distances and for a greater number of users. WiMAX could potentially erase the suburban and rural blackout areas that currently have no broadband Internet access because phone and cable companies have not yet run the necessary wires to those remote locations.


  • WiMAX system consists of two parts:


  • A WiMAX tower, similar in concept to a cell-phone tower - A single WiMAX tower can provide coverage to a very large area -- as big as 3,000 square miles (~8,000 square km).


  • A WiMAX receiver - The receiver and antenna could be a small box or PCMCIA card, or they could be built into a laptop the way WiFi access is today.

    A WiMAX tower station can connect directly to the Internet using a high-bandwidth, wired connection (for example, a T3 line). It can also connect to another WiMAX tower using a line-of-sight, microwave link. This connection to a second tower (often referred to as a backhaul), along with the ability of a single tower to cover up to 3,000 square miles, is what allows WiMAX to provide coverage to remote rural areas.

    What this points out is that WiMAX actually can provide two forms of wireless service:


  • There is the non-line-of-sight, WiFi sort of service, where a small antenna on your computer connects to the tower. In this mode, WiMAX uses a lower frequency range -- 2 GHz to 11 GHz (similar to WiFi). Lower-wavelength transmissions are not as easily disrupted by physical obstructions -- they are better able to diffract, or bend, around obstacles.


  • There is line-of-sight service, where a fixed dish antenna points straight at the WiMAX tower from a rooftop or pole. The line-of-sight connection is stronger and more stable, so it's able to send a lot of data with fewer errors. Line-of-sight transmissions use higher frequencies, with ranges reaching a possible 66 GHz. At higher frequencies, there is less interference and lots more bandwidth.

    WiFi-style access will be limited to a 4-to-6 mile radius (perhaps 25 square mile­s or 65 square km of coverage, which is similar in range to a cell-phone zone). Through the stronger line-of-sight antennas, the WiMAX transmitting station would send data to WiMAX-enabled computers or routers set up within the transmitter's 30-mile radius (2,800 square miles or 9,300 square km of coverage). This is what allows WiMAX to achieve its maximum range.

    The final step in the area network scale is the global area network (GAN). The proposal for GAN is IEEE 802.20. A true GAN would work a lot like today's cell phone networks, with users able to travel across the country and still have access to the network the whole time. This network would have enough bandwidth to offer Internet access comparable to cable modem service, but it would be accessible to mobile, always-connected devices like laptops or next-generation cell phones.

how you access the Internet today


  • Broadband access

  • In your home, you have either a DSL or cable modem. At the office, your company may be using a T1 or a T3 line.


  • WiFi access

  • In your home, you may have set up a WiFi router that lets you surf the Web while you lounge with your laptop. On the road, you can find WiFi hot spots in restaurants, hotels, coffee shops and libraries.


  • Dial-up access

  • If you are still using dial-up, chances are that either broadband access is not available, or you think that broadband access is too expensive.
    The main problems with broadband access are that it is pretty expensive and it doesn't reach all areas. The main problem with WiFi access is that hot spots are very small, so coverage is sparse. What if there were a new technology that solved all of these problems? This new technology would provide:


  • The high speed of broadband service Wireless rather than wired access, so it would be a lot less expensive than cable or DSL and much easier to extend to suburban and rural areas.


  • Broad coverage like the cell phone network instead of small WiFi hotspots.


  • This system is actually coming into being right now, and it is called WiMAX. WiMAX is short for Worldwide Interoperability for Microwave Access, and it also goes by the IEEE name 802.16. ­

    WiMAX has the potential to do to broadband Internet access what cell phones have done to phone access. In the same way that many people have given up their "land lines" in favor of cell phones, WiMAX could replace cable and DSL services, providing universal Internet access just about anywhere you go. WiMAX will also be as painless as WiFi -- turning your computer on will automatically connect you to the closest available WiMAX antenna.

Wednesday, December 12, 2012

My Website's Home Page: under Construction


Home Page Screecshoot

Wednesday, December 5, 2012

Windows 7 / Windows 8 Apache error–Port 80 is unable to start


This is one of the most popular problems in windows 7/8. There are several common situations, and remedies.(my problem has been solved by using step ***)


Situation #1: Because of Skype

If you have skupe installed, you need disable the following option to fix it.

Situation #2: Internet Information Services (IIS)

You are running IIS Server. There are two possible solutions. One is to turn off IIS server by opening IIS Server Manager, the other is to completely disable IIS server service in your computer.



Situation #3: Port 80 used by unknown process

First of all, open cmd. You can do so by opening Run and then typing cmd, then pressing enter.After opening cmd, type this


netstat -aon


It will give some output. Find out the line something like this. It will contain something that will look like :80.



Notice the PID (Process ID)? Now, open task manager by pressing Ctrl+Shift+Esc. Go to the process details and look for the PID you found out. In this case, its PID is 4.



Now, this is a weird situation. As you can see, it is a system process. You should not close a system process. Moreover, it’s description NT Kernel & System, meaning it is being used to run the process which is using port 80 and we don’t actually know which process is using it.


However, this is also solvable. After a bit of digging, I found that it is also a common scenario(!) to have NT Kernet & System grab port 80 for one particular service in both Windows 7 and Windows 8.


Go to Run prompt again. Type services.msc and press enter. It will show the services. Find the service by the name Web Deployment Agent Service. You have to stop it (by right clicking, or by the left menu). And after stopping you should be able to run Apache in port 80 without any problem.



What if Web Deployment Agent Service is not running?

Well – I am not sure what to do if it is a system process, and grabbed port 80, and is not Web Deployment Agent Service.

I found the Process ID and it is not Skype, or IIS, or System!

Cool. Shut it down through task manager. (After you are sure that you have saved all things related to it and it is not an important process)

*** I do not want to stop the process which grabbed port 80. But I still want to run Apache!

Great!!You will have to change the port of Apache then. You can change it by opening this file.


Then find this line

1| ApacheDirectory/conf/httpd.conf
2| Listen 80

See that 80? That’s the port. Change it to another value, for example 8080. You will be able to start Apache after that. Remember to access it through browser using port. For example, if the address you want to access is localhost of Apache running in port 8080, you have to enter localhost:8080 in browser.



Note: when i tried to install the XAMPP i face the problem on apche port 80 and to solve have to search on net. After searching i found the better post and copied in my blog.