本文整理汇总了Python中mininet.node.Host.setMAC方法的典型用法代码示例。如果您正苦于以下问题:Python Host.setMAC方法的具体用法?Python Host.setMAC怎么用?Python Host.setMAC使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mininet.node.Host
的用法示例。
在下文中一共展示了Host.setMAC方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Link
# 需要导入模块: from mininet.node import Host [as 别名]
# 或者: from mininet.node.Host import setMAC [as 别名]
temp = l1.intf1
l1.delete()
h0.intfs = {}
h0.ports = {}
h0.nameToIntf = {}
l1.intf1 = None
#for intf in s1.intfList():
# if intf.link and intf.link.intf1.name == 'h0-eth0':
# intf.link.intf1 = None
l2 = Link(s2,h0,s2.newPort(),0)
h0.setIP( '10.1.0.1/16' )
h0.setMAC(temp.mac)
h0.intfList()[0].mac = temp.mac
h0.intfList()[0].ip = temp.ip
print s2.cmd('ovs-vsctl add-port s2 s2-eth3')
print '**********'
print h0.cmd('ifconfig')
dumpNodeConnections([s0,s1,s2,s3,h0,h1,h2,h3])
#output('%s\n' % repr(h0))
#makeTerms([s2],'xterm')
string = raw_input()
while string != 'exit':
string = raw_input()