commit | 086de99f85351c56c20d3f9f8bc7470a707b6fc5 | [log] [tgz] |
---|---|---|
author | Jan Kundrát <jan.kundrat@cesnet.cz> | Sat Aug 31 08:49:55 2024 +0200 |
committer | Jan Kundrát <jan.kundrat@cesnet.cz> | Sat Aug 31 08:50:33 2024 +0200 |
tree | a53e729ee2642a7a4124dabcf9dc40b120894e0b | |
parent | b8d3961fc5f496cbec427af1e0d6d3b3445587cf [diff] |
build: simplify installation of YANG submodules As explained in eb317722 (yang: Install ietf-ipv6-router-advertisements), this file is a YANG submodule, so we cannot call `yanglint -f tree` on it directly. Let's at least add it to a variable so that the installation is "less strange". Change-Id: If846ebd598d74aa28434ab30a49f8ef00ece548e
Together with sysrepo, this software provides "general system management" of embedded devices. The target platform is anything that runs Linux with systemd. This runs in production on CzechLight SDN DWDM devices.
This component tracks the overal health state of the system, including various sensors, or the state of systemd
units. As an operator-friendly LED at the front panel of the appliance shows the aggregated health state.
Firmware can be updated via RAUC, and various aspects of the system's configuration can be adjusted. This includes a firewall, basic network settings, and authentication management.
For a full list, consult the yang/
directory in this repository.
ietf-access-control-list
, RFC 8519 (with deviations)ietf-hardware
, RFC 8348ietf-system
, RFC 7317 (partial support)ietf-interfaces
, RFC 8343 (generating config for systemd-networkd
, with extensions)ietf-routing
, RFC 8349 (see above)czechlight-system
For building, one needs:
1.78
)pkg-config
libnl-route
for talking to the Linux kernellibsystemd
and systemd
at runtimelibyang-cpp
- C++ bindings for libyangsysrepo-cpp
- C++ bindings for sysrepospdlog
- a logging librarysdbus-c++
- C++ library for D-Busfmt
- C++ string formatting librarynlohmann_json
- C++ JSON librarydocopt
for CLI option parsingnft
- the netfilter tooliproute2
- the ip
tool for testingThe build process uses CMake. A quick-and-dirty build with no fancy options can be as simple as mkdir build && cd build && cmake .. && make && make install
.