{"id":13471455,"url":"https://github.com/faucetsdn/faucet","last_synced_at":"2026-02-27T00:17:02.964Z","repository":{"id":37602609,"uuid":"43105431","full_name":"faucetsdn/faucet","owner":"faucetsdn","description":"FAUCET is an OpenFlow controller for multi table OpenFlow 1.3 switches, that implements layer 2 switching, VLANs, ACLs, and layer 3 IPv4 and IPv6 routing.","archived":false,"fork":false,"pushed_at":"2025-05-07T21:36:56.000Z","size":35800,"stargazers_count":587,"open_issues_count":43,"forks_count":196,"subscribers_count":51,"default_branch":"main","last_synced_at":"2025-05-07T22:30:59.422Z","etag":null,"topics":["faucet-sdn","sdn","sdn-controller","software-defined-network"],"latest_commit_sha":null,"homepage":"http://faucet.nz","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/faucetsdn.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2015-09-25T02:39:36.000Z","updated_at":"2025-05-07T21:36:37.000Z","dependencies_parsed_at":"2023-10-20T19:48:27.978Z","dependency_job_id":"51bc48e8-b3fe-48c4-82db-ece4afe98df2","html_url":"https://github.com/faucetsdn/faucet","commit_stats":{"total_commits":8027,"total_committers":73,"mean_commits":"109.95890410958904","dds":"0.38831443876915406","last_synced_commit":"1ad16be138aacd40fa130877436ce4569b2d3ff0"},"previous_names":[],"tags_count":166,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faucetsdn%2Ffaucet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faucetsdn%2Ffaucet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faucetsdn%2Ffaucet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faucetsdn%2Ffaucet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/faucetsdn","download_url":"https://codeload.github.com/faucetsdn/faucet/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254259384,"owners_count":22040820,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["faucet-sdn","sdn","sdn-controller","software-defined-network"],"created_at":"2024-07-31T16:00:45.195Z","updated_at":"2026-02-27T00:17:02.949Z","avatar_url":"https://github.com/faucetsdn.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"Faucet\n======\n\n.. image:: https://github.com/faucetsdn/faucet/actions/workflows/tests-unit.yml/badge.svg\n    :target: https://github.com/faucetsdn/faucet/actions?query=workflow%3A%22Unit+tests%22\n\n.. image:: https://github.com/faucetsdn/faucet/actions/workflows/tests-integration.yml/badge.svg\n    :target: https://github.com/faucetsdn/faucet/actions?query=workflow%3A%22Integration+tests%22\n\n.. image:: https://codecov.io/gh/faucetsdn/faucet/branch/master/graph/badge.svg\n    :target: https://codecov.io/gh/faucetsdn/faucet\n\n\nFAUCET is an OpenFlow controller for multi table OpenFlow 1.3 switches, that implements layer 2 switching, VLANs, ACLs, and layer 3 IPv4 and IPv6 routing, static and via BGP. It is based on Waikato University's `Valve \u003chttps://github.com/wandsdn/valve\u003e`_ and the `Ryu OpenFlow Controller \u003chttps://ryu-sdn.org\u003e`_. FAUCET's design and background is described in `ACM Queue \u003chttps://queue.acm.org/detail.cfm?id=3015763\u003e`_.\n\nIt supports:\n\n- OpenFlow v1.3 (multi table) switches (including optional table features), hardware and software\n- Multiple datapaths and distributed switching under a single controller\n- VLANs, mixed tagged/untagged ports\n- ACLs matching layer 2 and layer 3 fields\n- IPv4 and IPv6 routing, static and via BGP\n- Policy based forwarding to offload to external NFV applications (Eg 802.1x via hostapd, DHCP to isc DHCPD)\n- Port and flow statistics via Grafana\n- Controller health and statistics via Prometheus\n- Unit and systems tests run under GitHub workflows based on mininet and OVS\n\nHardware and software switch support\n------------------------------------\n\nDetailed guides for some switches are available on `readthedocs \u003chttp://docs.faucet.nz/en/latest/vendors/index.html\u003e`_.\n\nFaucet's design principle is to be as hardware agnostic as possible and not require Table Type Patterns. This means that Faucet expects the hardware Open Flow Agent (OFA) to hide implementation details, including which tables are best for certain matches or whether there is special support for multicast - Faucet expects the OFA to leverage the right hardware transparently.\n\nIf you are a hardware vendor wanting to support FAUCET, you need to support all the matches in `faucet/faucet_pipeline.py \u003cfaucet/faucet_pipeline.py\u003e`_ and pass all tests.\n\nInstallation\n------------\n\nPlease see the `installation guide \u003chttp://docs.faucet.nz/en/latest/installation.html\u003e`_.\n\nConfiguration\n-------------\n\nPlease see the `configuration guide \u003chttp://docs.faucet.nz/en/latest/configuration.html\u003e`_\nfor documentation regarding the general configuration of faucet and the\n`recipe book \u003chttp://docs.faucet.nz/en/latest/recipe_book/index.html\u003e`_\nfor configuration snippets for common use cases.\n\nDevelopment and testing\n-----------------------\n\nPlease see the `developer guide \u003chttp://docs.faucet.nz/en/latest/developer_guide.html\u003e`_.\n\nGetting Help\n------------\n\nWe use a mailing list on google groups for announcing new versions and\ncommunicating with users and developers:\n\n * `faucetsdn \u003chttps://groups.google.com/g/faucetsdn\u003e`_\n\nWe also have the #faucet IRC channel on\n`libera \u003chttps://web.libera.chat/?channels=#faucet\u003e`_.\n\nA few tutorial videos are available on our\n`YouTube channel \u003chttps://www.youtube.com/channel/UChRZ5O2diT7QREazfQX0stQ\u003e`_.\n\nThe\n`faucet dev blog \u003chttps://www.vandervecken.com/faucet\u003e`_\nand\n`faucetsdn twitter \u003chttps://twitter.com/faucetsdn\u003e`_\nare good places to keep up with the latest news about faucet.\n\nIf you find bugs, or if have feature requests, please create an issue on our\n`bug tracker \u003chttps://github.com/faucetsdn/faucet/issues\u003e`_.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaucetsdn%2Ffaucet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffaucetsdn%2Ffaucet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaucetsdn%2Ffaucet/lists"}