Come connettersi a un box Linux sulla porta 3389 (RHEL5)
Sfortunatamente, la porta 22 è bloccata da molti firewall e i tunnel possono aprire falle di sicurezza, quindi l'approccio migliore è impostare ssh e NX per l'ascolto sulla porta 3389 invece dello standard 22 che potrebbe confondere la maggior parte degli hacker
Configura OpenBSD per ascoltare la porta 3389
vim /etc/ssh/sshd_config
Port 3389
service sshd restart
Scarica NX Client per Windows sul sito ftp RHEL
wget http://64.34.173.142/download/3.5.0/Windows/nxclient-3.5.0-9.exe
Scarica NX Free Edition per Linux
wget http://64.34.173.142/download/3.5.0/Linux/nxclient-3.5.0-7.i386.rpm
wget http://64.34.173.142/download/3.5.0/Linux/nxnode-3.5.0-9.i386.rpm
wget http://64.34.173.142/download/3.5.0/Linux/FE/nxserver-3.5.0-11.i386.rpm
Come root: installa NX in questo ordine
rpm –ivh nxclient-3.5.0-7.i386.rpm
rpm –ivh nxnode-3.5.0-9.i386.rpm
rpm –ivh nxserver-3.5.0-11.i386.rpm
Configurare NX per la porta 3389
vim /usr/NX/etc /node.cfg
#
# Specify the TCP port where the NX node SSHD daemon is running.
#
SSHDPort = "3389"
vim /usr/NX/etc /server.cfg
#
# Specify the TCP port where the NX server SSHD daemon is running.
#
SSHDPort = "3389"
service nxsensor restart
nxserver --daemon restart