blob: 972a4e8d3afad6a5119049c6426f9fd104494946 [file] [log] [blame]
Rich Laneb1f347d2013-05-16 16:39:12 -07001-- binary
201 0f # version/type
300 20 # length
400 00 00 02 # xid
5ff fd # port_no
601 02 03 04 05 06 # hw_addr
790 ab cd ef # config
8ff 11 ff 11 # mask
9ca fe 67 89 # advertise
1000 00 00 00 # pad
11-- python
12ofp.message.port_mod(
13 xid=2,
14 port_no=ofp.OFPP_CONTROLLER,
15 hw_addr=[1,2,3,4,5,6],
16 config=0x90ABCDEF,
17 mask=0xFF11FF11,
18 advertise=0xCAFE6789)