admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | ''' |
| 3 | Created on 26-Oct-2012 |
| 4 | |
| 5 | @author: Anil Kumar (anilkumar.s@paxterrasolutions.com) |
| 6 | |
| 7 | |
| 8 | TestON is free software: you can redistribute it and/or modify |
| 9 | it under the terms of the GNU General Public License as published by |
| 10 | the Free Software Foundation, either version 2 of the License, or |
| 11 | (at your option) any later version. |
| 12 | |
| 13 | TestON is distributed in the hope that it will be useful, |
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | GNU General Public License for more details. |
| 17 | |
| 18 | You should have received a copy of the GNU General Public License |
| 19 | along with TestON. If not, see <http://www.gnu.org/licenses/>. |
| 20 | |
| 21 | |
| 22 | MininetCliDriver is the basic driver which will handle the Mininet functions |
| 23 | ''' |
| 24 | |
| 25 | import pexpect |
| 26 | import struct |
| 27 | import fcntl |
| 28 | import os |
| 29 | import signal |
| 30 | import re |
| 31 | import sys |
| 32 | import core.teston |
| 33 | sys.path.append("../") |
| 34 | from drivers.common.cli.emulatordriver import Emulator |
| 35 | from drivers.common.clidriver import CLI |
| 36 | |
| 37 | class MininetCliDriver(Emulator): |
| 38 | ''' |
Jon Hall | 41f40e8 | 2014-04-08 16:43:17 -0700 | [diff] [blame] | 39 | MininetCliDriver is the basic driver which will handle the Mininet functions |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 40 | ''' |
| 41 | def __init__(self): |
| 42 | super(Emulator, self).__init__() |
| 43 | self.handle = self |
| 44 | self.wrapped = sys.modules[__name__] |
| 45 | self.flag = 0 |
| 46 | |
| 47 | def connect(self, **connectargs): |
Jon Hall | 41f40e8 | 2014-04-08 16:43:17 -0700 | [diff] [blame] | 48 | ''' |
| 49 | Here the main is the TestON instance after creating all the log handles. |
| 50 | ''' |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 51 | for key in connectargs: |
| 52 | vars(self)[key] = connectargs[key] |
| 53 | |
| 54 | self.name = self.options['name'] |
| 55 | self.handle = super(MininetCliDriver, self).connect(user_name = self.user_name, ip_address = self.ip_address,port = None, pwd = self.pwd) |
| 56 | |
| 57 | self.ssh_handle = self.handle |
| 58 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 59 | if self.handle : |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 60 | main.log.info(self.name+": Clearing any residual state or processes") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 61 | self.handle.sendline("sudo mn -c") |
admin | f939f8b | 2014-04-03 17:22:56 -0700 | [diff] [blame] | 62 | i=self.handle.expect(['password\sfor\s','Cleanup\scomplete',pexpect.EOF,pexpect.TIMEOUT],120) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 63 | if i==0: |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 64 | main.log.info(self.name+": Sending sudo password") |
admin | f939f8b | 2014-04-03 17:22:56 -0700 | [diff] [blame] | 65 | self.handle.sendline(self.pwd) |
| 66 | i=self.handle.expect(['%s:'%(self.user),'\$',pexpect.EOF,pexpect.TIMEOUT],120) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 67 | if i==1: |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 68 | main.log.info(self.name+": Clean") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 69 | elif i==2: |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 70 | main.log.error(self.name+": Connection terminated") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 71 | elif i==3: #timeout |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 72 | main.log.error(self.name+": Something while cleaning MN took too long... " ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 73 | |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 74 | main.log.info(self.name+": building fresh mininet") |
admin | beea003 | 2014-01-23 14:54:13 -0800 | [diff] [blame] | 75 | #### for reactive/PARP enabled tests |
admin | 0752993 | 2013-11-22 14:58:28 -0800 | [diff] [blame] | 76 | cmdString = "sudo mn " + self.options['arg1'] + " " + self.options['arg2'] + " --mac --controller " + self.options['controller'] |
admin | beea003 | 2014-01-23 14:54:13 -0800 | [diff] [blame] | 77 | #### for proactive flow with static ARP entries |
| 78 | #cmdString = "sudo mn " + self.options['arg1'] + " " + self.options['arg2'] + " --mac --arp --controller " + self.options['controller'] |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 79 | self.handle.sendline(cmdString) |
Jon Hall | 333fa8c | 2014-04-11 11:24:58 -0700 | [diff] [blame] | 80 | self.handle.expect(["sudo mn",pexpect.EOF,pexpect.TIMEOUT]) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 81 | while 1: |
| 82 | i=self.handle.expect(['mininet>','\*\*\*','Exception',pexpect.EOF,pexpect.TIMEOUT],300) |
| 83 | if i==0: |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 84 | main.log.info(self.name+": mininet built") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 85 | return main.TRUE |
| 86 | if i==1: |
Jon Hall | 333fa8c | 2014-04-11 11:24:58 -0700 | [diff] [blame] | 87 | self.handle.expect(["\n",pexpect.EOF,pexpect.TIMEOUT]) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 88 | main.log.info(self.handle.before) |
| 89 | elif i==2: |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 90 | main.log.error(self.name+": Launching mininet failed...") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 91 | return main.FALSE |
| 92 | elif i==3: |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 93 | main.log.error(self.name+": Connection timeout") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 94 | return main.FALSE |
| 95 | elif i==4: #timeout |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 96 | main.log.error(self.name+": Something took too long... " ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 97 | return main.FALSE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 98 | #if utilities.assert_matches(expect=patterns,actual=resultCommand,onpass="Network is being launched",onfail="Network launching is being failed "): |
| 99 | return main.TRUE |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 100 | else:#if no handle |
| 101 | main.log.error(self.name+": Connection failed to the host "+self.user_name+"@"+self.ip_address) |
| 102 | main.log.error(self.name+": Failed to connect to the Mininet") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 103 | return main.FALSE |
| 104 | |
| 105 | def pingall(self): |
| 106 | ''' |
Jon Hall | 41f40e8 | 2014-04-08 16:43:17 -0700 | [diff] [blame] | 107 | Verifies the reachability of the hosts using pingall command. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 108 | ''' |
| 109 | if self.handle : |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 110 | main.log.info(self.name+": Checking reachabilty to the hosts using pingall") |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 111 | try: |
Jon Hall | efa4fa1 | 2014-04-14 11:40:21 -0700 | [diff] [blame] | 112 | response = self.execute(cmd="pingall",prompt="mininet>",timeout=120) |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 113 | except pexpect.EOF: |
| 114 | main.log.error(self.name + ": EOF exception found") |
| 115 | main.log.error(self.name + ": " + self.handle.before) |
| 116 | main.cleanup() |
| 117 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 118 | pattern = 'Results\:\s0\%\sdropped\s\(0\/\d+\slost\)\s*$' |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 119 | #if utilities.assert_matches(expect=pattern,actual=response,onpass="All hosts are reaching",onfail="Unable to reach all the hosts"): |
| 120 | if re.search(pattern,response): |
| 121 | main.log.info(self.name+": All hosts are reachable") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 122 | return main.TRUE |
| 123 | else: |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 124 | main.log.error(self.name+": Unable to reach all the hosts") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 125 | return main.FALSE |
| 126 | else : |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 127 | main.log.error(self.name+": Connection failed to the host") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 128 | return main.FALSE |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 129 | |
| 130 | def fpingHost(self,**pingParams): |
| 131 | ''' |
| 132 | Uses the fping package for faster pinging... |
| 133 | *requires fping to be installed on machine running mininet |
| 134 | ''' |
| 135 | args = utilities.parse_args(["SRC","TARGET"],**pingParams) |
admin | 530b4c9 | 2013-08-14 16:54:35 -0700 | [diff] [blame] | 136 | command = args["SRC"] + " fping -i 100 -t 20 -C 1 -q "+args["TARGET"] |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 137 | self.handle.sendline(command) |
Jon Hall | 333fa8c | 2014-04-11 11:24:58 -0700 | [diff] [blame] | 138 | self.handle.expect([args["TARGET"],pexpect.EOF,pexpect.TIMEOUT]) |
| 139 | self.handle.expect(["mininet",pexpect.EOF,pexpect.TIMEOUT]) |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 140 | response = self.handle.before |
| 141 | if re.search(":\s-" ,response): |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 142 | main.log.info(self.name+": Ping fail") |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 143 | return main.FALSE |
admin | 530b4c9 | 2013-08-14 16:54:35 -0700 | [diff] [blame] | 144 | elif re.search(":\s\d{1,2}\.\d\d", response): |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 145 | main.log.info(self.name+": Ping good!") |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 146 | return main.TRUE |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 147 | main.log.info(self.name+": Install fping on mininet machine... ") |
| 148 | main.log.info(self.name+": \n---\n"+response) |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 149 | return main.FALSE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 150 | |
| 151 | def pingHost(self,**pingParams): |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 152 | ''' |
| 153 | Ping from one mininet host to another |
| 154 | Currently the only supported Params: SRC and TARGET |
| 155 | ''' |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 156 | args = utilities.parse_args(["SRC","TARGET"],**pingParams) |
| 157 | #command = args["SRC"] + " ping -" + args["CONTROLLER"] + " " +args ["TARGET"] |
Jon Hall | 0819fd9 | 2014-05-23 12:08:13 -0700 | [diff] [blame] | 158 | command = args["SRC"] + " ping "+args ["TARGET"]+" -c 1 -i 1 -W 8" |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 159 | try: |
Jon Hall | 6e18c7b | 2014-04-23 16:26:33 -0700 | [diff] [blame] | 160 | main.log.warn("Sending: " + command) |
| 161 | #response = self.execute(cmd=command,prompt="mininet",timeout=10 ) |
| 162 | self.handle.sendline(command) |
| 163 | i = self.handle.expect([command,pexpect.TIMEOUT]) |
| 164 | if i == 1: |
| 165 | main.log.error(self.name + ": timeout when waiting for response from mininet") |
| 166 | main.log.error("response: " + str(self.handle.before)) |
| 167 | i = self.handle.expect(["mininet>",pexpect.TIMEOUT]) |
| 168 | if i == 1: |
| 169 | main.log.error(self.name + ": timeout when waiting for response from mininet") |
| 170 | main.log.error("response: " + str(self.handle.before)) |
| 171 | response = self.handle.before |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 172 | except pexpect.EOF: |
| 173 | main.log.error(self.name + ": EOF exception found") |
| 174 | main.log.error(self.name + ": " + self.handle.before) |
| 175 | main.cleanup() |
| 176 | main.exit() |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 177 | main.log.info(self.name+": Ping Response: "+ response ) |
| 178 | #if utilities.assert_matches(expect=',\s0\%\spacket\sloss',actual=response,onpass="No Packet loss",onfail="Host is not reachable"): |
| 179 | if re.search(',\s0\%\spacket\sloss',response): |
Jon Hall | 6e18c7b | 2014-04-23 16:26:33 -0700 | [diff] [blame] | 180 | main.log.info(self.name+": no packets lost, host is reachable") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 181 | main.last_result = main.TRUE |
| 182 | return main.TRUE |
| 183 | else : |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 184 | main.log.error(self.name+": PACKET LOST, HOST IS NOT REACHABLE") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 185 | main.last_result = main.FALSE |
| 186 | return main.FALSE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 187 | |
| 188 | def checkIP(self,host): |
| 189 | ''' |
Jon Hall | 41f40e8 | 2014-04-08 16:43:17 -0700 | [diff] [blame] | 190 | Verifies the host's ip configured or not. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 191 | ''' |
| 192 | if self.handle : |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 193 | try: |
| 194 | response = self.execute(cmd=host+" ifconfig",prompt="mininet>",timeout=10) |
| 195 | except pexpect.EOF: |
| 196 | main.log.error(self.name + ": EOF exception found") |
| 197 | main.log.error(self.name + ": " + self.handle.before) |
| 198 | main.cleanup() |
| 199 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 200 | |
| 201 | pattern = "inet\s(addr|Mask):([0-1]{1}[0-9]{1,2}|2[0-4][0-9]|25[0-5]|[0-9]{1,2}).([0-1]{1}[0-9]{1,2}|2[0-4][0-9]|25[0-5]|[0-9]{1,2}).([0-1]{1}[0-9]{1,2}|2[0-4][0-9]|25[0-5]|[0-9]{1,2}).([0-1]{1}[0-9]{1,2}|2[0-4][0-9]|25[0-5]|[0-9]{1,2})" |
| 202 | #pattern = "inet\saddr:10.0.0.6" |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 203 | #if utilities.assert_matches(expect=pattern,actual=response,onpass="Host Ip configured properly",onfail="Host IP not found") : |
| 204 | if re.search(pattern,response): |
| 205 | main.log.info(self.name+": Host Ip configured properly") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 206 | return main.TRUE |
| 207 | else: |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 208 | main.log.error(self.name+": Host IP not found") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 209 | return main.FALSE |
| 210 | else : |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 211 | main.log.error(self.name+": Connection failed to the host") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 212 | |
| 213 | def verifySSH(self,**connectargs): |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 214 | try: |
| 215 | response = self.execute(cmd="h1 /usr/sbin/sshd -D&",prompt="mininet>",timeout=10) |
| 216 | response = self.execute(cmd="h4 /usr/sbin/sshd -D&",prompt="mininet>",timeout=10) |
| 217 | for key in connectargs: |
| 218 | vars(self)[key] = connectargs[key] |
| 219 | response = self.execute(cmd="xterm h1 h4 ",prompt="mininet>",timeout=10) |
| 220 | except pexpect.EOF: |
| 221 | main.log.error(self.name + ": EOF exception found") |
| 222 | main.log.error(self.name + ": " + self.handle.before) |
| 223 | main.cleanup() |
| 224 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 225 | import time |
| 226 | time.sleep(20) |
| 227 | if self.flag == 0: |
| 228 | self.flag = 1 |
| 229 | return main.FALSE |
| 230 | else : |
| 231 | return main.TRUE |
| 232 | |
| 233 | def getMacAddress(self,host): |
| 234 | ''' |
Jon Hall | 41f40e8 | 2014-04-08 16:43:17 -0700 | [diff] [blame] | 235 | Verifies the host's ip configured or not. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 236 | ''' |
| 237 | if self.handle : |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 238 | try: |
| 239 | response = self.execute(cmd=host+" ifconfig",prompt="mininet>",timeout=10) |
| 240 | except pexpect.EOF: |
| 241 | main.log.error(self.name + ": EOF exception found") |
| 242 | main.log.error(self.name + ": " + self.handle.before) |
| 243 | main.cleanup() |
| 244 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 245 | |
Ahmed El-Hassany | f720e20 | 2014-04-04 16:11:36 -0700 | [diff] [blame] | 246 | pattern = r'HWaddr\s([0-9A-F]{2}[:-]){5}([0-9A-F]{2})' |
| 247 | mac_address_search = re.search(pattern, response, re.I) |
| 248 | mac_address = mac_address_search.group().split(" ")[1] |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 249 | main.log.info(self.name+": Mac-Address of Host "+ host + " is " + mac_address) |
Ahmed El-Hassany | f720e20 | 2014-04-04 16:11:36 -0700 | [diff] [blame] | 250 | return mac_address |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 251 | else : |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 252 | main.log.error(self.name+": Connection failed to the host") |
Ahmed El-Hassany | fd32918 | 2014-04-10 11:38:16 -0700 | [diff] [blame] | 253 | |
| 254 | def getInterfaceMACAddress(self,host, interface): |
| 255 | ''' |
| 256 | Return the IP address of the interface on the given host |
| 257 | ''' |
| 258 | if self.handle : |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 259 | try: |
| 260 | response = self.execute(cmd=host+" ifconfig " + interface, |
Ahmed El-Hassany | fd32918 | 2014-04-10 11:38:16 -0700 | [diff] [blame] | 261 | prompt="mininet>",timeout=10) |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 262 | except pexpect.EOF: |
| 263 | main.log.error(self.name + ": EOF exception found") |
| 264 | main.log.error(self.name + ": " + self.handle.before) |
| 265 | main.cleanup() |
| 266 | main.exit() |
Ahmed El-Hassany | fd32918 | 2014-04-10 11:38:16 -0700 | [diff] [blame] | 267 | |
| 268 | pattern = r'HWaddr\s([0-9A-F]{2}[:-]){5}([0-9A-F]{2})' |
| 269 | mac_address_search = re.search(pattern, response, re.I) |
| 270 | if mac_address_search is None: |
| 271 | main.log.info("No mac address found in %s" % response) |
| 272 | return main.FALSE |
| 273 | mac_address = mac_address_search.group().split(" ")[1] |
| 274 | main.log.info("Mac-Address of "+ host + ":"+ interface + " is " + mac_address) |
| 275 | return mac_address |
| 276 | else: |
| 277 | main.log.error("Connection failed to the host") |
| 278 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 279 | def getIPAddress(self,host): |
| 280 | ''' |
Jon Hall | 41f40e8 | 2014-04-08 16:43:17 -0700 | [diff] [blame] | 281 | Verifies the host's ip configured or not. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 282 | ''' |
| 283 | if self.handle : |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 284 | try: |
| 285 | response = self.execute(cmd=host+" ifconfig",prompt="mininet>",timeout=10) |
| 286 | except pexpect.EOF: |
| 287 | main.log.error(self.name + ": EOF exception found") |
| 288 | main.log.error(self.name + ": " + self.handle.before) |
| 289 | main.cleanup() |
| 290 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 291 | |
| 292 | pattern = "inet\saddr:(\d+\.\d+\.\d+\.\d+)" |
| 293 | ip_address_search = re.search(pattern, response) |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 294 | main.log.info(self.name+": IP-Address of Host "+host +" is "+ip_address_search.group(1)) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 295 | return ip_address_search.group(1) |
| 296 | else : |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 297 | main.log.error(self.name+": Connection failed to the host") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 298 | |
Ahmed El-Hassany | fd32918 | 2014-04-10 11:38:16 -0700 | [diff] [blame] | 299 | def getSwitchDPID(self,switch): |
| 300 | ''' |
| 301 | return the datapath ID of the switch |
| 302 | ''' |
| 303 | if self.handle : |
| 304 | cmd = "py %s.dpid" % switch |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 305 | try: |
| 306 | response = self.execute(cmd=cmd,prompt="mininet>",timeout=10) |
| 307 | except pexpect.EOF: |
| 308 | main.log.error(self.name + ": EOF exception found") |
| 309 | main.log.error(self.name + ": " + self.handle.before) |
| 310 | main.cleanup() |
| 311 | main.exit() |
Ahmed El-Hassany | fd32918 | 2014-04-10 11:38:16 -0700 | [diff] [blame] | 312 | pattern = r'^(?P<dpid>\d)+' |
| 313 | result = re.search(pattern, response, re.MULTILINE) |
| 314 | if result is None: |
| 315 | main.log.info("Couldn't find DPID for switch '', found: %s" % (switch, response)) |
| 316 | return main.FALSE |
| 317 | return int(result.group('dpid')) |
| 318 | else: |
| 319 | main.log.error("Connection failed to the host") |
| 320 | |
| 321 | def getInterfaces(self, node): |
| 322 | ''' |
| 323 | return information dict about interfaces connected to the node |
| 324 | ''' |
| 325 | if self.handle : |
| 326 | cmd = 'py "\\n".join(["name=%s,mac=%s,ip=%s,isUp=%s" % (i.name, i.MAC(), i.IP(), i.isUp())' |
| 327 | cmd += ' for i in %s.intfs.values()])' % node |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 328 | try: |
| 329 | response = self.execute(cmd=cmd,prompt="mininet>",timeout=10) |
| 330 | except pexpect.EOF: |
| 331 | main.log.error(self.name + ": EOF exception found") |
| 332 | main.log.error(self.name + ": " + self.handle.before) |
| 333 | main.cleanup() |
| 334 | main.exit() |
Ahmed El-Hassany | fd32918 | 2014-04-10 11:38:16 -0700 | [diff] [blame] | 335 | return response |
| 336 | else: |
| 337 | main.log.error("Connection failed to the node") |
| 338 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 339 | def dump(self): |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 340 | main.log.info(self.name+": Dump node info") |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 341 | try: |
| 342 | response = self.execute(cmd = 'dump',prompt = 'mininet>',timeout = 10) |
| 343 | except pexpect.EOF: |
| 344 | main.log.error(self.name + ": EOF exception found") |
| 345 | main.log.error(self.name + ": " + self.handle.before) |
| 346 | main.cleanup() |
| 347 | main.exit() |
Ahmed El-Hassany | d1f7170 | 2014-04-04 16:12:45 -0700 | [diff] [blame] | 348 | return response |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 349 | |
| 350 | def intfs(self): |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 351 | main.log.info(self.name+": List interfaces") |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 352 | try: |
| 353 | response = self.execute(cmd = 'intfs',prompt = 'mininet>',timeout = 10) |
| 354 | except pexpect.EOF: |
| 355 | main.log.error(self.name + ": EOF exception found") |
| 356 | main.log.error(self.name + ": " + self.handle.before) |
| 357 | main.cleanup() |
| 358 | main.exit() |
Jon Hall | 668ed80 | 2014-04-08 17:17:59 -0700 | [diff] [blame] | 359 | return response |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 360 | |
| 361 | def net(self): |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 362 | main.log.info(self.name+": List network connections") |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 363 | try: |
| 364 | response = self.execute(cmd = 'net',prompt = 'mininet>',timeout = 10) |
| 365 | except pexpect.EOF: |
| 366 | main.log.error(self.name + ": EOF exception found") |
| 367 | main.log.error(self.name + ": " + self.handle.before) |
| 368 | main.cleanup() |
| 369 | main.exit() |
Jon Hall | 668ed80 | 2014-04-08 17:17:59 -0700 | [diff] [blame] | 370 | return response |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 371 | |
| 372 | def iperf(self): |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 373 | main.log.info(self.name+": Simple iperf TCP test between two (optionally specified) hosts") |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 374 | try: |
| 375 | response = self.execute(cmd = 'iperf',prompt = 'mininet>',timeout = 10) |
| 376 | except pexpect.EOF: |
| 377 | main.log.error(self.name + ": EOF exception found") |
| 378 | main.log.error(self.name + ": " + self.handle.before) |
| 379 | main.cleanup() |
| 380 | main.exit() |
Jon Hall | 668ed80 | 2014-04-08 17:17:59 -0700 | [diff] [blame] | 381 | return response |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 382 | |
| 383 | def iperfudp(self): |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 384 | main.log.info(self.name+": Simple iperf TCP test between two (optionally specified) hosts") |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 385 | try: |
| 386 | response = self.execute(cmd = 'iperfudp',prompt = 'mininet>',timeout = 10) |
| 387 | except pexpect.EOF: |
| 388 | main.log.error(self.name + ": EOF exception found") |
| 389 | main.log.error(self.name + ": " + self.handle.before) |
| 390 | main.cleanup() |
| 391 | main.exit() |
Jon Hall | 668ed80 | 2014-04-08 17:17:59 -0700 | [diff] [blame] | 392 | return response |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 393 | |
| 394 | def nodes(self): |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 395 | main.log.info(self.name+": List all nodes.") |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 396 | try: |
| 397 | response = self.execute(cmd = 'nodes',prompt = 'mininet>',timeout = 10) |
| 398 | except pexpect.EOF: |
| 399 | main.log.error(self.name + ": EOF exception found") |
| 400 | main.log.error(self.name + ": " + self.handle.before) |
| 401 | main.cleanup() |
| 402 | main.exit() |
Jon Hall | 668ed80 | 2014-04-08 17:17:59 -0700 | [diff] [blame] | 403 | return response |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 404 | |
| 405 | def pingpair(self): |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 406 | main.log.info(self.name+": Ping between first two hosts") |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 407 | try: |
| 408 | response = self.execute(cmd = 'pingpair',prompt = 'mininet>',timeout = 20) |
| 409 | except pexpect.EOF: |
| 410 | main.log.error(self.name + ": EOF exception found") |
| 411 | main.log.error(self.name + ": " + self.handle.before) |
| 412 | main.cleanup() |
| 413 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 414 | |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 415 | #if utilities.assert_matches(expect='0% packet loss',actual=response,onpass="No Packet loss",onfail="Hosts not reachable"): |
| 416 | if re.search(',\s0\%\spacket\sloss',response): |
| 417 | main.log.info(self.name+": Ping between two hosts SUCCESSFUL") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 418 | main.last_result = main.TRUE |
| 419 | return main.TRUE |
| 420 | else : |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 421 | main.log.error(self.name+": PACKET LOST, HOSTS NOT REACHABLE") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 422 | main.last_result = main.FALSE |
| 423 | return main.FALSE |
| 424 | |
| 425 | def link(self,**linkargs): |
| 426 | ''' |
| 427 | Bring link(s) between two nodes up or down |
| 428 | ''' |
| 429 | main.log.info('Bring link(s) between two nodes up or down') |
| 430 | args = utilities.parse_args(["END1","END2","OPTION"],**linkargs) |
| 431 | end1 = args["END1"] if args["END1"] != None else "" |
| 432 | end2 = args["END2"] if args["END2"] != None else "" |
| 433 | option = args["OPTION"] if args["OPTION"] != None else "" |
| 434 | command = "link "+str(end1) + " " + str(end2)+ " " + str(option) |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 435 | try: |
Jon Hall | e80ef8c | 2014-04-29 15:29:13 -0700 | [diff] [blame] | 436 | #response = self.execute(cmd=command,prompt="mininet>",timeout=10) |
| 437 | self.handle.sendline(command) |
| 438 | self.handle.expect("mininet>") |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 439 | except pexpect.EOF: |
| 440 | main.log.error(self.name + ": EOF exception found") |
| 441 | main.log.error(self.name + ": " + self.handle.before) |
| 442 | main.cleanup() |
| 443 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 444 | return main.TRUE |
| 445 | |
| 446 | |
admin | 530b4c9 | 2013-08-14 16:54:35 -0700 | [diff] [blame] | 447 | def yank(self,**yankargs): |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 448 | ''' |
admin | 530b4c9 | 2013-08-14 16:54:35 -0700 | [diff] [blame] | 449 | yank a mininet switch interface to a host |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 450 | ''' |
admin | 530b4c9 | 2013-08-14 16:54:35 -0700 | [diff] [blame] | 451 | main.log.info('Yank the switch interface attached to a host') |
| 452 | args = utilities.parse_args(["SW","INTF"],**yankargs) |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 453 | sw = args["SW"] if args["SW"] !=None else "" |
| 454 | intf = args["INTF"] if args["INTF"] != None else "" |
| 455 | command = "py "+ str(sw) + '.detach("' + str(intf) + '")' |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 456 | try: |
| 457 | response = self.execute(cmd=command,prompt="mininet>",timeout=10) |
| 458 | except pexpect.EOF: |
| 459 | main.log.error(self.name + ": EOF exception found") |
| 460 | main.log.error(self.name + ": " + self.handle.before) |
| 461 | main.cleanup() |
| 462 | main.exit() |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 463 | return main.TRUE |
| 464 | |
| 465 | def plug(self, **plugargs): |
| 466 | ''' |
| 467 | plug the yanked mininet switch interface to a switch |
| 468 | ''' |
| 469 | main.log.info('Plug the switch interface attached to a switch') |
admin | 530b4c9 | 2013-08-14 16:54:35 -0700 | [diff] [blame] | 470 | args = utilities.parse_args(["SW","INTF"],**plugargs) |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 471 | sw = args["SW"] if args["SW"] !=None else "" |
| 472 | intf = args["INTF"] if args["INTF"] != None else "" |
| 473 | command = "py "+ str(sw) + '.attach("' + str(intf) + '")' |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 474 | try: |
| 475 | response = self.execute(cmd=command,prompt="mininet>",timeout=10) |
| 476 | except pexpect.EOF: |
| 477 | main.log.error(self.name + ": EOF exception found") |
| 478 | main.log.error(self.name + ": " + self.handle.before) |
| 479 | main.cleanup() |
| 480 | main.exit() |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 481 | return main.TRUE |
| 482 | |
| 483 | |
| 484 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 485 | def dpctl(self,**dpctlargs): |
| 486 | ''' |
Jon Hall | 41f40e8 | 2014-04-08 16:43:17 -0700 | [diff] [blame] | 487 | Run dpctl command on all switches. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 488 | ''' |
| 489 | main.log.info('Run dpctl command on all switches') |
| 490 | args = utilities.parse_args(["CMD","ARGS"],**dpctlargs) |
| 491 | cmd = args["CMD"] if args["CMD"] != None else "" |
| 492 | cmdargs = args["ARGS"] if args["ARGS"] != None else "" |
| 493 | command = "dpctl "+cmd + " " + str(cmdargs) |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 494 | try: |
| 495 | response = self.execute(cmd=command,prompt="mininet>",timeout=10) |
| 496 | except pexpect.EOF: |
| 497 | main.log.error(self.name + ": EOF exception found") |
| 498 | main.log.error(self.name + ": " + self.handle.before) |
| 499 | main.cleanup() |
| 500 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 501 | return main.TRUE |
| 502 | |
| 503 | |
| 504 | def get_version(self): |
| 505 | file_input = path+'/lib/Mininet/INSTALL' |
| 506 | version = super(Mininet, self).get_version() |
| 507 | pattern = 'Mininet\s\w\.\w\.\w\w*' |
| 508 | for line in open(file_input,'r').readlines(): |
| 509 | result = re.match(pattern, line) |
| 510 | if result: |
| 511 | version = result.group(0) |
| 512 | return version |
| 513 | |
| 514 | def get_sw_controller(self,sw): |
| 515 | command = "sh ovs-vsctl get-controller "+str(sw) |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 516 | try: |
| 517 | response = self.execute(cmd=command,prompt="mininet>",timeout=10) |
| 518 | except pexpect.EOF: |
| 519 | main.log.error(self.name + ": EOF exception found") |
| 520 | main.log.error(self.name + ": " + self.handle.before) |
| 521 | main.cleanup() |
| 522 | main.exit() |
| 523 | else: |
| 524 | main.log.info(response) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 525 | |
| 526 | def assign_sw_controller(self,**kwargs): |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 527 | ''' |
| 528 | count is only needed if there is more than 1 controller |
| 529 | ''' |
| 530 | args = utilities.parse_args(["COUNT"],**kwargs) |
| 531 | count = args["COUNT"] if args!={} else 1 |
| 532 | |
| 533 | argstring = "SW" |
| 534 | for j in range(count): |
| 535 | argstring = argstring + ",IP" + str(j+1) + ",PORT" + str(j+1) |
| 536 | args = utilities.parse_args(argstring.split(","),**kwargs) |
| 537 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 538 | sw = args["SW"] if args["SW"] != None else "" |
admin | 530b4c9 | 2013-08-14 16:54:35 -0700 | [diff] [blame] | 539 | ptcpA = int(args["PORT1"])+int(sw) if args["PORT1"] != None else "" |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 540 | ptcpB = "ptcp:"+str(ptcpA) if ptcpA != "" else "" |
| 541 | |
| 542 | command = "sh ovs-vsctl set-controller s" + str(sw) + " " + ptcpB + " " |
| 543 | for j in range(count): |
| 544 | i=j+1 |
| 545 | args = utilities.parse_args(["IP"+str(i),"PORT"+str(i)],**kwargs) |
| 546 | ip = args["IP"+str(i)] if args["IP"+str(i)] != None else "" |
| 547 | port = args["PORT" + str(i)] if args["PORT" + str(i)] != None else "" |
| 548 | tcp = "tcp:" + str(ip) + ":" + str(port) + " " if ip != "" else "" |
| 549 | command = command + tcp |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 550 | try: |
| 551 | self.execute(cmd=command,prompt="mininet>",timeout=5) |
| 552 | except pexpect.EOF: |
| 553 | main.log.error(self.name + ": EOF exception found") |
| 554 | main.log.error(self.name + ": " + self.handle.before) |
| 555 | main.cleanup() |
| 556 | main.exit() |
| 557 | except: |
| 558 | main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 559 | main.log.error( traceback.print_exc() ) |
| 560 | main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 561 | main.cleanup() |
| 562 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 563 | |
Jon Hall | 0819fd9 | 2014-05-23 12:08:13 -0700 | [diff] [blame] | 564 | def delete_sw_controller(self,sw): |
| 565 | ''' |
| 566 | Removes the controller target from sw |
| 567 | ''' |
| 568 | |
| 569 | command = "sh ovs-vsctl del-controller "+str(sw) |
| 570 | try: |
| 571 | response = self.execute(cmd=command,prompt="mininet>",timeout=10) |
| 572 | except pexpect.EOF: |
| 573 | main.log.error(self.name + ": EOF exception found") |
| 574 | main.log.error(self.name + ": " + self.handle.before) |
| 575 | main.cleanup() |
| 576 | main.exit() |
| 577 | else: |
| 578 | main.log.info(response) |
| 579 | |
| 580 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 581 | def disconnect(self): |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 582 | main.log.info(self.name+": Disconnecting mininet...") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 583 | response = '' |
| 584 | if self.handle: |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 585 | try: |
| 586 | response = self.execute(cmd="exit",prompt="(.*)",timeout=120) |
| 587 | response = self.execute(cmd="exit",prompt="(.*)",timeout=120) |
Jon Hall | e80ef8c | 2014-04-29 15:29:13 -0700 | [diff] [blame] | 588 | self.handle.sendline("sudo mn -c") |
Jon Hall | 6094a36 | 2014-04-11 14:46:56 -0700 | [diff] [blame] | 589 | except pexpect.EOF: |
| 590 | main.log.error(self.name + ": EOF exception found") |
| 591 | main.log.error(self.name + ": " + self.handle.before) |
| 592 | main.cleanup() |
| 593 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 594 | else : |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 595 | main.log.error(self.name+": Connection failed to the host") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 596 | response = main.FALSE |
| 597 | return response |
admin | 0752993 | 2013-11-22 14:58:28 -0800 | [diff] [blame] | 598 | |
| 599 | def arping(self, src, dest, destmac): |
| 600 | self.handle.sendline('') |
Jon Hall | 333fa8c | 2014-04-11 11:24:58 -0700 | [diff] [blame] | 601 | self.handle.expect(["mininet",pexpect.EOF,pexpect.TIMEOUT]) |
admin | 0752993 | 2013-11-22 14:58:28 -0800 | [diff] [blame] | 602 | |
| 603 | self.handle.sendline(src + ' arping ' + dest) |
| 604 | try: |
Jon Hall | 333fa8c | 2014-04-11 11:24:58 -0700 | [diff] [blame] | 605 | self.handle.expect([destmac,pexpect.EOF,pexpect.TIMEOUT]) |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 606 | main.log.info(self.name+": ARP successful") |
Jon Hall | 333fa8c | 2014-04-11 11:24:58 -0700 | [diff] [blame] | 607 | self.handle.expect(["mininet",pexpect.EOF,pexpect.TIMEOUT]) |
admin | 0752993 | 2013-11-22 14:58:28 -0800 | [diff] [blame] | 608 | return main.TRUE |
| 609 | except: |
Jon Hall | f2942ce | 2014-04-10 16:00:16 -0700 | [diff] [blame] | 610 | main.log.warn(self.name+": ARP FAILURE") |
Jon Hall | 333fa8c | 2014-04-11 11:24:58 -0700 | [diff] [blame] | 611 | self.handle.expect(["mininet",pexpect.EOF,pexpect.TIMEOUT]) |
admin | 0752993 | 2013-11-22 14:58:28 -0800 | [diff] [blame] | 612 | return main.FALSE |
| 613 | |
| 614 | def decToHex(num): |
| 615 | return hex(num).split('x')[1] |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 616 | |
| 617 | if __name__ != "__main__": |
| 618 | import sys |
| 619 | sys.modules[__name__] = MininetCliDriver() |