CISCO Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is a CISCO ASA firewall?

A

Border network protection..Cisco ASA is a security device that provides Border network Protection

It does this by combining some features of a:

  1. firewall
  2. antivirus
  3. intrusion prevention and
  4. Virtual private network (VPN) capabilities.

It provides proactive threat defense that stops attacks before they spread through the network.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you configure the Access List on a Cisco ASA firewall.

A

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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What have you done with Routers?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What have you done with Switches?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly