On Wed, Aug 27, 2014 at 05:21:09PM +0800, ychen wrote: > I want to change the mac and mtu on internal port, but it seems such > command failed: > 1. ovs-vsctl set interface p0 mac=00:00:00:01:01:01, reply with error > ovs-vsctl: 00:00:00:01:01:01: unexpected ":" parsing set of up to 1 strings
Use quotes: ovs-vsctl set interface p0 mac=\"00:00:00:01:01:01\" > 2. ovs-vsctl set interface p0 mtu=1400, both ovsdb and interface not updated > to mtu with 1400 The 'mtu' column reports the status of the interface. It cannot be used to change the MTU. Normally the MTU should be changed using operating system specific interfaces (e.g. ifconfig). _______________________________________________ discuss mailing list [email protected] http://openvswitch.org/mailman/listinfo/discuss
