Skip to main content

Posts

Showing posts from February, 2017
Run your Website in your own Windows Web Server WEB SERVER: A web server is a computer system that processes requests via HTTP, the basic network protocol used to distribute information on the World Wide Web. The term can refer to the entire system, or specifically to the software that accepts and supervises the HTTP requests. EXAMPLE OF WEB SERVER: There are a numbers of Web Server examples on Internet and the list is really huge. Here is a list of some popular web servers – Apache HTTP Server, AOLserver, Caddy, IIS Server, Oracle HTTP Server, etc. IIS SERVER: IIS Server (Internet Information Services) is very useful Web Server created by Microsoft. IIS server is easy to configurable and it is located in your own Windows System. IIS supports HTTP, HTTPS, FTP, SMTP. So, by using this server you can create you Email Server, File Server and Web server. It is the second most popular web server in the world. CREATE HTTP SERVER BY USING IIS: By default IIS se...

Configure Inter VLAN Routing on Cisco Router and Layer 3 Switches

The router you are using for Inter-VLAN routing must be compatible and support Inter-Switch Link (ISL) which is a Cisco systems proprietary protocol, and IEEE 802.1q frame format for routing on the Fast Ethernet interfaces. In Inter-VLAN the physical Fast Ethernet interface of router is divided into sub-Interfaces for each VLAN. You can set IP address for each sub-Interface in order to route between VLANs. HOW TO CREATE VLAN ON CISCO SWITCHS? Let’s configure it on the below Inter-VLAN routing Lab. Download the Packet Tracer Inter VLAN routing Lab for CCNA or create your own Lab. First of all create two VLAN in the switch and named VLAN A and VLAN B with the following command. Switch> ENABLE   Switch# CONFIGURE TERMINAL   Enter configuration commands, one per line. End with CNTL/Z. Switch(config)# VLAN 2 Switch(config-vlan)# NAME VLAN-A Switch(config-vlan)# VLAN 3 Switch(config-vlan)# NAME VLAN-B Switch(config-vlan)# EXIT O...