Skip to main content

Cisco’s IOS

Cisco’s IOS

The Cisco inter-network operating system (IOS) is the kernel of Cisco routers as well as all current catalyst switches. A kernel is the elemental, indispensable part of an operating system that allocates resources and manages tasks like low-level hardware interfaces and security.
The Cisco IOS is a proprietary kernel that provides routing, switching, inter networking, and telecommunication features.



The Cisco router IOS is software is responsible for:


·         Carrying network protocol and functions
·         Connecting high-speed traffic between devices
·         Adding security to control access and stop unauthorized network use
·         Providing scalability for ease of network growth and redundancy
·         Supplying network reliability for connecting to network resources.

You can access the Cisco IOS through the console port of a router or switch, from a modem into the auxiliary (aux) port on a router, or even through Telnet and secure shell (SHH). Access to the IOS command line is called an EXEC session.
Bring up a switch

First bring up Cisco device, it will run a power-on-self-test (POST). Upon passing that, the machine will look for and then load the Cisco IOS from flash memory if an IOS file is present, then expand it to RAM. Flash memory is electronically erasable programmable read-only memory an EEPROM. The next step is for the IOS to locate and load a valid configuration known as the startup-config that will be stored in nonvolatile RAM (NVRAM).  
If a valid startup-config isn’t found in NVRAM, switch will enter setup mode, giving you a step-by-step dialog to help configure some basic parameter on it.


--- System Configuration Dialog ---

Would you like to enter the initial configuration dialog? [yes/no]: yes

At any point you may enter a question mark '?' for help.
Use ctrl-c to abort configuration dialog at any prompt.
Default settings are in square brackets '[]'.


Basic management setup configures only enough connectivity
for management of the system, extended setup will ask you
to configure each interface on the system

Would you like to enter basic management setup? [yes/no]: yes
Configuring global parameters:

You can exit setup mode at any time by pressing Ctrl+C.



Here are three different variants of the operating system (O.S): 

IOS XE, IOS XR and Nexus OS. IOS XE runs on enterprise-level Cisco ISRs, Aggregation Services Routers and Cisco Catalyst switches. 

IOS XR runs on Cisco's service provider products, like its Carrier Routing System routers. Nexus OS runs on Cisco's Nexus family of data center switches.


Comments

Popular posts from this blog

What is Classification and marking? What is IP Precedence and DSCP Values? What is AF and EF?

  Classification and Marking Classification and marking are the processes of identifying the priority of each packet. This is the first step of QOS control and should be done near the source hosts. Classification is the process of identifying and categorising traffic into classes, typically based upon incoming interface IP precedence, DSCP Source or Destination address. Application classification is the most fundamental QOS building block. Without classification, all packets are treated the same.   The table lists the criteria of classification                                  Marking  Marking is the QOS feature component that colours a packet so it can be identified and distinguished from other packets in QOS treatment. Commonly used markers: link-layer: COS (ISL, 802.1q), MPLS EXP bits,...

OSPF default routing

  OSPF Default Route Configuring OSPF Default route is not a big problem. We have couple of options when we want to OSPF default route. Here is an example R1(config)#router ospf 1  R1(config-router)#default-information originate ?   always       Always advertise default route   metric       OSPF default metric   metric-type  OSPF metric type for default routes   route-map    Route-map reference   <cr> We can change numbers of things for example metric or metric type but most of the people forget about the most important thing is the always keyword.  If we add the always command this feature advertises the default route even if we do not have in our routing table. It will look like that route is installed in routing table.   When we use the default information originate we can advertise a default route in OSPF. But OSPF won’t...

BGP Local preference configuration

BGP Local preference (Local_Pref) Path attribute gives the router inside a single autonomous system a value that they can set per-route and advertise to all iBGP routers inside the autonomous system, so that all routers in the autonomous system agree about which routers is the best exit point for packet destined for that prefix. Local preference (Local_Pref) is the second BGP attribute. We can use the local preference to choose the outbound external BGP path. Local preference is sent to all internal BGP (iBGP) routers in our autonomous system. Local preference (Local_Pref) is not exchanged between external BGP routers. It’s a well-known and discretionary BGP attribute. Default value is 100. The path with the highest local preference is desirable  Topology:- TASK: To reach 50.1.1.1, 15.0.0.1 network router 2 and router 3 using 3.1.1.2 path ( AS 65144) because it has less numbers of au...