├── .travis.yml ├── Dockerfile ├── README.md ├── cli ├── Makefile.in ├── README ├── VERSION ├── certs │ ├── ca.pem │ ├── client.crt │ └── client.key ├── commands.c ├── commands.h ├── config.guess ├── config.sub ├── configuration.c ├── configuration.h ├── configure ├── configure.in ├── doc │ ├── netopeer-cli.1 │ └── netopeer-cli.1.html ├── install-sh ├── m4 │ └── ax_pthread.m4 ├── main.c ├── netopeer-cli.spec.in ├── readinput.c ├── readinput.h ├── test.c ├── test.h └── tests │ ├── README │ ├── all YANG keywords │ ├── README │ ├── aug-sub-mod1.yang │ ├── basic_tests.xml │ ├── main-mod.yang │ ├── main-mod2.yang │ ├── sub-mod1.yang │ └── sub-mod2.yang │ ├── anyxml │ ├── README │ ├── anyxml-mod.yang │ ├── feat1_feat2_features.xml │ ├── feat1_features.xml │ └── no_features.xml │ ├── choice │ ├── README │ ├── choice-mod.yang │ ├── feat1_features.xml │ └── no_features.xml │ ├── container │ ├── README │ ├── container-mod.yang │ ├── feat1_features.xml │ └── no_features.xml │ ├── ietf-netconf.yang │ └── netopeer-test.yang ├── cov-configure.sh ├── cov-gen-tgz.sh ├── cov-make.sh ├── server ├── Makefile.in ├── README ├── VERSION ├── certs │ ├── ca.key │ ├── ca.pem │ ├── client.crt │ ├── client.key │ ├── server.crt │ └── server.key ├── config.guess ├── config.sub ├── config │ ├── NETCONF-server.xml.in │ ├── Netopeer.xml.in │ ├── datastore.xml │ ├── ietf-inet-types.yang │ ├── ietf-netconf-acm.yin │ ├── ietf-netconf-server.yang │ ├── ietf-x509-cert-to-name.yin │ ├── ietf-yang-types.yang │ └── netopeer-cfgnetopeer.yang ├── configurator │ ├── README │ ├── netopeer-configurator │ ├── netopeer-configurator.1 │ ├── netopeer-configurator.1.html │ ├── netopeer │ │ ├── __init__.py │ │ ├── config.py.in │ │ ├── messages.py │ │ ├── nc_nacm.py │ │ ├── nc_netopeer.py │ │ ├── nc_sshauth.py │ │ ├── nc_tlsauth.py │ │ └── ncmodule.py │ └── setup.py ├── configure ├── configure.in ├── install-sh ├── m4 │ ├── ax_pthread.m4 │ └── ax_python_module.m4 ├── manager │ ├── netopeer-manager.1 │ ├── netopeer-manager.1.html │ └── netopeer-manager.in ├── netopeer-server.8 ├── netopeer-server.8.html ├── netopeer-server.spec.in ├── netopeer.rc.in └── src │ ├── cfgnetopeer_transapi.c │ ├── cfgnetopeer_transapi.h │ ├── config.h.in │ ├── netconf_server_transapi.c │ ├── netconf_server_transapi.h │ ├── server.c │ ├── server.h │ ├── ssh │ ├── cfgnetopeer_transapi_ssh.c │ ├── cfgnetopeer_transapi_ssh.h │ ├── netconf_server_transapi_ssh.c │ ├── netconf_server_transapi_ssh.h │ ├── new_libssh_API_without_kbint_auth │ │ ├── server_ssh.c │ │ └── server_ssh.h │ ├── server_ssh.c │ └── server_ssh.h │ └── tls │ ├── cfgnetopeer_transapi_tls.c │ ├── cfgnetopeer_transapi_tls.h │ ├── netconf_server_transapi_tls.c │ ├── netconf_server_transapi_tls.h │ ├── server_tls.c │ └── server_tls.h └── transAPI ├── cfginterfaces ├── Makefile.in ├── README ├── cfginterfaces-init.c ├── cfginterfaces.c.in ├── cfginterfaces.h ├── cfginterfaces_paths.txt ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.in ├── iface_if.c ├── iface_nm(unused).c ├── install-sh ├── ltmain.sh └── model │ ├── iana-if-type.yin │ ├── iana-if-type@2014-05-08.yang │ ├── ietf-inet-types.yin │ ├── ietf-interfaces-config.rng.in │ ├── ietf-interfaces-gdefs-config.rng │ ├── ietf-interfaces-schematron.xsl │ ├── ietf-interfaces.yin │ ├── ietf-interfaces@2014-05-08.yang │ ├── ietf-ip.yin │ ├── ietf-ip@2014-06-16.yang │ └── ietf-yang-types.yin ├── cfgsystem ├── Makefile.in ├── README ├── base │ ├── common.c │ ├── common.h.in │ ├── date_time.c │ ├── date_time.h │ ├── dns_resolver.c │ ├── dns_resolver.h │ ├── encrypt.c │ ├── encrypt.h │ ├── local_users.c │ ├── local_users.h │ ├── platform.c │ ├── platform.h │ ├── salt.c │ ├── shutdown.c │ └── shutdown.h ├── cfgsystem-init.c ├── cfgsystem.c ├── cfgsystem_paths.txt ├── config.guess ├── config.sub ├── configure ├── configure.in ├── install-sh ├── ltmain.sh └── model │ ├── iana-crypt-hash.yin │ ├── ietf-netconf-acm.yin │ ├── ietf-system.yang │ ├── ietf-system.yin │ └── ietf-yang-types.yin └── turing ├── Makefile.in ├── README ├── config.guess ├── config.sub ├── configure ├── configure.in ├── examples ├── 0n1n-config.xml └── invert-config.xml ├── install-sh ├── ltmain.sh ├── paths ├── turing-machine-config.rng.in ├── turing-machine-gdefs-config.rng ├── turing-machine-schematron.xsl ├── turing-machine.c ├── turing-machine.yang └── turing-machine.yin /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/README.md -------------------------------------------------------------------------------- /cli/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/Makefile.in -------------------------------------------------------------------------------- /cli/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/README -------------------------------------------------------------------------------- /cli/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.0 2 | -------------------------------------------------------------------------------- /cli/certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/certs/ca.pem -------------------------------------------------------------------------------- /cli/certs/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/certs/client.crt -------------------------------------------------------------------------------- /cli/certs/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/certs/client.key -------------------------------------------------------------------------------- /cli/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/commands.c -------------------------------------------------------------------------------- /cli/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/commands.h -------------------------------------------------------------------------------- /cli/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/config.guess -------------------------------------------------------------------------------- /cli/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/config.sub -------------------------------------------------------------------------------- /cli/configuration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/configuration.c -------------------------------------------------------------------------------- /cli/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/configuration.h -------------------------------------------------------------------------------- /cli/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/configure -------------------------------------------------------------------------------- /cli/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/configure.in -------------------------------------------------------------------------------- /cli/doc/netopeer-cli.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/doc/netopeer-cli.1 -------------------------------------------------------------------------------- /cli/doc/netopeer-cli.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/doc/netopeer-cli.1.html -------------------------------------------------------------------------------- /cli/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/install-sh -------------------------------------------------------------------------------- /cli/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /cli/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/main.c -------------------------------------------------------------------------------- /cli/netopeer-cli.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/netopeer-cli.spec.in -------------------------------------------------------------------------------- /cli/readinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/readinput.c -------------------------------------------------------------------------------- /cli/readinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/readinput.h -------------------------------------------------------------------------------- /cli/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/test.c -------------------------------------------------------------------------------- /cli/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/test.h -------------------------------------------------------------------------------- /cli/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/README -------------------------------------------------------------------------------- /cli/tests/all YANG keywords/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/all YANG keywords/README -------------------------------------------------------------------------------- /cli/tests/all YANG keywords/aug-sub-mod1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/all YANG keywords/aug-sub-mod1.yang -------------------------------------------------------------------------------- /cli/tests/all YANG keywords/basic_tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/all YANG keywords/basic_tests.xml -------------------------------------------------------------------------------- /cli/tests/all YANG keywords/main-mod.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/all YANG keywords/main-mod.yang -------------------------------------------------------------------------------- /cli/tests/all YANG keywords/main-mod2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/all YANG keywords/main-mod2.yang -------------------------------------------------------------------------------- /cli/tests/all YANG keywords/sub-mod1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/all YANG keywords/sub-mod1.yang -------------------------------------------------------------------------------- /cli/tests/all YANG keywords/sub-mod2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/all YANG keywords/sub-mod2.yang -------------------------------------------------------------------------------- /cli/tests/anyxml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/anyxml/README -------------------------------------------------------------------------------- /cli/tests/anyxml/anyxml-mod.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/anyxml/anyxml-mod.yang -------------------------------------------------------------------------------- /cli/tests/anyxml/feat1_feat2_features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/anyxml/feat1_feat2_features.xml -------------------------------------------------------------------------------- /cli/tests/anyxml/feat1_features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/anyxml/feat1_features.xml -------------------------------------------------------------------------------- /cli/tests/anyxml/no_features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/anyxml/no_features.xml -------------------------------------------------------------------------------- /cli/tests/choice/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/choice/README -------------------------------------------------------------------------------- /cli/tests/choice/choice-mod.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/choice/choice-mod.yang -------------------------------------------------------------------------------- /cli/tests/choice/feat1_features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/choice/feat1_features.xml -------------------------------------------------------------------------------- /cli/tests/choice/no_features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/choice/no_features.xml -------------------------------------------------------------------------------- /cli/tests/container/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/container/README -------------------------------------------------------------------------------- /cli/tests/container/container-mod.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/container/container-mod.yang -------------------------------------------------------------------------------- /cli/tests/container/feat1_features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/container/feat1_features.xml -------------------------------------------------------------------------------- /cli/tests/container/no_features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/container/no_features.xml -------------------------------------------------------------------------------- /cli/tests/ietf-netconf.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/ietf-netconf.yang -------------------------------------------------------------------------------- /cli/tests/netopeer-test.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cli/tests/netopeer-test.yang -------------------------------------------------------------------------------- /cov-configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cov-configure.sh -------------------------------------------------------------------------------- /cov-gen-tgz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cov-gen-tgz.sh -------------------------------------------------------------------------------- /cov-make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/cov-make.sh -------------------------------------------------------------------------------- /server/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/Makefile.in -------------------------------------------------------------------------------- /server/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/README -------------------------------------------------------------------------------- /server/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.0 2 | -------------------------------------------------------------------------------- /server/certs/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/certs/ca.key -------------------------------------------------------------------------------- /server/certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/certs/ca.pem -------------------------------------------------------------------------------- /server/certs/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/certs/client.crt -------------------------------------------------------------------------------- /server/certs/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/certs/client.key -------------------------------------------------------------------------------- /server/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/certs/server.crt -------------------------------------------------------------------------------- /server/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/certs/server.key -------------------------------------------------------------------------------- /server/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/config.guess -------------------------------------------------------------------------------- /server/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/config.sub -------------------------------------------------------------------------------- /server/config/NETCONF-server.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/config/NETCONF-server.xml.in -------------------------------------------------------------------------------- /server/config/Netopeer.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/config/Netopeer.xml.in -------------------------------------------------------------------------------- /server/config/datastore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/config/datastore.xml -------------------------------------------------------------------------------- /server/config/ietf-inet-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/config/ietf-inet-types.yang -------------------------------------------------------------------------------- /server/config/ietf-netconf-acm.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/config/ietf-netconf-acm.yin -------------------------------------------------------------------------------- /server/config/ietf-netconf-server.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/config/ietf-netconf-server.yang -------------------------------------------------------------------------------- /server/config/ietf-x509-cert-to-name.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/config/ietf-x509-cert-to-name.yin -------------------------------------------------------------------------------- /server/config/ietf-yang-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/config/ietf-yang-types.yang -------------------------------------------------------------------------------- /server/config/netopeer-cfgnetopeer.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/config/netopeer-cfgnetopeer.yang -------------------------------------------------------------------------------- /server/configurator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/README -------------------------------------------------------------------------------- /server/configurator/netopeer-configurator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/netopeer-configurator -------------------------------------------------------------------------------- /server/configurator/netopeer-configurator.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/netopeer-configurator.1 -------------------------------------------------------------------------------- /server/configurator/netopeer-configurator.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/netopeer-configurator.1.html -------------------------------------------------------------------------------- /server/configurator/netopeer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/netopeer/__init__.py -------------------------------------------------------------------------------- /server/configurator/netopeer/config.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/netopeer/config.py.in -------------------------------------------------------------------------------- /server/configurator/netopeer/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/netopeer/messages.py -------------------------------------------------------------------------------- /server/configurator/netopeer/nc_nacm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/netopeer/nc_nacm.py -------------------------------------------------------------------------------- /server/configurator/netopeer/nc_netopeer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/netopeer/nc_netopeer.py -------------------------------------------------------------------------------- /server/configurator/netopeer/nc_sshauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/netopeer/nc_sshauth.py -------------------------------------------------------------------------------- /server/configurator/netopeer/nc_tlsauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/netopeer/nc_tlsauth.py -------------------------------------------------------------------------------- /server/configurator/netopeer/ncmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/netopeer/ncmodule.py -------------------------------------------------------------------------------- /server/configurator/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configurator/setup.py -------------------------------------------------------------------------------- /server/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configure -------------------------------------------------------------------------------- /server/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/configure.in -------------------------------------------------------------------------------- /server/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/install-sh -------------------------------------------------------------------------------- /server/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /server/m4/ax_python_module.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/m4/ax_python_module.m4 -------------------------------------------------------------------------------- /server/manager/netopeer-manager.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/manager/netopeer-manager.1 -------------------------------------------------------------------------------- /server/manager/netopeer-manager.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/manager/netopeer-manager.1.html -------------------------------------------------------------------------------- /server/manager/netopeer-manager.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/manager/netopeer-manager.in -------------------------------------------------------------------------------- /server/netopeer-server.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/netopeer-server.8 -------------------------------------------------------------------------------- /server/netopeer-server.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/netopeer-server.8.html -------------------------------------------------------------------------------- /server/netopeer-server.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/netopeer-server.spec.in -------------------------------------------------------------------------------- /server/netopeer.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/netopeer.rc.in -------------------------------------------------------------------------------- /server/src/cfgnetopeer_transapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/cfgnetopeer_transapi.c -------------------------------------------------------------------------------- /server/src/cfgnetopeer_transapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/cfgnetopeer_transapi.h -------------------------------------------------------------------------------- /server/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/config.h.in -------------------------------------------------------------------------------- /server/src/netconf_server_transapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/netconf_server_transapi.c -------------------------------------------------------------------------------- /server/src/netconf_server_transapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/netconf_server_transapi.h -------------------------------------------------------------------------------- /server/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/server.c -------------------------------------------------------------------------------- /server/src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/server.h -------------------------------------------------------------------------------- /server/src/ssh/cfgnetopeer_transapi_ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/ssh/cfgnetopeer_transapi_ssh.c -------------------------------------------------------------------------------- /server/src/ssh/cfgnetopeer_transapi_ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/ssh/cfgnetopeer_transapi_ssh.h -------------------------------------------------------------------------------- /server/src/ssh/netconf_server_transapi_ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/ssh/netconf_server_transapi_ssh.c -------------------------------------------------------------------------------- /server/src/ssh/netconf_server_transapi_ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/ssh/netconf_server_transapi_ssh.h -------------------------------------------------------------------------------- /server/src/ssh/new_libssh_API_without_kbint_auth/server_ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/ssh/new_libssh_API_without_kbint_auth/server_ssh.c -------------------------------------------------------------------------------- /server/src/ssh/new_libssh_API_without_kbint_auth/server_ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/ssh/new_libssh_API_without_kbint_auth/server_ssh.h -------------------------------------------------------------------------------- /server/src/ssh/server_ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/ssh/server_ssh.c -------------------------------------------------------------------------------- /server/src/ssh/server_ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/ssh/server_ssh.h -------------------------------------------------------------------------------- /server/src/tls/cfgnetopeer_transapi_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/tls/cfgnetopeer_transapi_tls.c -------------------------------------------------------------------------------- /server/src/tls/cfgnetopeer_transapi_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/tls/cfgnetopeer_transapi_tls.h -------------------------------------------------------------------------------- /server/src/tls/netconf_server_transapi_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/tls/netconf_server_transapi_tls.c -------------------------------------------------------------------------------- /server/src/tls/netconf_server_transapi_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/tls/netconf_server_transapi_tls.h -------------------------------------------------------------------------------- /server/src/tls/server_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/tls/server_tls.c -------------------------------------------------------------------------------- /server/src/tls/server_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/server/src/tls/server_tls.h -------------------------------------------------------------------------------- /transAPI/cfginterfaces/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/Makefile.in -------------------------------------------------------------------------------- /transAPI/cfginterfaces/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/README -------------------------------------------------------------------------------- /transAPI/cfginterfaces/cfginterfaces-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/cfginterfaces-init.c -------------------------------------------------------------------------------- /transAPI/cfginterfaces/cfginterfaces.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/cfginterfaces.c.in -------------------------------------------------------------------------------- /transAPI/cfginterfaces/cfginterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/cfginterfaces.h -------------------------------------------------------------------------------- /transAPI/cfginterfaces/cfginterfaces_paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/cfginterfaces_paths.txt -------------------------------------------------------------------------------- /transAPI/cfginterfaces/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/config.guess -------------------------------------------------------------------------------- /transAPI/cfginterfaces/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/config.h.in -------------------------------------------------------------------------------- /transAPI/cfginterfaces/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/config.sub -------------------------------------------------------------------------------- /transAPI/cfginterfaces/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/configure -------------------------------------------------------------------------------- /transAPI/cfginterfaces/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/configure.in -------------------------------------------------------------------------------- /transAPI/cfginterfaces/iface_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/iface_if.c -------------------------------------------------------------------------------- /transAPI/cfginterfaces/iface_nm(unused).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/iface_nm(unused).c -------------------------------------------------------------------------------- /transAPI/cfginterfaces/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/install-sh -------------------------------------------------------------------------------- /transAPI/cfginterfaces/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/ltmain.sh -------------------------------------------------------------------------------- /transAPI/cfginterfaces/model/iana-if-type.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/model/iana-if-type.yin -------------------------------------------------------------------------------- /transAPI/cfginterfaces/model/iana-if-type@2014-05-08.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/model/iana-if-type@2014-05-08.yang -------------------------------------------------------------------------------- /transAPI/cfginterfaces/model/ietf-inet-types.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/model/ietf-inet-types.yin -------------------------------------------------------------------------------- /transAPI/cfginterfaces/model/ietf-interfaces-config.rng.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/model/ietf-interfaces-config.rng.in -------------------------------------------------------------------------------- /transAPI/cfginterfaces/model/ietf-interfaces-gdefs-config.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/model/ietf-interfaces-gdefs-config.rng -------------------------------------------------------------------------------- /transAPI/cfginterfaces/model/ietf-interfaces-schematron.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/model/ietf-interfaces-schematron.xsl -------------------------------------------------------------------------------- /transAPI/cfginterfaces/model/ietf-interfaces.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/model/ietf-interfaces.yin -------------------------------------------------------------------------------- /transAPI/cfginterfaces/model/ietf-interfaces@2014-05-08.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/model/ietf-interfaces@2014-05-08.yang -------------------------------------------------------------------------------- /transAPI/cfginterfaces/model/ietf-ip.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/model/ietf-ip.yin -------------------------------------------------------------------------------- /transAPI/cfginterfaces/model/ietf-ip@2014-06-16.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/model/ietf-ip@2014-06-16.yang -------------------------------------------------------------------------------- /transAPI/cfginterfaces/model/ietf-yang-types.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfginterfaces/model/ietf-yang-types.yin -------------------------------------------------------------------------------- /transAPI/cfgsystem/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/Makefile.in -------------------------------------------------------------------------------- /transAPI/cfgsystem/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/README -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/common.c -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/common.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/common.h.in -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/date_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/date_time.c -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/date_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/date_time.h -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/dns_resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/dns_resolver.c -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/dns_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/dns_resolver.h -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/encrypt.c -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/encrypt.h -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/local_users.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/local_users.c -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/local_users.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/local_users.h -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/platform.c -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/platform.h -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/salt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/salt.c -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/shutdown.c -------------------------------------------------------------------------------- /transAPI/cfgsystem/base/shutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/base/shutdown.h -------------------------------------------------------------------------------- /transAPI/cfgsystem/cfgsystem-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/cfgsystem-init.c -------------------------------------------------------------------------------- /transAPI/cfgsystem/cfgsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/cfgsystem.c -------------------------------------------------------------------------------- /transAPI/cfgsystem/cfgsystem_paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/cfgsystem_paths.txt -------------------------------------------------------------------------------- /transAPI/cfgsystem/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/config.guess -------------------------------------------------------------------------------- /transAPI/cfgsystem/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/config.sub -------------------------------------------------------------------------------- /transAPI/cfgsystem/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/configure -------------------------------------------------------------------------------- /transAPI/cfgsystem/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/configure.in -------------------------------------------------------------------------------- /transAPI/cfgsystem/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/install-sh -------------------------------------------------------------------------------- /transAPI/cfgsystem/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/ltmain.sh -------------------------------------------------------------------------------- /transAPI/cfgsystem/model/iana-crypt-hash.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/model/iana-crypt-hash.yin -------------------------------------------------------------------------------- /transAPI/cfgsystem/model/ietf-netconf-acm.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/model/ietf-netconf-acm.yin -------------------------------------------------------------------------------- /transAPI/cfgsystem/model/ietf-system.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/model/ietf-system.yang -------------------------------------------------------------------------------- /transAPI/cfgsystem/model/ietf-system.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/model/ietf-system.yin -------------------------------------------------------------------------------- /transAPI/cfgsystem/model/ietf-yang-types.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/cfgsystem/model/ietf-yang-types.yin -------------------------------------------------------------------------------- /transAPI/turing/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/Makefile.in -------------------------------------------------------------------------------- /transAPI/turing/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/README -------------------------------------------------------------------------------- /transAPI/turing/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/config.guess -------------------------------------------------------------------------------- /transAPI/turing/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/config.sub -------------------------------------------------------------------------------- /transAPI/turing/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/configure -------------------------------------------------------------------------------- /transAPI/turing/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/configure.in -------------------------------------------------------------------------------- /transAPI/turing/examples/0n1n-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/examples/0n1n-config.xml -------------------------------------------------------------------------------- /transAPI/turing/examples/invert-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/examples/invert-config.xml -------------------------------------------------------------------------------- /transAPI/turing/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/install-sh -------------------------------------------------------------------------------- /transAPI/turing/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/ltmain.sh -------------------------------------------------------------------------------- /transAPI/turing/paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/paths -------------------------------------------------------------------------------- /transAPI/turing/turing-machine-config.rng.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/turing-machine-config.rng.in -------------------------------------------------------------------------------- /transAPI/turing/turing-machine-gdefs-config.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/turing-machine-gdefs-config.rng -------------------------------------------------------------------------------- /transAPI/turing/turing-machine-schematron.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/turing-machine-schematron.xsl -------------------------------------------------------------------------------- /transAPI/turing/turing-machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/turing-machine.c -------------------------------------------------------------------------------- /transAPI/turing/turing-machine.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/turing-machine.yang -------------------------------------------------------------------------------- /transAPI/turing/turing-machine.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer/HEAD/transAPI/turing/turing-machine.yin --------------------------------------------------------------------------------