doc: ofproto_ref: Update supported actions/matches list
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
parent
6d2b1c5035
commit
a2d71f3198
@ -1618,6 +1618,11 @@ class OFPActionExperimenter(OFPAction):
|
||||
================ ======================================================
|
||||
experimenter Experimenter ID
|
||||
================ ======================================================
|
||||
|
||||
.. Note::
|
||||
|
||||
For the list of the supported Nicira experimenter actions,
|
||||
please refer to :ref:`ryu.ofproto.nx_actions <nx_actions_structures>`.
|
||||
"""
|
||||
def __init__(self, experimenter, type_=None, len_=None):
|
||||
super(OFPActionExperimenter, self).__init__()
|
||||
@ -3332,6 +3337,12 @@ class OFPMatch(StringifyMixin):
|
||||
ipv6_nd_tll MAC address Target link-layer for ND
|
||||
mpls_label Integer 32bit MPLS label
|
||||
mpls_tc Integer 8bit MPLS TC
|
||||
pbb_uca Integer 8bit PBB UCA header field
|
||||
(EXT-256 Old version of ONF Extension)
|
||||
tcp_flags Integer 16bit TCP flags
|
||||
(EXT-109 ONF Extension)
|
||||
actset_output Integer 32bit Output port from action set metadata
|
||||
(EXT-233 ONF Extension)
|
||||
================ =============== ==================================
|
||||
|
||||
Example::
|
||||
@ -3349,6 +3360,11 @@ class OFPMatch(StringifyMixin):
|
||||
...
|
||||
('2001:db8:bd05:1d2:288a:1fc0:1:10ee', 'ffff:ffff:ffff:ffff::')
|
||||
|
||||
.. Note::
|
||||
|
||||
For the list of the supported Nicira experimenter matches,
|
||||
please refer to :ref:`ryu.ofproto.nx_match <nx_match_structures>`.
|
||||
|
||||
.. Note::
|
||||
|
||||
For VLAN id match field, special values are defined in OpenFlow Spec.
|
||||
|
@ -728,6 +728,12 @@ class OFPMatch(StringifyMixin):
|
||||
pbb_isid Integer 24bit PBB I-SID
|
||||
tunnel_id Integer 64bit Logical Port Metadata
|
||||
ipv6_exthdr Integer 16bit IPv6 Extension Header pseudo-field
|
||||
pbb_uca Integer 8bit PBB UCA header field
|
||||
(EXT-256 Old version of ONF Extension)
|
||||
tcp_flags Integer 16bit TCP flags
|
||||
(EXT-109 ONF Extension)
|
||||
actset_output Integer 32bit Output port from action set metadata
|
||||
(EXT-233 ONF Extension)
|
||||
================ =============== ==================================
|
||||
|
||||
Example::
|
||||
@ -745,6 +751,11 @@ class OFPMatch(StringifyMixin):
|
||||
...
|
||||
('2001:db8:bd05:1d2:288a:1fc0:1:10ee', 'ffff:ffff:ffff:ffff::')
|
||||
|
||||
.. Note::
|
||||
|
||||
For the list of the supported Nicira experimenter matches,
|
||||
please refer to :ref:`ryu.ofproto.nx_match <nx_match_structures>`.
|
||||
|
||||
.. Note::
|
||||
|
||||
For VLAN id match field, special values are defined in OpenFlow Spec.
|
||||
@ -3371,6 +3382,11 @@ class OFPActionExperimenter(OFPAction):
|
||||
================ ======================================================
|
||||
experimenter Experimenter ID
|
||||
================ ======================================================
|
||||
|
||||
.. Note::
|
||||
|
||||
For the list of the supported Nicira experimenter actions,
|
||||
please refer to :ref:`ryu.ofproto.nx_actions <nx_actions_structures>`.
|
||||
"""
|
||||
|
||||
def __init__(self, experimenter):
|
||||
|
@ -623,6 +623,10 @@ class OFPMatch(StringifyMixin):
|
||||
tunnel_id Integer 64bit Logical Port Metadata
|
||||
ipv6_exthdr Integer 16bit IPv6 Extension Header pseudo-field
|
||||
pbb_uca Integer 8bit PBB UCA header field
|
||||
tcp_flags Integer 16bit TCP flags
|
||||
(EXT-109 ONF Extension)
|
||||
actset_output Integer 32bit Output port from action set metadata
|
||||
(EXT-233 ONF Extension)
|
||||
================ =============== ==================================
|
||||
|
||||
Example::
|
||||
@ -640,6 +644,11 @@ class OFPMatch(StringifyMixin):
|
||||
...
|
||||
('2001:db8:bd05:1d2:288a:1fc0:1:10ee', 'ffff:ffff:ffff:ffff::')
|
||||
|
||||
.. Note::
|
||||
|
||||
For the list of the supported Nicira experimenter matches,
|
||||
please refer to :ref:`ryu.ofproto.nx_match <nx_match_structures>`.
|
||||
|
||||
.. Note::
|
||||
|
||||
For VLAN id match field, special values are defined in OpenFlow Spec.
|
||||
@ -4972,6 +4981,11 @@ class OFPActionExperimenter(OFPAction):
|
||||
================ ======================================================
|
||||
experimenter Experimenter ID
|
||||
================ ======================================================
|
||||
|
||||
.. Note::
|
||||
|
||||
For the list of the supported Nicira experimenter actions,
|
||||
please refer to :ref:`ryu.ofproto.nx_actions <nx_actions_structures>`.
|
||||
"""
|
||||
def __init__(self, experimenter, data=None, type_=None, len_=None):
|
||||
super(OFPActionExperimenter, self).__init__()
|
||||
|
@ -624,6 +624,9 @@ class OFPMatch(StringifyMixin):
|
||||
tunnel_id Integer 64bit Logical Port Metadata
|
||||
ipv6_exthdr Integer 16bit IPv6 Extension Header pseudo-field
|
||||
pbb_uca Integer 8bit PBB UCA header field
|
||||
tcp_flags Integer 16bit TCP flags
|
||||
actset_output Integer 32bit Output port from action set metadata
|
||||
packet_type Integer 32bit Packet type value
|
||||
================ =============== ==================================
|
||||
|
||||
Example::
|
||||
@ -641,6 +644,11 @@ class OFPMatch(StringifyMixin):
|
||||
...
|
||||
('2001:db8:bd05:1d2:288a:1fc0:1:10ee', 'ffff:ffff:ffff:ffff::')
|
||||
|
||||
.. Note::
|
||||
|
||||
For the list of the supported Nicira experimenter matches,
|
||||
please refer to :ref:`ryu.ofproto.nx_match <nx_match_structures>`.
|
||||
|
||||
.. Note::
|
||||
|
||||
For VLAN id match field, special values are defined in OpenFlow Spec.
|
||||
@ -5931,6 +5939,11 @@ class OFPActionExperimenter(OFPAction):
|
||||
================ ======================================================
|
||||
experimenter Experimenter ID
|
||||
================ ======================================================
|
||||
|
||||
.. Note::
|
||||
|
||||
For the list of the supported Nicira experimenter actions,
|
||||
please refer to :ref:`ryu.ofproto.nx_actions <nx_actions_structures>`.
|
||||
"""
|
||||
|
||||
def __init__(self, experimenter):
|
||||
|
Loading…
Reference in New Issue
Block a user