An Introduction To: CDMA Technology
An Introduction To: CDMA Technology
An Introduction To: CDMA Technology
Technical Seminar-2004
An Introduction
To
CDMA Technology
Filter
Bandwidth W
Information Signal Recovered
i(t) s(t) r(t) d(t) Informational
Signal
Data Rate Ri c(t) c(t)
Bandwidth Wi
Spreading Sequence Spreading Sequence
Chip Rate Rc Chip Rate Rc
Bandwith Wc Bandwidth Wc
Wideband Narrowband
DS/FH DS/FH/TH
Slow Fast
DS/TH FH/TH
Wireless Channel
time
WT2
#Code
#Code
time time
WT3
#Code
I Phase II Phase
CDMA-2000 1X CDMA-2000 3X
144kbps packet data rate Circuit & packet data rates up
to 2Mbps
Two fold increase in both voice
capacity & standby time Incorporates advanced multimedia
capabilities
Advanced packet data services
Greatly extended battery life Supports framework for advanced
3G voice services & vocoders
Channel size of 1.25 MHz
Channel sizes- 5MHz,10MHz
Improved Quality
Simplified System Planning
Enhanced Privacy
Improved Coverage
Increased Portable Talk Time
Bandwidth on Demand
I Phase II Phase
CDMA-2000 1X CDMA-2000 3X
144kbps packet data rate Circuit & packet data rates up
to 2Mbps
Two fold increase in both voice
capacity & standby time Incorporates advanced multimedia
capabilities
Advanced packet data services
Greatly extended battery life Supports framework for advanced
3G voice services & vocoders
Channel size of 1.25 MHz
Channel sizes- 5MHz,10MHz
Improved Quality
Simplified System Planning
Enhanced Privacy
Improved Coverage
Increased Portable Talk Time
Bandwidth on Demand
Improved Quality
Simplified System Planning
Enhanced Privacy
Improved Coverage
Increased Portable Talk Time
Bandwidth on Demand
Improved Quality
Simplified System Planning
Enhanced Privacy
Improved Coverage
Increased Portable Talk Time
Bandwidth on Demand
Improved Quality
Simplified System Planning
Enhanced Privacy
Improved Coverage
Increased Portable Talk Time
Bandwidth on Demand
Improved Quality
Simplified System Planning
Enhanced Privacy
Improved Coverage
Increased Portable Talk Time
Bandwidth on Demand
• IIS.
• O'Reilly & Associates WebSite Pro.
• Netscape FastTrack Server.
• Netscape Enterprise Server.
• StarNine’s WebSTAR (for Macintosh).
•UserDir some_directory
When this form of the UserDir directive is used, Apche receives a
URL request of the form
http://www.nistinfo.com/~sudhir
and uses system resources to locate the home directory of a user
named sudhir.
e.g.,
If the directive like UserDir some_directory is in effect, Apache will
search in a directory
/home/sudhir/some_directory
•UserDir /an/absolute/path
This method assumes that each user will have his/her own
subdirectory under the specified UserDir. e.g., If Apche receives a
URL request of the form
http://www.nistinfo.com/~sudhir/myphotos.html
when a directive like the following is in effect.
UserDir /usr/webspace
Apache will search in a directory
/usr/webspace/sudhir/myphotos.html
•UserDir /an/absolute/path/*/with/wildcard
In this method the absolute path to the directory in which users
should be storing their web documents.However, in plece of actual
user name, you put an asterisk(*). If Apche receives a URL
request of the form
http://www.nistinfo.com/~sudhir
when a directive like the following is in effect.
UserDir /usr/webspace/*/public_html
Apache will map the URL to the directory
/usr/webspace/sudhir/public_html
The term Virtual Host refers to the practice of maintaining more than
one server on one machine, as differentiated by their apparent
hostname.
For example, it is often desirable for companies sharing a web server to
have their own domains, with web servers accessible as
www.nistinfo.com and www.sudhir.com, without
requiring the user to know any extra path
information.
2.Virtual Hosting by IP
BindAddress *
IP address domainnames
172.61.25.10 www.nistinfo.com
172.61.25.210 www.sudhir.com
DocumentRoot /webspace/nistinfo
ErrorLog /webspace/logs/error_log
TransferLog /webspace/logs/access_log
</VirtualHost>
<VirtualHost www.sudhir.com>
DocumentRoot /home/sudhir/public_html
ErrorLog /home/sudhir/public_html/logs/error_log
TransferLog /home/sudhir/public_html/logs/access_log
</VirtualHost>
Ashok kumar choudhury Roll No-200117170 36
CDMA Technology
Name based Virtual Hosts
•Check your IP Address :-
Technical Seminar-2004
NameVirtualHost 172.61.25.10
<VirtualHost 172.61.25.10>
ServerName www.nistinfo.com
DocumentRoot /webspace/nistinfo
ErrorLog /webspace/logs/error_log
TransferLog /webspace/logs/access_log
</VirtualHost>
Ashok kumar choudhury Roll No-200117170 39
CDMA Technology
Name based Virtual Hosts
•Configure VirtualHost Directive ( /etc/httpd.conf
Technical Seminar-2004
file):-
<VirtualHost 172.61.25.10>
ServerName www.sudhir.com
DocumentRoot /home/sudhir/public_html
ErrorLog /home/sudhir/public_html/logs/error_log
TransferLog /home/sudhir/public_html/logs/access_log
</VirtualHost>
• /usr/local/bin/httpd
• apachectl start
• Stopping Apache :-
• kill the PID of the parent httpd.
• kill -TERM `cat /var/run/httpd.pid`
• apachectl stop
• Handlers :-
• Mime Types :-
Example :-
Port 80
For example:
AddModule mod_include.c
For example:
ServerRoot /usr/local/httpd
For example:
ServerName ntcsindia
Ashok kumar choudhury Roll No-200117170 56
CDMA Technology
Some Common Apache Directives
• Order directive
Technical Seminar-2004
Order Allow,Deny
Allow from apache.org
Deny from foo.apache.org
For example:
For example: