IEEE Networking Projects
IEEE Networking Projects has include varity of sub divisons like vanet , adhoc , manet , handover , lte , wireless sensor networks ,communication etc..
What is networking:
- A collection of computer devices connected with a communication media.
- For example it may be computer, printer, and scanner.
- In communication two devices transfer information between them
Network architecture:
- Overall design of a computer network
- It describes how computers are configured and what strategies are used.
- It focuses functions of the network
- It is also known as network modal or network design
IEEE Networking Projects Applications :
- Sharing of resources such as printers
- Sharing of expensive software and database
- Communication from computer from another computer
- Exchange of data
- Sharing of information
Components of networks;
- Computers
- Switches
- Operating systems
- Network interfacing card
- Cables
IEEE Networking Projects Benefits :
- Sharing
- Connectivity
- Increased speed
- Reduced cost
- Improved security
- Flexible access
- Centralized software management
Servers used in networking;
- File server
- Printer Server
- Application server
- Message server
- Database server
Computer viruses:
- Any system can be affected by computer viruses.
CODE:
#Create six nodes
set n0 [$ns node]
set n1 [$ns node]
#Create links between the nodes
$ns duplex-link $n0 $n1 .3Mb 50ms DropTail
#Set Queue Size of link (n2-n3) to 10
$ns queue-limit $n0 $n1 4
#Setup a TCP connection
set tcp [new Agent/TCP/Newreno]
$ns attach-agent $n0 $tcp
set sink [new Agent/TCPSink/DelAck]
$ns attach-agent $n1 $sink
$ns connect $tcp $sink
$tcp set fid_ 1
$tcp set window_ 8000
$tcp set packetSize_ 552
#Setup a FTP over TCP connection
set ftp [new Application/FTP]
$ftp attach-agent $tcp
$ftp set type_ FTP
$ns at 1.0 “$ftp start”
$ns at 124.0 “$ftp stop”
IEEE Networking Projects