如何将Python的cmd类的输入/输出传递给另一个Python进程?

时间:2016-06-01 06:11:18

标签: python linux cmd subprocess piping

目前,我正在使用Mininet-Wifi进行实验。它的CLI是Python的 Cmd 模块,这就是我能够获得有关模拟网络环境的准确信息的方法。模拟器在Ubuntu 14.04或更高版本上以 sudo python 的形式运行。

此网络的遥控器为POX。这次,只有一个脚本在运行;一切都通过预设命令实现自动化 - 不再需要人工干预。我想做的是:POX过程需要将命令注入Mininet的进程并检索该命令的执行结果。这是因为POX的逻辑必须通过Mininet不断查询网络状态才能做出决策。做出决定后,POX必须再次向Mininet流程注入一个命令来改变网络状态。

ADDENDUM:目前,由于名为 m 的实用程序功能,我只能在运行 sudo python a_mininet_script 时访问由Mininet生成的主机。产生主机后,Mininet进入其CLI功能,这是我想要与之通信但不能。这是Mininet的 m 功能。

#!/bin/bash
# Attach to a Mininet host and run a command

if [ -z $1 ]; then
  echo "usage: $0 host cmd [args...]"
  exit 1
else
  host=$1
fi

pid=`ps ax | grep "mininet:$host$" | grep bash | grep -v mnexec | awk '{print $1};'`

if echo $pid | grep -q ' '; then
  echo "Error: found multiple mininet:$host processes"
  exit 2
fi

if [ "$pid" == "" ]; then
  echo "Could not find Mininet host $host"
  exit 3
fi

if [ -z $2 ]; then
  cmd='bash'
else
  shift
  cmd=$*
fi

cgroup=/sys/fs/cgroup/cpu/$host
if [ -d "$cgroup" ]; then
  cg="-g $host"
fi

# Check whether host should be running in a chroot dir
rootdir="/var/run/mn/$host/root"
if [ -d $rootdir -a -x $rootdir/bin/bash ]; then
    cmd="'cd `pwd`; exec $cmd'"
    cmd="chroot $rootdir /bin/bash -c $cmd"
fi

cmd="exec sudo mnexec $cg -a $pid $cmd"
eval $cmd

例如,要从任何终端而不是POX脚本访问 h1 的终端,我会这样称呼它:

sh m h1 ifconfig

但要从子流程调用它,它将是:

p = subprocess.Popen('echo my passwd | sudo -kS sh m h1 ifconfig', shell = True)

要重复我的问题,我想与来自POX控制器的Mininet进程的CLI进行通信,而不仅仅是生成的主机。

1 个答案:

答案 0 :(得分:0)

我想你想要实现类似netstat -oan |的功能findstr 80(这是在Windows上找到端口80),这是将netstat -oan的输出传递给命令findstr的管道命令。

然后python代码就像:

import subprocess

p1 = subprocess.Popen('netstat -oan', stdout=subprocess.PIPE, shell=True)
p2 = subprocess.Popen('findstr 80', stdin=p1.stdout, stdout=subprocess.PIPE, shell=True)
pipeline_output = p2.communicate()[0]
print pipeline_output

然后,p1过程输出将传递给p2过程,FYI。