Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created August 26, 2020 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/eddfccf92f082a82fc2cd0267c9e13a2 to your computer and use it in GitHub Desktop.
Save r-ryantm/eddfccf92f082a82fc2cd0267c9e13a2 to your computer and use it in GitHub Desktop.
/nix/store/4q29vrmm78dnncniqbx68i4aifw63k51-openvswitch-2.14.0
├── bin
│   ├── ovs-appctl
│   ├── ovs-bugtool
│   ├── ovsdb-client
│   ├── ovsdb-server
│   ├── ovsdb-tool
│   ├── ovs-docker
│   ├── ovs-dpctl
│   ├── ovs-dpctl-top
│   ├── ovs-l3ping
│   ├── ovs-ofctl
│   ├── ovs-parse-backtrace
│   ├── ovs-pcap
│   ├── ovs-pki
│   ├── ovs-tcpdump
│   ├── ovs-tcpundump
│   ├── ovs-test
│   ├── ovs-testcontroller
│   ├── ovs-vlan-test
│   ├── ovs-vsctl
│   ├── ovs-vswitchd
│   └── vtep-ctl
├── etc
│   ├── bash_completion.d
│   │   ├── ovs-appctl-bashcomp.bash
│   │   └── ovs-vsctl-bashcomp.bash
│   └── openvswitch
├── include
│   ├── openflow
│   │   ├── intel-ext.h
│   │   ├── netronome-ext.h
│   │   ├── nicira-ext.h
│   │   ├── openflow-1.0.h
│   │   ├── openflow-1.1.h
│   │   ├── openflow-1.2.h
│   │   ├── openflow-1.3.h
│   │   ├── openflow-1.4.h
│   │   ├── openflow-1.5.h
│   │   ├── openflow-common.h
│   │   └── openflow.h
│   └── openvswitch
│   ├── compiler.h
│   ├── dynamic-string.h
│   ├── flow.h
│   ├── geneve.h
│   ├── hmap.h
│   ├── json.h
│   ├── list.h
│   ├── match.h
│   ├── meta-flow.h
│   ├── namemap.h
│   ├── netdev.h
│   ├── nsh.h
│   ├── ofp-actions.h
│   ├── ofpbuf.h
│   ├── ofp-bundle.h
│   ├── ofp-connection.h
│   ├── ofp-ed-props.h
│   ├── ofp-errors.h
│   ├── ofp-flow.h
│   ├── ofp-group.h
│   ├── ofp-ipfix.h
│   ├── ofp-match.h
│   ├── ofp-meter.h
│   ├── ofp-monitor.h
│   ├── ofp-msgs.h
│   ├── ofp-packet.h
│   ├── ofp-parse.h
│   ├── ofp-port.h
│   ├── ofp-print.h
│   ├── ofp-prop.h
│   ├── ofp-protocol.h
│   ├── ofp-queue.h
│   ├── ofp-switch.h
│   ├── ofp-table.h
│   ├── ofp-util.h
│   ├── packets.h
│   ├── poll-loop.h
│   ├── rconn.h
│   ├── shash.h
│   ├── thread.h
│   ├── token-bucket.h
│   ├── tun-metadata.h
│   ├── type-props.h
│   ├── types.h
│   ├── util.h
│   ├── uuid.h
│   ├── vconn.h
│   ├── version.h
│   └── vlog.h
├── lib
│   ├── libofproto.a
│   ├── libofproto.la
│   ├── libopenvswitch.a
│   ├── libopenvswitch.la
│   ├── libovsdb.a
│   ├── libovsdb.la
│   ├── libsflow.a
│   ├── libsflow.la
│   ├── libvtep.a
│   ├── libvtep.la
│   └── pkgconfig
│   ├── libofproto.pc
│   ├── libopenvswitch.pc
│   ├── libovsdb.pc
│   └── libsflow.pc
└── share
├── man
│   ├── man1
│   │   ├── ovsdb-client.1.gz
│   │   ├── ovsdb-server.1.gz
│   │   ├── ovsdb-tool.1.gz
│   │   └── ovs-pcap.1.gz
│   ├── man5
│   │   ├── ovsdb-server.5.gz
│   │   ├── ovs-vswitchd.conf.db.5.gz
│   │   └── vtep.5.gz
│   ├── man7
│   │   ├── ovs-actions.7.gz
│   │   └── ovs-fields.7.gz
│   └── man8
│   ├── ovs-bugtool.8.gz
│   ├── ovs-dpctl.8.gz
│   ├── ovs-dpctl-top.8.gz
│   ├── ovs-kmod-ctl.8.gz
│   ├── ovs-ofctl.8.gz
│   ├── ovs-testcontroller.8.gz
│   ├── ovs-vsctl.8.gz
│   ├── ovs-vswitchd.8.gz
│   └── vtep-ctl.8.gz
└── openvswitch
├── bugtool-plugins
│   ├── kernel-info
│   │   └── openvswitch.xml
│   ├── network-status
│   │   └── openvswitch.xml
│   ├── system-configuration
│   │   └── openvswitch.xml
│   ├── system-configuration.xml
│   └── system-logs
│   └── openvswitch.xml
├── python
│   ├── ovs
│   │   ├── compat
│   │   │   ├── __init__.py
│   │   │   └── sortedcontainers
│   │   │   ├── __init__.py
│   │   │   ├── sorteddict.py
│   │   │   ├── sortedlist.py
│   │   │   └── sortedset.py
│   │   ├── daemon.py
│   │   ├── db
│   │   │   ├── custom_index.py
│   │   │   ├── data.py
│   │   │   ├── error.py
│   │   │   ├── idl.py
│   │   │   ├── __init__.py
│   │   │   ├── parser.py
│   │   │   ├── schema.py
│   │   │   └── types.py
│   │   ├── dirs.py
│   │   ├── fatal_signal.py
│   │   ├── fcntl_win.py
│   │   ├── __init__.py
│   │   ├── json.py
│   │   ├── jsonrpc.py
│   │   ├── ovsuuid.py
│   │   ├── poller.py
│   │   ├── process.py
│   │   ├── reconnect.py
│   │   ├── socket_util.py
│   │   ├── stream.py
│   │   ├── timeval.py
│   │   ├── unixctl
│   │   │   ├── client.py
│   │   │   ├── __init__.py
│   │   │   └── server.py
│   │   ├── util.py
│   │   ├── version.py
│   │   ├── vlog.py
│   │   └── winutils.py
│   └── ovstest
│   ├── args.py
│   ├── __init__.py
│   ├── rpcserver.py
│   ├── tcp.py
│   ├── tests.py
│   ├── udp.py
│   ├── util.py
│   └── vswitch.py
├── scripts
│   ├── ovs-bugtool-daemons-ver
│   ├── ovs-bugtool-fdb-show
│   ├── ovs-bugtool-get-dpdk-nic-numa
│   ├── ovs-bugtool-get-port-stats
│   ├── ovs-bugtool-ovs-appctl-dpif
│   ├── ovs-bugtool-ovs-bridge-datapath-type
│   ├── ovs-bugtool-ovs-ofctl-loop-over-bridges
│   ├── ovs-bugtool-ovs-vswitchd-threads-affinity
│   ├── ovs-bugtool-qos-configs
│   ├── ovs-bugtool-tc-class-show
│   ├── ovs-check-dead-ifs
│   ├── ovs-ctl
│   ├── ovs-kmod-ctl
│   ├── ovs-lib
│   ├── ovs-monitor-ipsec
│   ├── ovs-save
│   └── ovs-vtep
├── vswitch.ovsschema
└── vtep.ovsschema
29 directories, 181 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment