• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • tools
  • test
  • configs
  • l2-flow.json
  • Thomas Vachuska's avatar
    Adding an example L2 flow JSON for REST API. · f3c03500 ...
    f3c03500
    Change-Id: Ief9e3f7f9fe6b809bfe14c6d223c63acd8476039
    Thomas Vachuska authored 2015-08-25 00:04:02 +0000
l2-flow.json 418 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
{
  "isPermanent": true,
  "priority": 100,
  "selector": {
    "criteria": [
      {
        "port": 2,
        "type": "IN_PORT"
      },
      {
        "mac": "00:00:00:00:11:22",
        "type": "ETH_SRC"
      },
      {
        "mac": "00:00:00:00:33:44",
        "type": "ETH_DST"
      }
    ]
  },
  "treatment": {
    "instructions": [
      {
        "port": 1,
        "type": "OUTPUT"
      }
    ]
  }
}