Hello,
I have having a super tough time getting port forwarding to work for Plesk and Proxmox. I have a dynamic IP provided by my ISP. I have watched tons of youtube videos without any luck
[admin@MikroTik] > export
# oct/03/2015 11:53:59 by RouterOS 6.32.2
# software id = GCFQ-PP3L
#
/interface bridge
add name=bridge1
/interface ethernet
set [ find default-name=ether1 ] comment=WAN
set [ find default-name=ether2 ] comment="LAN - All ports are switched off ether2"
set [ find default-name=ether3 ] master-port=ether2
set [ find default-name=ether4 ] master-port=ether2
set [ find default-name=ether5 ] master-port=ether2
/ip neighbor discovery
set ether1 comment=WAN
set ether2 comment="LAN - All ports are switched off ether2"
/interface wireless security-profiles
add authentication-types=wpa2-psk eap-methods="" management-protection=allowed mode=dynamic-keys name=WPA2 supplicant-identity="" wpa-pre-shared-key=6022004356 wpa2-pre-shared-key=6022004356
/interface wireless
set [ find default-name=wlan1 ] band=2ghz-b/g/n dfs-mode=no-radar-detect disabled=no mode=ap-bridge security-profile=WPA2 ssid="The Horde" wireless-protocol=802.11
/ip pool
add name=dhcp ranges=192.168.1.2-192.168.1.254
/ip dhcp-server
add address-pool=dhcp disabled=no interface=bridge1 name=dhcp1
/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=wlan1
/ip address
add address=192.168.1.1/24 comment="Lan IP Subnet" interface=ether2 network=192.168.1.0
/ip dhcp-client
add default-route-distance=0 dhcp-options=hostname,clientid disabled=no interface=ether1
/ip dhcp-server network
add address=192.168.1.0/24 dns-server=192.168.1.1 gateway=192.168.1.1
/ip dns
set allow-remote-requests=yes servers=8.8.8.8
/ip firewall address-list
add address=192.168.1.0/24 list=OurLocalLan
add address=192.168.88.0/24 list=OurLocalLan
/ip firewall filter
add chain=input comment="Allow Access to router from LAN using address list" src-address-list=OurLocalLan
add chain=input comment="Allow Proxmox" dst-port=8006 protocol=tcp
add chain=forward dst-address-type=local dst-port=8006 protocol=tcp
add chain=forward dst-port=1002 protocol=tcp
add action=drop chain=forward comment="drop invalid connections" connection-state=invalid
add chain=forward comment="Allow connections from the LAN" connection-state=new in-interface=bridge1
add chain=forward comment="Allow established connections" connection-state=established
add chain=forward comment="Allow related connections" connection-state=related
add chain=input comment="Allow established connections to the router" connection-state=established
add chain=input comment="Allow related connections to the router" connection-state=related
add action=drop chain=input comment="drop all other traffic through the router"
add action=drop chain=forward comment="Drop all other traffic through the router"
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ether1
add action=dst-nat chain=dstnat dst-address-type=local dst-port=8006 protocol=tcp to-addresses=192.168.1.6 to-ports=8006
add action=dst-nat chain=dstnat dst-port=1002 log=yes log-prefix=proxmox protocol=tcp to-addresses=192.168.1.6 to-ports=8006
add action=dst-nat chain=dstnat dst-address-type=local dst-port=32400 protocol=tcp to-addresses=192.168.1.213 to-ports=32400
add action=dst-nat chain=dstnat dst-address-type=local dst-port=32400 protocol=udp to-addresses=192.168.1.213 to-ports=32400
/ip upnp interfaces
add interface=bridge1 type=internal
/lcd interface pages
set 0 interfaces=sfp1,ether1,ether2,ether3,ether4,ether5,ether6,ether7,ether8,ether9,ether10
/system clock
set time-zone-autodetect=no time-zone-name=America/Phoenix
/system ntp client
set enabled=yes primary-ntp=96.44.154.34 secondary-ntp=63.240.161.99
[admin@MikroTik] >
Hopefully I am missing something simple.