13-F - W Config, VPN Config, IOS IPS Configuration, Hardware F - w-14-03-2024
13-F - W Config, VPN Config, IOS IPS Configuration, Hardware F - w-14-03-2024
The task is to enable IPS on Router0 to scan traffic entering the 192.168.1.0 network.
2. Configure the PCs and Routers with IPv4 address and Subnet Mask according to the table:
Device IP Mask
PC0 192.168.1.2 255.255.255.0
PC1 192.168.3.2 255.255.255.0
Router 0 192.168.1.1 255.255.255.0
10.1.1.1 255.255.255.252
Router 1 192.168.3.1 255.255.255.0
10.2.2.1 255.255.255.252
Router 2 10.1.1.2 255.255.255.252
10.2.2.2 255.255.255.252
Server 192.168.1.3 255.255.255.0
Router 1:
Router(config)#ip route 0.0.0.0 0.0.0.0 10.2.2.2
Router 2:
Router(config)#ip route 192.168.1.0 255.255.255.0 10.1.1.1
Router(config)#ip route 192.168.3.0 255.255.255.0 10.2.2.1
Part 1: Enable IOS IPS
Within Packet Tracer, the routers already have the signature files imported and in place. They are
the default xml files in flash. For this reason, it is not necessary to configure the public crypto key
and complete a manual import of the signature files.
Router(config)#int g0/0
Router(config-if)#ip ips iosexecute out
Router(config-if)#exit
Router(config)#logging host 192.168.1.3 (server address in the design)
Router(config)#service timestamps log datetime msec
Unretire the echo request signature (signature 2004, subsig ID 0) enable it, and change the signature
action to alert and drop.
Q1. To which interfaces and in which direction is the ios_ips rule applied?
A firewall is a network security device that monitors incoming and outgoing network traffic and
decides whether to allow or block specific traffic based on a defined set of security rules. A firewall
can be hardware, software, or both. The Cisco ASA 5505 is a full-featured firewall for small business,
branch, and enterprise teleworker environments.
Assign IP on the Cisco ASA and ISP router and set the int inside and outside on the cisco ASA.
Security levels:
Inside = 100
Outside = 0
DMZ = 1-99
1. Goto PC2->Desktop->Terminal and click OK. In the terminal, enter the commands:
ciscoasa>enable
ciscoasa#show running-config
SS-1: Paste the output of the running configuration(include vlan 1 and 2 settings, dhcp settings).
Q1. Answer the following from the output:
What are the current security levels at vlan 1 and vlan 2?
What is the IP address at vlan 1?
What is the IP address range available at the DHCP?
Now, remove the IP from interface vlan1, and remove the DHCP address range.
ciscoasa#configure terminal
ciscoasa(config)#int vlan1
ciscoasa(config-if)#no ip address
ciscoasa(config-if)#exit
ciscoasa(config)# no dhcpd address <the address range obtained from show running-config
output> inside. (e.g., no dhcpd address 192.168.1.5-192.168.1.36 inside)
ciscoasa(config)#exit
ciscoasa#show running-config
SS-2: Paste the output of the running configuration(include vlan 1 and 2 settings, dhcp settings).
ciscoasa#configure terminal
ciscoasa(config)#int vlan 1
ciscoasa(config-if)#ip address 172.16.1.1 255.255.255.0
ciscoasa(config-if)#nameif inside
ciscoasa(config-if)#security-level 100
ciscoasa(config-if)#exit
ciscoasa(config)#int e0/1
ciscoasa(config-if)#switchport access vlan 1
ciscoasa(config-if)#exit
ciscoasa(config)#int vlan 2
ciscoasa(config-if)#ip address 203.1.1.2 255.255.255.0
ciscoasa(config-if)#no shutdown
ciscoasa(config-if)#nameif outside
ciscoasa(config-if)#security-level 0
ciscoasa(config-if)#exit
ciscoasa(config)#int e0/0
ciscoasa(config-if)#switchport access vlan 2
ciscoasa(config-if)#
SS-3: Paste the output of the running configuration(include vlan 1 and 2 settings).
ISP(config)#int fa0/1
ISP(config-if)#ip address 8.8.8.1 255.0.0.0
ISP(config-if)#no shutdown
ISP(config-if)#exit
ISP(config)#exit
Set the IP address at the google.com server as 8.8.8.8. Now, ping the router addresses from
the google server.
Q2. Is the server able to ping the Router addresses?
2. Configure DHCP server and DNS server on Cisco ASA. The IP address range should be as
follows: 172.16.1.5 – 172.16.1.6
Goto PC0 and PC1 and check the IP address in the IP configuration window.
SS-5: Paste the IP configuration screen that displays the addresses given to PC0 and PC1.
3. Configure default route on Cisco ASA and dynamic route on Cisco ISP (OSPF 1).
In cisco ASP terminal
ciscoasa#configure terminal
ciscoasa(config)#route outside 0.0.0.0 0.0.0.0 203.1.1.1