The microkernel used by Cisco IOS XR is QNX Neutrino real-time operating system. A POSIX-compliant kernel provides a high degree of modularity. Each process is running in its own address space and is protected from memory corruption. If multiple OSPF processes are configured on the router each one will be assigned its own process instance completely separate from other OSPF processes.
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
55 views
Cisco IOS XR Kernel
The microkernel used by Cisco IOS XR is QNX Neutrino real-time operating system. A POSIX-compliant kernel provides a high degree of modularity. Each process is running in its own address space and is protected from memory corruption. If multiple OSPF processes are configured on the router each one will be assigned its own process instance completely separate from other OSPF processes.
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
Cisco IOS XR Kernel
Cisco IOS XR is a highly distributed microkernel-based network operating system. The
microkernel used by Cisco IOS XR is QNX Neutrino real-time operating system (RTOS), which is from QNX Systems. The microkernel is lightweight and provides only a few fundamental services. It is responsible for interrupt handling, scheduling, task switching, memory management, synchronization, and interprocess communication. The microkernel does not include other system services such as device drivers, file system, and network stacks; those services are implemented as independent processes outside the kernel, and they can be restarted like any other application. The microkernel is a POSIX-compliant kernel. POSIX defines OS specifications and test suites for APIs and OS services that a POSIX-compliant OS has to implement. Applications and services developed for a POSIX-compliant kernel can easily be ported to another POSIX-compliant kernel. If the need arises in the future, Cisco IOS XR can easily be ported to another POSIX-compliant OS. The essential aspect of a microkernel-based OS is modularity. The microkernel provides a very high degree of modularity. The OS is implemented as a team of cooperative processes managed by the microkernel and glued by its message-passing service. Each process is running in its own address space and is protected from memory corruption of other processes. An important aspect of microkernel architecture is its fast context switching capability, which provides the impetus to a high degree of modularity. Because the CPU cost associated with context switching is minimal, it provides greater incentive to implement each application and service as its own process and in its own memory address space. For example, Cisco IOS XR implements BGP, OSPF, OSPFv3, RIBv4, RIBv6, and so on as separate processes. Moreover, if multiple OSPF processes are configured on the router each one will be assigned its own process instance completely separate from other OSPF processes. This greater modularity is made possible due to the fast contextswitching capability of the microkernel and efficient interprocess communication provided by QNX and enhanced by Cisco. Interprocess communication is discussed in greater detail in the section Interprocess Communication, later in this chapter.