├── AUTHORS ├── COMPAT.md ├── COPYING ├── ChangeLog ├── CodingStyle.md ├── IMPLEMENTATION.md ├── INSTALL.Vagrant.md ├── INSTALL.md ├── MODEL.md ├── Makefile.am ├── NEWS ├── README.md ├── Vagrantfile ├── boot.sh ├── config ├── Makefile.am ├── org.opennetworking.ofc.conf ├── org.opennetworking.ofc.server.service.in └── startup.xml ├── configure.ac ├── m4 ├── ac_define_dir.m4 ├── ax_check_openssl.m4 ├── ax_libxml2_check.m4 └── ax_pthread.m4 ├── model ├── Makefile.am ├── ietf-netconf-server-config.rng ├── ietf-netconf-server-gdefs-config.rng ├── ietf-netconf-server-schematron.xsl ├── ietf-netconf-server.yang ├── ietf-netconf-server.yin ├── ietf-x509-cert-to-name.yang ├── ietf-x509-cert-to-name.yin ├── of-config-config.rng ├── of-config-gdefs-config.rng ├── of-config-notes ├── of-config-schematron.xsl ├── of-config.yang ├── of-config.yin └── relaxng-lib.rng ├── netconf-tests ├── README.md ├── change_controller.xml ├── change_ext_cert.xml ├── change_flowtable.xml ├── change_ipgretunnel.xml ├── change_owned_cert.xml ├── change_port_advertised.xml ├── change_port_reqnum.xml ├── change_queue.xml ├── change_queue_port.xml ├── change_switch.xml ├── change_tunnel.xml ├── config ├── create_bridge_port.xml ├── create_controller.xml ├── create_empty_switch.xml ├── create_empty_switch_inv.xml ├── create_ext_cert.sh ├── create_ext_cert.xml ├── create_flowtable.sh ├── create_flowtable.xml ├── create_flowtable_multiple.sh ├── create_ipgre_tunnel_port.xml ├── create_malform_certificates.xml ├── create_modify_remove_flowtable.sh ├── create_modify_remove_queue.sh ├── create_modify_remove_tunnel.sh ├── create_owned_cert.sh ├── create_owned_cert.xml ├── create_port_eth1.sh ├── create_port_eth1.xml ├── create_port_multiple.sh ├── create_queue.sh ├── create_queue.xml ├── create_queue_multiple.sh ├── create_switch.xml ├── create_tunnel.sh ├── create_tunnel_port.xml ├── create_vxlan_tunnel_port.xml ├── get-config.sh ├── group_test_controller.sh ├── group_test_empty_ds.sh ├── group_test_ext_cert.sh ├── group_test_flowtable.sh ├── group_test_owned_cert.sh ├── group_test_port.sh ├── group_test_switch.sh ├── group_tests.sh ├── openflow_set.sh ├── ovs.xml ├── port_admin_state_down.xml ├── port_admin_state_up.xml ├── port_openflow_set_down.xml ├── port_openflow_set_up.xml ├── remove_controller.xml ├── remove_ext_cert.xml ├── remove_flowtable.sh ├── remove_flowtable.xml ├── remove_flowtable_from_bridge.xml ├── remove_owned_cert.xml ├── remove_port_eth1.sh ├── remove_port_eth1.xml ├── remove_queue.sh ├── remove_queue.xml ├── remove_queue_from_bridge.xml ├── remove_switch.xml ├── remove_tunnel.xml ├── remove_tunnel_port.xml ├── reset.sh ├── run_edit_config.sh └── startup.xml └── server ├── Makefile.am ├── agent.c ├── agent_comm_dbus.c ├── agent_comm_socket.c ├── comm.h ├── comm_dbus.h ├── comm_socket.c ├── comm_socket.h ├── common.c ├── common.h ├── data.h ├── edit-config.c ├── netconf-server-transapi.c ├── ofconfig-datastore.c ├── ofconfig-transapi.c ├── ovs-data.c ├── server.c ├── server_comm_dbus.c ├── server_comm_socket.c ├── server_ops.c └── server_ops.h /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/AUTHORS -------------------------------------------------------------------------------- /COMPAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/COMPAT.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CodingStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/CodingStyle.md -------------------------------------------------------------------------------- /IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/IMPLEMENTATION.md -------------------------------------------------------------------------------- /INSTALL.Vagrant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/INSTALL.Vagrant.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/INSTALL.md -------------------------------------------------------------------------------- /MODEL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/MODEL.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/Vagrantfile -------------------------------------------------------------------------------- /boot.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | autoreconf -i 3 | -------------------------------------------------------------------------------- /config/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/config/Makefile.am -------------------------------------------------------------------------------- /config/org.opennetworking.ofc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/config/org.opennetworking.ofc.conf -------------------------------------------------------------------------------- /config/org.opennetworking.ofc.server.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/config/org.opennetworking.ofc.server.service.in -------------------------------------------------------------------------------- /config/startup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/config/startup.xml -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/configure.ac -------------------------------------------------------------------------------- /m4/ac_define_dir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/m4/ac_define_dir.m4 -------------------------------------------------------------------------------- /m4/ax_check_openssl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/m4/ax_check_openssl.m4 -------------------------------------------------------------------------------- /m4/ax_libxml2_check.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/m4/ax_libxml2_check.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /model/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/Makefile.am -------------------------------------------------------------------------------- /model/ietf-netconf-server-config.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/ietf-netconf-server-config.rng -------------------------------------------------------------------------------- /model/ietf-netconf-server-gdefs-config.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/ietf-netconf-server-gdefs-config.rng -------------------------------------------------------------------------------- /model/ietf-netconf-server-schematron.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/ietf-netconf-server-schematron.xsl -------------------------------------------------------------------------------- /model/ietf-netconf-server.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/ietf-netconf-server.yang -------------------------------------------------------------------------------- /model/ietf-netconf-server.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/ietf-netconf-server.yin -------------------------------------------------------------------------------- /model/ietf-x509-cert-to-name.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/ietf-x509-cert-to-name.yang -------------------------------------------------------------------------------- /model/ietf-x509-cert-to-name.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/ietf-x509-cert-to-name.yin -------------------------------------------------------------------------------- /model/of-config-config.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/of-config-config.rng -------------------------------------------------------------------------------- /model/of-config-gdefs-config.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/of-config-gdefs-config.rng -------------------------------------------------------------------------------- /model/of-config-notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/of-config-notes -------------------------------------------------------------------------------- /model/of-config-schematron.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/of-config-schematron.xsl -------------------------------------------------------------------------------- /model/of-config.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/of-config.yang -------------------------------------------------------------------------------- /model/of-config.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/of-config.yin -------------------------------------------------------------------------------- /model/relaxng-lib.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/model/relaxng-lib.rng -------------------------------------------------------------------------------- /netconf-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/README.md -------------------------------------------------------------------------------- /netconf-tests/change_controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/change_controller.xml -------------------------------------------------------------------------------- /netconf-tests/change_ext_cert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/change_ext_cert.xml -------------------------------------------------------------------------------- /netconf-tests/change_flowtable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/change_flowtable.xml -------------------------------------------------------------------------------- /netconf-tests/change_ipgretunnel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/change_ipgretunnel.xml -------------------------------------------------------------------------------- /netconf-tests/change_owned_cert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/change_owned_cert.xml -------------------------------------------------------------------------------- /netconf-tests/change_port_advertised.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/change_port_advertised.xml -------------------------------------------------------------------------------- /netconf-tests/change_port_reqnum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/change_port_reqnum.xml -------------------------------------------------------------------------------- /netconf-tests/change_queue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/change_queue.xml -------------------------------------------------------------------------------- /netconf-tests/change_queue_port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/change_queue_port.xml -------------------------------------------------------------------------------- /netconf-tests/change_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/change_switch.xml -------------------------------------------------------------------------------- /netconf-tests/change_tunnel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/change_tunnel.xml -------------------------------------------------------------------------------- /netconf-tests/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/config -------------------------------------------------------------------------------- /netconf-tests/create_bridge_port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_bridge_port.xml -------------------------------------------------------------------------------- /netconf-tests/create_controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_controller.xml -------------------------------------------------------------------------------- /netconf-tests/create_empty_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_empty_switch.xml -------------------------------------------------------------------------------- /netconf-tests/create_empty_switch_inv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_empty_switch_inv.xml -------------------------------------------------------------------------------- /netconf-tests/create_ext_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_ext_cert.sh -------------------------------------------------------------------------------- /netconf-tests/create_ext_cert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_ext_cert.xml -------------------------------------------------------------------------------- /netconf-tests/create_flowtable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_flowtable.sh -------------------------------------------------------------------------------- /netconf-tests/create_flowtable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_flowtable.xml -------------------------------------------------------------------------------- /netconf-tests/create_flowtable_multiple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_flowtable_multiple.sh -------------------------------------------------------------------------------- /netconf-tests/create_ipgre_tunnel_port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_ipgre_tunnel_port.xml -------------------------------------------------------------------------------- /netconf-tests/create_malform_certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_malform_certificates.xml -------------------------------------------------------------------------------- /netconf-tests/create_modify_remove_flowtable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_modify_remove_flowtable.sh -------------------------------------------------------------------------------- /netconf-tests/create_modify_remove_queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_modify_remove_queue.sh -------------------------------------------------------------------------------- /netconf-tests/create_modify_remove_tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_modify_remove_tunnel.sh -------------------------------------------------------------------------------- /netconf-tests/create_owned_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_owned_cert.sh -------------------------------------------------------------------------------- /netconf-tests/create_owned_cert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_owned_cert.xml -------------------------------------------------------------------------------- /netconf-tests/create_port_eth1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_port_eth1.sh -------------------------------------------------------------------------------- /netconf-tests/create_port_eth1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_port_eth1.xml -------------------------------------------------------------------------------- /netconf-tests/create_port_multiple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_port_multiple.sh -------------------------------------------------------------------------------- /netconf-tests/create_queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_queue.sh -------------------------------------------------------------------------------- /netconf-tests/create_queue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_queue.xml -------------------------------------------------------------------------------- /netconf-tests/create_queue_multiple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_queue_multiple.sh -------------------------------------------------------------------------------- /netconf-tests/create_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_switch.xml -------------------------------------------------------------------------------- /netconf-tests/create_tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_tunnel.sh -------------------------------------------------------------------------------- /netconf-tests/create_tunnel_port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_tunnel_port.xml -------------------------------------------------------------------------------- /netconf-tests/create_vxlan_tunnel_port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/create_vxlan_tunnel_port.xml -------------------------------------------------------------------------------- /netconf-tests/get-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/get-config.sh -------------------------------------------------------------------------------- /netconf-tests/group_test_controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/group_test_controller.sh -------------------------------------------------------------------------------- /netconf-tests/group_test_empty_ds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/group_test_empty_ds.sh -------------------------------------------------------------------------------- /netconf-tests/group_test_ext_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/group_test_ext_cert.sh -------------------------------------------------------------------------------- /netconf-tests/group_test_flowtable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/group_test_flowtable.sh -------------------------------------------------------------------------------- /netconf-tests/group_test_owned_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/group_test_owned_cert.sh -------------------------------------------------------------------------------- /netconf-tests/group_test_port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/group_test_port.sh -------------------------------------------------------------------------------- /netconf-tests/group_test_switch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/group_test_switch.sh -------------------------------------------------------------------------------- /netconf-tests/group_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/group_tests.sh -------------------------------------------------------------------------------- /netconf-tests/openflow_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/openflow_set.sh -------------------------------------------------------------------------------- /netconf-tests/ovs.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /netconf-tests/port_admin_state_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/port_admin_state_down.xml -------------------------------------------------------------------------------- /netconf-tests/port_admin_state_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/port_admin_state_up.xml -------------------------------------------------------------------------------- /netconf-tests/port_openflow_set_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/port_openflow_set_down.xml -------------------------------------------------------------------------------- /netconf-tests/port_openflow_set_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/port_openflow_set_up.xml -------------------------------------------------------------------------------- /netconf-tests/remove_controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_controller.xml -------------------------------------------------------------------------------- /netconf-tests/remove_ext_cert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_ext_cert.xml -------------------------------------------------------------------------------- /netconf-tests/remove_flowtable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_flowtable.sh -------------------------------------------------------------------------------- /netconf-tests/remove_flowtable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_flowtable.xml -------------------------------------------------------------------------------- /netconf-tests/remove_flowtable_from_bridge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_flowtable_from_bridge.xml -------------------------------------------------------------------------------- /netconf-tests/remove_owned_cert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_owned_cert.xml -------------------------------------------------------------------------------- /netconf-tests/remove_port_eth1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_port_eth1.sh -------------------------------------------------------------------------------- /netconf-tests/remove_port_eth1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_port_eth1.xml -------------------------------------------------------------------------------- /netconf-tests/remove_queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_queue.sh -------------------------------------------------------------------------------- /netconf-tests/remove_queue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_queue.xml -------------------------------------------------------------------------------- /netconf-tests/remove_queue_from_bridge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_queue_from_bridge.xml -------------------------------------------------------------------------------- /netconf-tests/remove_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_switch.xml -------------------------------------------------------------------------------- /netconf-tests/remove_tunnel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_tunnel.xml -------------------------------------------------------------------------------- /netconf-tests/remove_tunnel_port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/remove_tunnel_port.xml -------------------------------------------------------------------------------- /netconf-tests/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/reset.sh -------------------------------------------------------------------------------- /netconf-tests/run_edit_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/run_edit_config.sh -------------------------------------------------------------------------------- /netconf-tests/startup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/netconf-tests/startup.xml -------------------------------------------------------------------------------- /server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/Makefile.am -------------------------------------------------------------------------------- /server/agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/agent.c -------------------------------------------------------------------------------- /server/agent_comm_dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/agent_comm_dbus.c -------------------------------------------------------------------------------- /server/agent_comm_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/agent_comm_socket.c -------------------------------------------------------------------------------- /server/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/comm.h -------------------------------------------------------------------------------- /server/comm_dbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/comm_dbus.h -------------------------------------------------------------------------------- /server/comm_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/comm_socket.c -------------------------------------------------------------------------------- /server/comm_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/comm_socket.h -------------------------------------------------------------------------------- /server/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/common.c -------------------------------------------------------------------------------- /server/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/common.h -------------------------------------------------------------------------------- /server/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/data.h -------------------------------------------------------------------------------- /server/edit-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/edit-config.c -------------------------------------------------------------------------------- /server/netconf-server-transapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/netconf-server-transapi.c -------------------------------------------------------------------------------- /server/ofconfig-datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/ofconfig-datastore.c -------------------------------------------------------------------------------- /server/ofconfig-transapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/ofconfig-transapi.c -------------------------------------------------------------------------------- /server/ovs-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/ovs-data.c -------------------------------------------------------------------------------- /server/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/server.c -------------------------------------------------------------------------------- /server/server_comm_dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/server_comm_dbus.c -------------------------------------------------------------------------------- /server/server_comm_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/server_comm_socket.c -------------------------------------------------------------------------------- /server/server_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/server_ops.c -------------------------------------------------------------------------------- /server/server_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvswitch/of-config/HEAD/server/server_ops.h --------------------------------------------------------------------------------