1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
#
# Copyright (C) 2010-2025 Red Hat, Inc. All rights reserved.
#
# Author: Fabio M. Di Nitto <fabbione@kronosnet.org>
#
# This software licensed under GPL-2.0+
#
Upstream resources
------------------
https://github.com/kronosnet/kronosnet/
https://ci.kronosnet.org/
https://projects.clusterlabs.org/project/board/86/ (TODO list and activities tracking)
https://drive.google.com/drive/folders/0B_zxAPgZTkM_TklfYzN6a2FYUFE?resourcekey=0-Cfr5D94rZ8LVbeMPGjxbdg&usp=sharing (google shared drive)
https://lists.kronosnet.org/mailman3/postorius/lists/users.lists.kronosnet.org/
https://lists.kronosnet.org/mailman3/postorius/lists/devel.lists.kronosnet.org/
https://lists.kronosnet.org/mailman3/postorius/lists/commits.lists.kronosnet.org/
https://kronosnet.org/ (web 0.1 style)
IRC: #kronosnet on Libera.Chat
Architecture
------------
Please refer to the google shared drive Presentations directory for
diagrams and fancy schemas
Dependancies
------------
kronosnet has few obligatory dependancies, though it is strongly recommended
that you build it with at least one crypto library enabled.
It does, however, require libqb for both the doxygen2man tool (for creating
the API man pages) and headers for list manipulation.
You can get these from installing libqb from source or libqb-devel package, and
your distro might provide doxgen2man as its own package.
Running on FreeBSD
-----------------------
knet requires big socket buffers and you need to set:
kern.ipc.maxsockbuf=18388608
in /etc/sysctl.conf or knet will fail to run.
For version 12 (or lower), knet requires also:
net.inet.sctp.blackhole=1
in /etc/sysctl.conf or knet will fail to work with SCTP.
This sysctl is obsoleted in version 13.
libnozzle requires if_tap.ko loaded in the kernel.
Please avoid to use ifconfig_DEFAULT in /etc/rc.conf to use
DHCP for all interfaces or the dhclient will interfere with
libnozzle interface management, causing errors on some
operations such as "ifconfig tap down".
Building on Solaris / Illumos
-----------------------------
tested on SunOS openindiana-x86-64 5.11 illumos-5b6ecd7fe9:
# pkg install autoconf automake libtool pkg-config \
gcc-14 gnu-binutils gnu-coreutils gnu-make \
check system/mozilla-nss doxygen \
header-tun tun
optional:
# pkg install developer/clang-20
GNU tools must be preferred:
# export PATH=/usr/gnu/bin:$PATH
mozilla-nss is currently broken in oi-userland and does not ship pkg-config files
# ./autogen.sh && ./configure --disable-crypto-nss
# make all -j && make check
Running on Solaris / Illumos
----------------------------
Tune socket buffers for the protocol you intend to use:
ipadm set-prop -p max_buf=8388608 sctp
ipadm set-prop -p max_buf=8388608 udp
|