not netcat, it is ssh
install openssh server
$ sudo apt install openssh-server
check status ssh
$ sudo systemctl status ssh
if not work it ssh
$ sudo systemctl enable ssh
$ sudo systemctl start ssh
access the target server from client, if you had key-file, to include -i option.
$ ssh -R server_port:localhost:client_port user@server_ip
$ ssh -nNT -o TCPKeepAlive=yes -R server_port:127.0.0.1:client_port user@server_ip
'보안' 카테고리의 다른 글
[CURL] linux에서 활용하기 (0) | 2014.11.28 |
---|---|
[보안/교육] 아카데미 사이트 (0) | 2013.07.18 |
BackTrack5 한글 패치하기 (0) | 2013.03.27 |