Hi,
I want to receive Ascii data on port 9123 and send it forward to many other IP's on the same port or different ports. How can I do it.
I know that i can use "netcat" to catch network data
netcat -l -p 9123 >> net-data.txt &
I can look at the data using "tail"
tail -f net-data.txt
But how can I send this data forward to other ip addesses?
For example:
10.100.2.30 at port 9123
172.16.18.50 at port 32110
192.168.24.4 at port 5111
regards
K
I want to receive Ascii data on port 9123 and send it forward to many other IP's on the same port or different ports. How can I do it.
I know that i can use "netcat" to catch network data
netcat -l -p 9123 >> net-data.txt &
I can look at the data using "tail"
tail -f net-data.txt
But how can I send this data forward to other ip addesses?
For example:
10.100.2.30 at port 9123
172.16.18.50 at port 32110
192.168.24.4 at port 5111
regards
K