blob: b83fe9e0db9020ae4a35885bccd49b32c061dcc0 (
plain)
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
|
# omcproxy - Embedded IGMPv3 and MLDv2 proxy
omcproxy is an IGMPv3 and MLDv2 multicast proxy for use in embedded Linux
devices like routers. It is small in size and can be compiled to <40 KB.
It is partly based on code of https://github.com/Oryon/pimbd
## Specifications and Features
1. Source-Specific Multicast Querier
- MLDv2 querier (based on RFC 3810)
- IGMPv3 querier (based on RFC 3376)
2. Multicast Proxying (based on RFC 4605)
- Kernel-space multicast routing
- Multiple instances support
- Address-scope specific proxying
## Compiling
omcproxy uses libubox as submodule, be sure to clone this git repository
with --recursive or run: "git submodule init; git submodule update"
after cloning. If you are already using libubox as a shared library
just pass -DWITH_LIBUBOX=1 to cmake.
omcproxy uses cmake:
- To prepare a Makefile use: "cmake ."
- To build / install use: "make" / "make install" afterwards.
- To build DEB or RPM packages use: "make package" afterwards.
|