Index: tools/ew.py
===================================================================
--- tools/ew.py	(revision 850235d404a93a3e011befe27ef139ef8e288759)
+++ tools/ew.py	(revision 05bab88f6a2578787b9598ccdf1e856cfdbd2828)
@@ -39,5 +39,5 @@
 def run_in_console(cmd, title):
 	cmdline = 'xterm -T ' + '"' + title + '"' + ' -e ' + cmd
-	print cmdline
+	print(cmdline)
 	subprocess.call(cmdline, shell = True);
 
@@ -81,5 +81,5 @@
 def qemu_net_options():
 	nic_options = qemu_nic_e1k_options()
-	return nic_options + ' -net user -redir udp:8080::8080 -redir udp:8081::8081 -redir tcp:8080::8080 -redir tcp:8081::8081'
+	return nic_options + ' -net user -redir udp:8080::8080 -redir udp:8081::8081 -redir tcp:8080::8080 -redir tcp:8081::8081 -redir tcp:2223::2223'
 
 def qemu_usb_options():
@@ -114,5 +114,5 @@
 		run_in_console(cmdline, title)
 	else:
-		print cmdline
+		print(cmdline)
 		subprocess.call(cmdline, shell = True)
 		
@@ -159,5 +159,5 @@
 		emu_run, console, image, networking, storage, usb = emulators[platform][mach]
 	except:
-		print "Cannot start emulation for the chosen configuration."
+		print("Cannot start emulation for the chosen configuration.")
 		return
 
