├── .editorconfig ├── .github └── workflows │ ├── basic.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── Containerfile ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── addrmap.c ├── conffile.c ├── docs ├── clat │ ├── README.md │ ├── clat-masq.conf │ ├── clat-masq.sh │ ├── clat-proxynd.conf │ ├── clat-proxynd.sh │ ├── clat-route.conf │ ├── clat-route.sh │ └── clat1.png ├── container.md ├── index.md ├── mapt │ └── README.md ├── nat64 │ ├── README.md │ ├── nat64-dynpool.conf │ ├── nat64-dynpool.sh │ ├── nat64-static.conf │ └── nat64-static.sh ├── rfc.md └── siit │ ├── README.md │ ├── siit-br.conf │ ├── siit-br.sh │ ├── siit-er-node.conf │ ├── siit-er-node.sh │ ├── siit-er.conf │ └── siit-er.sh ├── dynamic.c ├── launch-clat.sh ├── launch-nat64.sh ├── launch.sh ├── list.h ├── log.c ├── nat64.c ├── scripts ├── tayga.confd ├── tayga.initd └── tayga@.service ├── tayga.8 ├── tayga.c ├── tayga.conf.5 ├── tayga.conf.example ├── tayga.h └── test ├── addressing.py ├── benchmark.py ├── index.md ├── mapping.py ├── test_env.py ├── translate.py ├── unit.c ├── unit.h └── unit_conffile.c /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/.github/workflows/basic.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/.gitignore -------------------------------------------------------------------------------- /Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/Containerfile -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/README.md -------------------------------------------------------------------------------- /addrmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/addrmap.c -------------------------------------------------------------------------------- /conffile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/conffile.c -------------------------------------------------------------------------------- /docs/clat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/clat/README.md -------------------------------------------------------------------------------- /docs/clat/clat-masq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/clat/clat-masq.conf -------------------------------------------------------------------------------- /docs/clat/clat-masq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/clat/clat-masq.sh -------------------------------------------------------------------------------- /docs/clat/clat-proxynd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/clat/clat-proxynd.conf -------------------------------------------------------------------------------- /docs/clat/clat-proxynd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/clat/clat-proxynd.sh -------------------------------------------------------------------------------- /docs/clat/clat-route.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/clat/clat-route.conf -------------------------------------------------------------------------------- /docs/clat/clat-route.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/clat/clat-route.sh -------------------------------------------------------------------------------- /docs/clat/clat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/clat/clat1.png -------------------------------------------------------------------------------- /docs/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/container.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/mapt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/mapt/README.md -------------------------------------------------------------------------------- /docs/nat64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/nat64/README.md -------------------------------------------------------------------------------- /docs/nat64/nat64-dynpool.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/nat64/nat64-dynpool.conf -------------------------------------------------------------------------------- /docs/nat64/nat64-dynpool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/nat64/nat64-dynpool.sh -------------------------------------------------------------------------------- /docs/nat64/nat64-static.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/nat64/nat64-static.conf -------------------------------------------------------------------------------- /docs/nat64/nat64-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/nat64/nat64-static.sh -------------------------------------------------------------------------------- /docs/rfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/rfc.md -------------------------------------------------------------------------------- /docs/siit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/siit/README.md -------------------------------------------------------------------------------- /docs/siit/siit-br.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/siit/siit-br.conf -------------------------------------------------------------------------------- /docs/siit/siit-br.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/siit/siit-br.sh -------------------------------------------------------------------------------- /docs/siit/siit-er-node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/siit/siit-er-node.conf -------------------------------------------------------------------------------- /docs/siit/siit-er-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/siit/siit-er-node.sh -------------------------------------------------------------------------------- /docs/siit/siit-er.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/siit/siit-er.conf -------------------------------------------------------------------------------- /docs/siit/siit-er.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/docs/siit/siit-er.sh -------------------------------------------------------------------------------- /dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/dynamic.c -------------------------------------------------------------------------------- /launch-clat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/launch-clat.sh -------------------------------------------------------------------------------- /launch-nat64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/launch-nat64.sh -------------------------------------------------------------------------------- /launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/launch.sh -------------------------------------------------------------------------------- /list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/list.h -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/log.c -------------------------------------------------------------------------------- /nat64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/nat64.c -------------------------------------------------------------------------------- /scripts/tayga.confd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/scripts/tayga.confd -------------------------------------------------------------------------------- /scripts/tayga.initd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/scripts/tayga.initd -------------------------------------------------------------------------------- /scripts/tayga@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/scripts/tayga@.service -------------------------------------------------------------------------------- /tayga.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/tayga.8 -------------------------------------------------------------------------------- /tayga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/tayga.c -------------------------------------------------------------------------------- /tayga.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/tayga.conf.5 -------------------------------------------------------------------------------- /tayga.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/tayga.conf.example -------------------------------------------------------------------------------- /tayga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/tayga.h -------------------------------------------------------------------------------- /test/addressing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/test/addressing.py -------------------------------------------------------------------------------- /test/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/test/benchmark.py -------------------------------------------------------------------------------- /test/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/test/index.md -------------------------------------------------------------------------------- /test/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/test/mapping.py -------------------------------------------------------------------------------- /test/test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/test/test_env.py -------------------------------------------------------------------------------- /test/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/test/translate.py -------------------------------------------------------------------------------- /test/unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/test/unit.c -------------------------------------------------------------------------------- /test/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/test/unit.h -------------------------------------------------------------------------------- /test/unit_conffile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apalrd/tayga/HEAD/test/unit_conffile.c --------------------------------------------------------------------------------