Showing posts with label Manuals. Show all posts
Showing posts with label Manuals. Show all posts

March 28, 2013

Lab Manual Of Computer Communication and Networks

1 Introduction to Networking Devices https://cs-study.blogspot.com/2012/09/networking-devices.html
2 Introduction to Packet Tracer https://cs-study.blogspot.com/2012/10/what-is-packet-tracer.html
3 Packet Tracer CLI commands https://cs-study.blogspot.com/2012/10/packet-tracer-cli.html
4 Introduction to Cables https://cs-study.blogspot.com/2012/10/networking-cables-and-connections.html
5 Communication in PT, getting started .. https://cs-study.blogspot.com/2012/10/communication-between-pcs-in-packet.html
6 RIP on Packet Tracer https://cs-study.blogspot.com/2012/10/rip-on-packet-tracer.html
7 RIP V2 on Packet Tracer https://cs-study.blogspot.com/2012/10/rip-version-2-on-packet-tracer.html
8 EIGRP on Packet Tracer https://cs-study.blogspot.com/2012/10/eigrp-on-packet-tracer.html
9 OSPF on Packet Tracer https://cs-study.blogspot.com/2013/03/ospf-on-packet-tracer.html
10 DHCP on Router https://cs-study.blogspot.com/2012/10/dhcp-on-packet-tracer.html
11 DHCP on PT through Server https://cs-study.blogspot.com/2012/10/dhcp-on-packet-tracer-through-server.html
12 DNS on Packet Tracer https://cs-study.blogspot.com/2012/10/dns-on-packet-tracer.html
13 VLANS on Packet Tracer https://cs-study.blogspot.com/2012/11/vlan-on-packet-tracer.html
14 VTP on Packet Tracer https://cs-study.blogspot.com/2012/11/vtp-on-packet-tracer.html
15 Spanning Tree Protocol on Packet Tracer https://cs-study.blogspot.com/2012/11/spanning-tree-protocol-on-packet-tracer.html
16 Sticky MAC addresses https://cs-study.blogspot.com/2012/12/sticky-mac-addresses.html
17 Inter VLAN Routing (Router on a Stick) https://cs-study.blogspot.com/2012/11/inter-vlan-routing-router-on-stick.html
18 CDP on Packet Tracer https://cs-study.blogspot.com/2012/12/cdp-cisco-discovery-protocol.html
19 Telnet and SSH https://cs-study.blogspot.com/2012/12/telnet-and-ssh-on-packet-tracer.html
20 Password Authentication Protocol on PT https://cs-study.blogspot.com/2012/12/password-authentication-protocol-on.html
21 Challenge Hand Shake Authentication Protocol on PT https://cs-study.blogspot.com/2012/12/point-to-point-protocol-on-packet.html
22 Voice Over IP on PT (VOIP) https://cs-study.blogspot.com/2012/12/voice-over-ip-voip-on-packet-tracer.html
23 Wireless Communication on Packet Tracer https://cs-study.blogspot.com/2012/12/wireless-communication-in-packet-tracer.html
24 Access Control List on PT https://cs-study.blogspot.com/2012/11/acl-on-packet-tracer.html
NS2 (Network Simulator - 2) Tutorials
25 NS 2 and Ubuntu Installation https://cs-study.blogspot.com/2012/12/ns2-installation-and-ubuntu.html
26 Nodes Creation in NS 2 https://cs-study.blogspot.com/2012/12/add-following-code-to-new-file-and.html
27 Traffic Flow in NS 2 https://cs-study.blogspot.com/2012/12/traffic-flow-on-nodes-in-ns2.html
28 Dynamic Nodes generation and traffic flow in ns2    https://cs-study.blogspot.com/2013/05/dynamic-nodes-generation-and-traffic.html  
29 Xgraph in NS2  https://cs-study.blogspot.com/2013/05/xgraph-in-ns2.html
 30   Wireless Communication in NS2




C program to Read From a File

#include <stdio.h> #include <stdlib.h> void main() {     FILE *fptr;     char filename[15];     char ch;   ...