CISCO Flashcards
What is a CISCO ASA firewall?
Border network protection..Cisco ASA is a security device that provides Border network Protection
It does this by combining some features of a:
- firewall
- antivirus
- intrusion prevention and
- Virtual private network (VPN) capabilities.
It provides proactive threat defense that stops attacks before they spread through the network.
How do you configure the Access List on a Cisco ASA firewall.
start with access-list
#access-list then give it a name #access-list Flor01 then a permit or deny permission #access-list Flor01 permit then define protocol type. #access-list Flor01 permit tcp then a source IP address. #access-list Flor01 permit tcp 10.10.1.0 then the mask. #access-list Flor01 permit tcp 10.10.1.0 255.255.255.0 then add destination #access-list Flor01 permit tcp 10.10.1.0 255.255.255.0 any eq www (any www. * address) This is an outbound rule.
What have you done with Routers?
In the real world I’ve tweaked existing config to meet the needs of standing up a new client network. This included installation and cabling.
What have you done with Switches?
Primarily checked to make sure ports were up or down. privileged mode key #show interfaces status. and changing their status or attributes of ports:
switch# config t ///To enter global configuration.
switch(config)# interface 01 no shutdown to bring it up or shutdown to bring it down.
I’ve used Traceroute to see where the route stopped in troubleshooting. ex. trace ip www.google.com
Configure the ip address first you have to enter from global configuration mode to interface vlan 1.
Switch#
Switch#conf t
Switch(config)#int vlan 1
Switch(config-if)#ip address {your ip address} {mask}
Switch(config-if)#no shutdown
Configuration of default gateway takes place in the configuration mode and the command does not include the mask for the ip.
Switch#
Switch#conf t
Switch(config)#ip default-gateway {ip address}
and set passwords.
Switch#
Switch#conf t
Switch(config)#line vty 0 15
Switch(config-line)#password {your password}
Switch(config-line)#login
Switch(config-line)#exit
Switch(config)#enable secret {your enable password}
Switch(config)#end
Switch#write