⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 07_network_dom0_udp_pos.py

📁 xen虚拟机源代码安装包
💻 PY
字号:
#!/usr/bin/python# Copyright (C) International Business Machines Corp., 2006# Author:  <dykman@us.ibm.com># UDP tests to dom0.#  - determines dom0 network#  - creates a single guest domain#  - sets up a single NIC on same subnet as dom0#  - conducts hping2 udp tests to the dom0 IP address# hping2 $dom0_IP -2 -c 1 -d $size#   where $size = 1, 48, 64, 512, 1440, 1448, 1500, 1505,#                 4096, 4192, 32767, 65507, 65508trysizes = [ 1, 48, 64, 512, 1440, 1500, 1505, 4096, 4192,                 32767, 65495 ]from XmTestLib import *rc = 0# Test creates 1 domain, which requires 2 ips: 1 for the domains and 1 for# aliases on dom0if xmtest_netconf.canRunNetTest(2) == False:    SKIP("Don't have enough free configured IPs to run this test")# Fire up a guest domain w/1 nicdomain = XmTestDomain()domain.newDevice(XenNetDevice, "eth0")try:    console = domain.start()except DomainError, e:    if verbose:        print "Failed to create test domain because:"        print e.extra    FAIL(str(e))try:    # Ping dom0    fails=""    netdev = domain.getDevice("eth0")    dom0ip = netdev.getDom0AliasIP()    for size in trysizes:        out = console.runCmd("hping2 " + dom0ip + " -E /dev/urandom -2 -q -c 20"             + " --fast -d " + str(size) + " -N " + str(size))        if out["return"]:            fails += " " + str(size)             print out["output"]except ConsoleError, e:        FAIL(str(e))domain.stop()if len(fails):    FAIL("UDP hping2 to dom0 failed for size" + fails + ".")

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -