7 lines
284 B
Bash
7 lines
284 B
Bash
#!/bin/bash
|
|
|
|
#Ubuntu 16.04 -> ip=$(ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}')
|
|
ip=$(ifconfig eth0 | grep 'inet' | cut -d: -f2 | awk '{ print $2}')
|
|
socat tcp-listen:5554,bind=$ip,fork tcp:127.0.0.1:5554 &
|
|
socat tcp-listen:5555,bind=$ip,fork tcp:127.0.0.1:5555
|