summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorShinpei Muraoka <shinpei.muraoka@gmail.com>2016-04-14 11:13:38 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-05-16 15:02:40 +0900
commitaf2ae13ae338d761bcf3d666ffdc72287fade05f (patch)
treee7c3c09640ad868d173eee12e90a4bd3eabea232 /doc
parent3f60665d1fc64adc1bdaa600415c0bb732309ff9 (diff)
doc/app/ofctl_rest: Remove unused match field
This patch removed unused match field in Openflow1.2 or later. The following is removed match filed. - dl_dst - dl_src - dl_type - dl_vlan - nw_src - nw_dst - nw_proto - tp_src - tp_dst Signed-off-by: Shinpei Muraoka <shinpei.muraoka@gmail.com> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'doc')
-rw-r--r--doc/source/app/ofctl_rest.rst9
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/source/app/ofctl_rest.rst b/doc/source/app/ofctl_rest.rst
index c1aa651a..cda76cfc 100644
--- a/doc/source/app/ofctl_rest.rst
+++ b/doc/source/app/ofctl_rest.rst
@@ -2596,23 +2596,14 @@ Description of Match on request messages
in_port Switch input port (int) {"in_port": 7}
in_phy_port Switch physical input port (int) {"in_phy_port": 5, "in_port": 3}
metadata Metadata passed between tables (int or string) {"metadata": 12345} or {"metadata": "0x1212/0xffff"}
- dl_dst Ethernet destination address (string) {"dl_dst": "aa:bb:cc:11:22:33/00:00:00:00:ff:ff"}
- dl_src Ethernet source address (string) {"dl_src": "aa:bb:cc:11:22:33"}
eth_dst Ethernet destination address (string) {"eth_dst": "aa:bb:cc:11:22:33/00:00:00:00:ff:ff"}
eth_src Ethernet source address (string) {"eth_src": "aa:bb:cc:11:22:33"}
- dl_type Ethernet frame type (int) {"dl_type": 123}
eth_type Ethernet frame type (int) {"eth_type": 2048}
- dl_vlan VLAN id (int or string) See :ref:`example-of-vlan-id-match-field`
vlan_vid VLAN id (int or string) See :ref:`example-of-vlan-id-match-field`
vlan_pcp VLAN priority (int) {"vlan_pcp": 3, "vlan_vid": 3}
ip_dscp IP DSCP (6 bits in ToS field) (int) {"ip_dscp": 3, "eth_type": 2048}
ip_ecn IP ECN (2 bits in ToS field) (int) {"ip_ecn": 0, "eth_type": 34525}
- nw_proto IP protocol (int) {"nw_proto": 5, "eth_type": 2048}
ip_proto IP protocol (int) {"ip_proto": 5, "eth_type": 34525}
- tp_src Transport layer source port (int) {"tp_src": 1, "ip_proto": 6, "eth_type": 2048}
- tp_dst Transport layer destination port (int) {"tp_dst": 2, "ip_proto": 6, "eth_type": 2048}
- nw_src IPv4 source address (string) {"nw_src": "192.168.0.1", "eth_type": 2048}
- nw_dst IPv4 destination address (string) {"nw_dst": "192.168.0.1/24", "eth_type": 2048}
ipv4_src IPv4 source address (string) {"ipv4_src": "192.168.0.1", "eth_type": 2048}
ipv4_dst IPv4 destination address (string) {"ipv4_dst": "192.168.10.10/255.255.255.0", "eth_type": 2048}
tcp_src TCP source port (int) {"tcp_src": 3, "ip_proto": 6, "eth_type": 2048}