在我的班级(扩展 SimpleChannelHandler)中,我试图获取最初发送消息的 ip。
@Override
public void messageReceived(ChannelHandlerContext ctx, MessageEvent ev) throws Exception {
String host = ((InetSocketAddress)ctx.getChannel().getRemoteAddress()).getAddress().getHostAddress();
int port = ((InetSocketAddress)ctx.getChannel().getRemoteAddress()).getPort();
LOG.debug(String.format("host:%s port:%d", host, port));
..
这将打印 ip 10.0.0.1(网关),而不是正确的客户端地址 (10.52.45.4)。
有什么方法可以获取我想要的 ip,或者网络配置有问题吗?