我正在尝试使用socat将流量从UDP 162重定向到10162端口。我可以这样使用:
sudo socat UDP4-RECVFROM:162,叉UDP4-SENDTO:localhost:10162
然后,我将从主机dummy.foo发送SNMP陷阱到UDP 162端口。问题在于UDP数据报如下:
PDU INFO:
notificationtype TRAP
version 0
receivedfrom UDP: [127.0.0.1]:46960->[127.0.0.1]:10162
errorstatus 0
messageid 0
community public
transactionid 8
errorindex 0
requestid 0
如何“保留”发件人IP地址(dummy.foo),而不显示回送接口(127.0.0.1)?
谢谢!