core-extra/docs/architecture.md

2.8 KiB

CORE Architecture

  • Table of Contents {:toc}

Main Components

  • CORE Daemon
    • Manages emulation sessions
    • Builds the emulated networks using Linux namespaces for nodes and some form of bridging and packet manipulation for virtual networks
    • Nodes and networks come together via interfaces installed on nodes
    • Controlled via the CORE GUI
    • Written in python and can be scripted, given direct control of scenarios
  • CORE GUI
    • GUI and daemon communicate using a custom, asynchronous, sockets-based API, known as the CORE API
    • Drag and drop creation for nodes and network interfaces
    • Can launch terminals for emulated nodes in running scenarios
    • Can save/open scenario files to recreate previous sessions
    • TCL/TK program

Sessions

CORE can create and run multiple sessions at once, below is a high level overview of the states a session will go between.

How Does it Work?

The CORE framework runs on Linux and uses Linux namespacing for creating node containers. These nodes are linked together using Linux bridging and virtual interfaces. CORE sessions are a set of nodes and links operating together for a specific purpose.

Linux

Linux network namespaces (also known as netns) is the primary virtualization technique used by CORE. Most recent Linux distributions have namespaces-enabled kernels out of the box. Each namespace has its own process environment and private network stack. Network namespaces share the same filesystem in CORE.

CORE combines these namespaces with Linux Ethernet bridging to form networks. Link characteristics are applied using Linux Netem queuing disciplines. Ebtables is Ethernet frame filtering on Linux bridges. Wireless networks are emulated by controlling which interfaces can send and receive with ebtables rules.

Prior Work

The Tcl/Tk CORE GUI was originally derived from the open source IMUNES project from the University of Zagreb as a custom project within Boeing Research and Technology's Network Technology research group in 2004. Since then they have developed the CORE framework to use Linux virtualization, have developed a Python framework, and made numerous user and kernel-space developments, such as support for wireless networks, IPsec, distribute emulation, simulation integration, and more. The IMUNES project also consists of userspace and kernel components.

Open Source Project and Resources

CORE has been released by Boeing to the open source community under the BSD license. If you find CORE useful for your work, please contribute back to the project. Contributions can be as simple as reporting a bug, dropping a line of encouragement or technical suggestions to the mailing lists, or can also include submitting patches or maintaining aspects of the tool.