Hardware: MikroTik RouterBoard 750GL
OS version: "5.2"
I followed the "port mapping" instruction in the following page:
http://wiki.mikrotik.com/wiki/Manual:IP ... rt_mapping
The command I use is :
Code: Select all
/ip firewall nat add chain=dstnat dst-address=xx.xxx.xxx.xxx protocol=tcp dst-port=3000 action=dst-nat to-addresses=192.168.88.237 to-ports=3000
Before I add the rule, telnet command returns:
Code: Select all
# telnet xx.xxx.xxx.xxx 3000
Trying xx.xxx.xxx.xxx...
telnet: connect to address xx.xxx.xxx.xxx: Connection refused
Code: Select all
# telnet xx.xxx.xxx.xxx 3000
Trying xx.xxx.xxx.xxx...
telnet: connect to address xx.xxx.xxx.xxx: Connection timed out
Code: Select all
$ ssh -v user@xx.xxx.xxx.xxx -p 3000
OpenSSH_5.3p1, OpenSSL 1.0.0-fips 29 Mar 2010
debug1: Reading configuration data /home/user/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to xx.xxx.xxx.xxx [xx.xxx.xxx.xxx] port 3000.
debug1: connect to address xx.xxx.xxx.xxx port 3000: Connection timed out
Please help.