02-06-2018 11:22 AM - edited 02-21-2020 07:17 AM
Solved! Go to Solution.
02-13-2018 01:23 PM
02-06-2018 06:45 PM
Hi
You have 2 choices.
If you have enough public IPs you can do a static 1:1 nat and filter all ports within outside acl.
Or you can create your nat based on ports range like:
object network FTPsrv
host 10.10.31.159
object service PassiveFTP
service tcp destination range 50000 51000
nat (outside,inside) source static any any destination static YourPublicIP FTPsrv services PassiveFTP PassiveFTP
!
access-list outside_access_in extended permit tcp any host 10.10.31.159 range 50000 51000
You'll need to create another 2 nat for other ports 21 and 990.
Can you test that and let me know?
02-07-2018 05:15 AM
Ok, I'm trying your config entry
==
interface Ethernet0/0
description outside
nameif BH
security-level 0
ip address 99.199.xx.xx 255.255.255.248 standby 99.199.xx.xx
!
object network BH_Interface
host 99.199.xx.xx
!
object network FTP_APACHE01
host 10.10.31.159
object service PassiveFTP
service tcp destination range 50000 51000
nat (BH,inside) source static any any destination static BH_Interface FTP_APACHE01 service PassiveFTP PassiveFTP
!
access-list BH extended permit tcp any host 10.10.31.159 range 50000 51000
==
I entered "object network FTP_APACHE01", that goes through.
I entered "object service PassiveFTP", that goes through.
However, when I try your following config line:
nat (outside,inside) source static any any destination static YourPublicIP FTPsrv services PassiveFTP PassiveFTP
Here's mine:
nat (BH,inside) source static any any destination static BH_Interface FTP_APACHE01 service PassiveFTP PassiveFTP
!
GBSP-FW1(config-service-object)# nat (BH,inside) source static any any destination static BH_Interface FTP_APACHE01 service PassiveFTP PassiveFTP
ERROR: Address 99.199.xx.xx overlaps with BH interface address.
ERROR: NAT Policy is not downloaded
GBSP-FW1(config)#
What I'm I missing?
02-07-2018 04:02 PM
02-13-2018 01:23 PM
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide