IEEE Projects On Networking

IEEE Projects On Networking has include more than 25+ sub areas.Even including wireless , wired ,wireless sensor ,communication.

NETWORKING:

Two or more computing devices are interface with each other for the purpose of data sharing is defined as networking.

Networks are building by using hardware and software

Types of network design:

Client/server:

Peer-to-peer:

Various types of networks:

Characteristics of networks:

Topology:

Protocols:

Architecture:

 

 

 

 

Network nodes:

Normally networks comprise of additional basic system building blocks Other than physical transmission medium there may be,

Overlay network:

 

Routing:

IEEE Projects On Networking Code:

#DSDV ROUTING PROTOCOL#

set ns [new Simulator]

set val(x) 500

set val(y) 500

set val(chan)          Channel/WirelessChannel;# channel type

set val(prop)          Propagation/TwoRayGround;# radio-propagation model

set val(netif)        Phy/WirelessPhy;# network interface type

set val(mac)            Mac/802_11;# MAC type

set val(ifq)          Queue/DropTail/PriQueue ;# interface queue type

set val(ll)            LL;# link layer type

set val(ant)            Antenna/OmniAntenna ;# antenna model

set val(ifqlen)        50 ;# max packet in ifq

set val(nn)            10 ;# number of mobilenodes

set val(rp)            DSDV ;# routing protocol

set val(x)             500 ;# X dimension of topography

set val(y) 500;# Y dimension of topography

set val(stop)     10.0 ;# time of simulation end

set topo       [new Topography]

$topo load_flatgrid $val(x) $val(y)

create-god $val(nn)

for {set i 0} {$i < 3} {incr i} {

set node_($i) [$ns node]

$node_($i) color black

}

 

IEEE Projects On Networking

Related Pages