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
Client/server:
- The centralized computer acts as a server that store email, Web pages, files and or applications.
Peer-to-peer:
- All computers in the network tend to support the same functionalities.
Various types of networks:
- Local area network (LAN)
- Wide area network (WAN)
- Campus area networks (CAN)
- Metropolitan area network (MAN)
- Home area networks (HAN)
Characteristics of networks:
- Topology
- Protocol
- Architecture
Topology:
- The geometric arrangements of computer systems are known as topology. Types of networking topology includes:
- Bus
- Star
- Ring
- Mesh
- Line
- Tree
- Fully connected
Protocols:
- Protocols contains a set of procedure and rules which is used during communication. Popular most protocols include TCP/IP
Architecture:
- Components of networks are forming the structure to the network which includes nodes, routers, servers etc.
Network nodes:
Normally networks comprise of additional basic system building blocks Other than physical transmission medium there may be,
- Network interface controller (NICs)
- Repeaters
- Hubs
- Bridges
- Switches
- Routers
- Modems
- Firewalls
Overlay network:
- A virtual computer network that is built on top of another network is defined as virtual network.
- Nodes are connected in logical link.
- Many peer-to-peer networks are overlay networks
Routing:
- To carry network traffic a path should be defined.
- It can be done in two types of networks which is :
- Circuit switching
- Packet switching
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