Posts

Showing posts from November, 2016

To setup IIS and Apache Web Server on computer system.

Include the following source Code in Document Environment in your LaTeX File Source Code: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Practical 4 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \newpage \section{\emph{To setup IIS and Apache Web Server on computer system.}} \textbf{Setup of IIS Server} \\Internet Information Services (IIS) is an extensible web server created by  Microsoft for use with Windows NT family. IIS supports HTTP, HTTPS, FTP, FTPS, SMTP and NNTP. It has been an integral part of the Windows NT family since  Windows NT 4.0, though it may be absent from some edition and is not active by default.\\ \textbf{Steps for Setting IIS Server} \begin{enumerate} \item To open the Windows Features dialog box, click Start, and then click Control Panel \begin{figure}[h] \centering \includegraphics[scale=0.7]{p4} \end{figure} \item In...

To get familiarize with various troubleshooting utilities like ping, ipconfig, arp, traceroute, mtr,tcpdump, windump, nslookup and netstat.

Include the following source Code in Document Environment in your LaTeX File Source Code: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Practical 3 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \newpage \section{\emph{To get familiarize with various troubleshooting utilities.}} \textbf{ping}\\ PING command is the best way to test connectivity between two nodes. Whether it is (LAN) or (WAN). Ping use ICMP to communicate to other devices. You can ping host name of ip address using below command.ping uses the ICMP protocol’s mandatory ECHO\_\ REQUEST datagram to elicit an ICMPECHO\_\ RESPONSE from a host or gateway. ECHO\_\ REQUEST datagrams have an IPand ICMP header,followed by a struct timeval and then an arbitrary number of “pad” bytes used to fill out the packet.\\ \textbf{SYNOPSIS}\\ ping -s [-d] [-l] [-L] [-n] [-r] [-R] [-v] [ -i interface\_\ address ] [-I interval] ...

Internet Methodologies Practical File Made in LaTeX

Image
All The Lab Practicals will be Done in LaTeX. This is Lab File For GNDEC IT Dept. students.All the codes are written in easiest way.You can copy.Get output and enjoy! ! Point to be noted: Copy The Source code As it is......But Do Remember 😜  to change name and roll no. on front page. I have Commented{in  RED  with %}  in the code Where you have to do Changes so enjoy with a few changes!! Practical 3 and Practical 4 only 1st page is made ,so rest get it printed from practical 3 and 4 pdfs. Download all images  (Given Below)in the same folder,where you have saved the copy of source code i.e. (.tex) file  TeXworks used for compiling!! HTML FILES !! TeX File !! Output at end Keep iView-ing!! Source Code: \documentclass[12pt]{article} \usepackage{graphicx} \usepackage{wrapfig} \usepackage{multicol} \usepackage{caption} \usepackage{subcaption} \usepackage{transparent} \usepackage{multirow} \usepackage{eso-pic} \usepackage[utf8]{in...

Project File OOPs with C++

Include the following source Code in Document Environment in your LaTeX File. It is an example of writing Synopsis of a particular project,You can change content according to your needs!! Source Code: \documentclass[12pt]{article} \usepackage{graphicx} \usepackage{wrapfig} \usepackage{multicol} \usepackage{caption} \usepackage{subcaption} \usepackage{transparent} \usepackage{multirow} \usepackage{eso-pic} \usepackage[utf8]{inputenc} \usepackage{color} \setcounter{secnumdepth}{5} \usepackage{fancyhdr} \pagestyle{fancy} \fancyhf{} \rhead{iView AD} \lhead{OOP's with C++} %%%%%%%%%%%%%%% \newcommand\BackgroundIm{ \put(0,0){ \parbox[b][\paperheight]{\paperwidth}{ \vfill \centering {\transparent{0.05} \includegraphics[height=\paperheight,width=\paperwidth, keepaspectratio]{gne}%%Background image \vfill }}}} %%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{document} \begin{titlepage} \newcommand{\HRule}{\rule{\linewidth}{1mm}} \newcommand{\VRule}{\rule{1mm}{\texthe...

iView AD's Calendar With To-Do using C++

Image
Made using Dev-C++!! Updated Periodically!!  Source Code: #include<iostream> #include<ctime> #include<time.h> #include<cstdlib> #include<iomanip> #include<string.h> #include<fstream> #include<cstdio> #include<conio.h> #include <iomanip> using namespace std; /***********************************************************************************/ int y; time_t t = time(NULL); tm* timePtr = localtime(&t); /***********************************************************************************/ class calender { public: bool isLeapYear (int); //To check for leap years int firstDayofnewyearMonth (int ); //To Check 1st day of jan year int numOfDaysInMonth (int, bool); //takes the number of the month, a flag saying whether year is leap void printHeader (int); //takes the number of the month, and the first day, prints, and updates void printMonth (int, int&); //the first day of the next month v...