Dual firewall DMZ network PacketTracer configuration ==================================================== In this lab I challenged myself with creating a network with a working DMZ server and two firewalls. .. image:: _static/dualfwDMZ.jpg Here are the configs for each device: ---- **LANRouter** .. code:: clojure ! ! DMZ interface ! interface GigabitEthernet0/0/0 ip address 192.168.1.1 255.255.255.0 duplex auto speed auto ! ! LAN interface on 10.x ! interface GigabitEthernet0/0/1 ip address 10.0.0.1 255.0.0.0 duplex auto speed auto ! ! Unused ! interface GigabitEthernet0/0/2 no ip address duplex auto speed auto shutdown ! ! Unused ! interface Vlan1 no ip address shutdown ---- **EdgeRouter** .. code:: clojure ! ! DMZ interface ! interface GigabitEthernet0/0/0 ip address 192.168.2.1 255.255.255.0 duplex auto speed auto ! ! Unused ! interface GigabitEthernet0/0/1 no ip address duplex auto speed auto ! ! Unused ! interface GigabitEthernet0/0/2 no ip address duplex auto speed auto ! ! Unused ! interface Vlan1 no ip address shutdown ---- **Stay tuned** advanced network design soon