This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Netcat server command | |
nc -l -p <unused port # > /dev/null | |
eg: | |
nc -l -p 1122 > /dev/null | |
## Netcat Client command | |
dd if=/dev/zero bs=100M count=1 | nc <netcat server> <netcat port> | |
eg: | |
dd if=/dev/zero bs=100M count=1 | nc 10.0.1.251 1122 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###################### | |
## shadowsocks-libev | |
###################### | |
# install dependencies | |
yum install epel-release -y | |
yum install gcc gettext autoconf libtool automake make pcre-devel asciidoc xmlto udns-devel libev-devel -y | |
# install shadowsocks-libev | |
cd /etc/yum.repos.d/ |