From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id E6533902 for ; Fri, 19 Jun 2015 10:36:32 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP; 19 Jun 2015 01:36:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,643,1427785200"; d="scan'208";a="749514084" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga002.jf.intel.com with ESMTP; 19 Jun 2015 01:36:31 -0700 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id t5J8aTjJ016911; Fri, 19 Jun 2015 16:36:29 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id t5J8aR7q020085; Fri, 19 Jun 2015 16:36:29 +0800 Received: (from yliu84x@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id t5J8aRJR020081; Fri, 19 Jun 2015 16:36:27 +0800 From: Yong Liu To: dts@dpdk.org Date: Fri, 19 Jun 2015 16:36:25 +0800 Message-Id: <1434702985-20049-1-git-send-email-yong.liu@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dts] [PATCH] covert DUT hostname into ipaddress for qemu tcp forward X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 08:36:33 -0000 From: Marvin Liu Signed-off-by: Marvin Liu diff --git a/framework/qemu_kvm.py b/framework/qemu_kvm.py index 434c32d..50f229b 100644 --- a/framework/qemu_kvm.py +++ b/framework/qemu_kvm.py @@ -36,6 +36,7 @@ import os from virt_base import VirtBase from exception import StartVMFailedException +from settings import get_host_ip # This name is derictly defined in the qemu guest serivce # So you can not change it except it is changed by the service @@ -408,7 +409,8 @@ class QEMUKvm(VirtBase): # get the host addr host_addr = field(opt_hostfwd, 1) if not host_addr: - host_addr = str(self.host_dut.get_ip_address()) + addr = str(self.host_dut.get_ip_address()) + hostaddr = get_host_ip(addr) # get the host port in the option host_port = field(opt_hostfwd, 2).split('-')[0] diff --git a/framework/settings.py b/framework/settings.py index d3cdf80..79f2a5e 100644 --- a/framework/settings.py +++ b/framework/settings.py @@ -31,6 +31,8 @@ """ Folders for framework running enviornment. """ +import socket + FOLDERS = { 'Framework': 'framework', 'Testscripts': 'tests', @@ -200,3 +202,16 @@ def get_netdev(crb, pci): return vf return None + +def get_host_ip(address): + ip_reg = r'\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}' + m = re.match(ip_reg, address) + if m: + return address + else: + try: + result=socket.gethostbyaddr(address) + return result[2][0] + except: + print "couldn't look up %s" % address + return '' -- 1.9.3