02-02-2012 10:36 PM - edited 03-11-2019 03:23 PM
Hi,
I wanted to know how to create two DMZ with different network. 10.0.1.0 and 10.0.2.0.
Also, I want to know how the inside interface can have access on them
Thanks
Harold
02-03-2012 01:22 AM
Harold,
What hardware are you using for this?
Andy.
02-03-2012 02:36 AM
subinterface and do.
02-03-2012 08:01 AM
I'm using Cisco 5505. The software is ver 8.2
Sent from my iPad
02-03-2012 01:51 PM
Hello,
If you have the base license you will not be able to do it ( will need to get the security plus license)
Just in case you have the security plus license
-Interface vlan 3
-nameif dmz1
-ip add 10.0.1.1 255.255.255.0
-no shut
-security level 50
interface ethernet 0/3
switchport access vlan 3
-Interface vlan 4
-nameif dmz2
-ip add 10.0.2.1 255.255.255.0
-no shut
-security level 50
interface ethernet 0/4
switchport access vlan 4
Inside interface or vlan usually has a security level of 100 so you do not need any ACL to allow the communication, all you need is
nat (inside) 1 0 0
global (dmz1) 1 interface
global (dmz2) 1 interface
Do Rate all the helpful posts!!!
Julio
02-06-2012 08:53 AM
Thank you for the info. I appreciate it. I will try this config and will let you know.
02-06-2012 09:40 AM
If you set both interfaces as the same security level they will not be able to communicate by default. You can
change this with a configuration command. So if those 2 interfaces are NOT to communicate the configuration
that jcarva suggested would be an easy solution
02-06-2012 09:41 AM
Thank you. I appreciate it. I will try this and will let you know.
02-06-2012 09:42 AM
Hello Harold,
Sure, just let me know.. I will be more than glad to help and follow up this ticket.
Regards,
Julio
Do rate all the helpful posts!!!
02-06-2012 07:00 PM
Hi,
I had tried it but still can not access it from the Internet? Would you know how the users access the DMz1 using port sftp? And Dmz2 using port 80?
My outside ip Interfaces is 12.0.12.84
Thanks
02-06-2012 09:24 PM
Hello,
So you are running a security plus license!
Ok lets say they need to access DMZ2 web server with ip address 192.168.12.2
and DMZ1 with a SFTP server with the ip of 192.168.13.2
So he will receive inbound connections from the outside:
static (dmz1,outside) tcp 12.0.12.84 80 192.168.13.2 80
static (dmz2,outside) tcp 12.0.12.84 222 192.168.13.2 22
access-list outside_in permit tcp any host 12.0.12.84 eq 80
access-list outside_in permit tcp any host 12.0.12.84 eq 222
access-group outside_in in interface outside
Regards,
Julio
Do rate all helpful hosts
02-06-2012 09:26 PM
Thank you.. I will try this. I appreciate it.
02-06-2012 09:28 PM
Quick question: is the sftp protocol number is 222 or 22 only?
Yes, I'm using a security plus license. Thank you.
02-06-2012 09:53 PM
Hello,
It uses port 22!
Do rate all the helpful posts!!!
Julio
02-09-2012 07:44 PM
It works well. Thanks
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