2

我正在尝试对我的后缀进行故障排除,因此我决定通过 netcat 中继将其流量路由到我的 isp smtp 中继:

nc -l <someport> 0<backpipe | nc <isp-smtp> 26 | tee backpipe

我将我的后缀配置为连接到 localhost:。但是要让 netcat 中继工作,它需要一个 FIFO 管道mknod backpipe p ,显然这在 OS X 上不受支持。

是否有另一种方法可以设置我可以监控的 TCP 中继,或者我可以使用其他方法来观看 postfix 和我的 isp smtp 之间的闲聊?

4

1 回答 1

6

Under Leopard, mkfifo is in /usr/bin. Not sure about prior.

/usr/bin/mkfifo backpipe

personally I'd recommend using tcpdump and/or wireshark, it gives you a nicer view of the traffic too.

于 2009-07-16T05:42:40.597 回答