I set up Linux system with xinetd, however it can't run exactly as I want. My purpose is redirect from forcus IP to another IP. This is the configuration file:
Quote:
service telnet
{
disable= no
flags = REUSE
socket_type = stream
protocol = tcp
wait = no
user = root
bind = 192.168.1.10
redirect = 192.168.1.31
}
|
Then, I restart xinet. type: #telnet 192.168.1.10, and no action appear, I still connect to 192.168.1.10
Please help me solve this problem. How to redirect to 192.168.1.31 when i telnet to 192.168.1.10
Thanks