Home | History | Annotate | Download | only in network_DhcpMTU

Lines Matching refs:mtu

21     """Test implemenation of MTU including confirming the interface state."""
23 def check_mtu_config(self, mtu):
24 """Check that the ipconfig and interface in the client has correct MTU.
26 @param mtu int expected MTU value.
40 ipconfig_mtu = ipconfig_properties['Mtu']
41 if ipconfig_mtu != mtu:
42 raise error.TestFail('Shill MTU %d does not match expected %d.' %
43 (ipconfig_mtu, mtu))
46 self.ethernet_pair.peer_interface_name).mtu
47 if interface_mtu != mtu:
48 raise error.TestFail('Interface MTU %d does not match '