Xtras Flashcards

1
Q

What does ZBF stand for?

A

Zone-Based Firewall

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

What is the purpose of ZBF?

A

To control traffic between security zones using stateful inspection.

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

What command defines a new security zone?

A

zone security [ZONE_NAME]

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

What command assigns an interface to a zone?

A

zone-member security [ZONE_NAME]

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

What is a zone-pair?

A

A configuration that defines allowed traffic between a source and destination zone.

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

What command creates a zone-pair?

A

zone-pair security [PAIR_NAME] source [ZONE1] destination [ZONE2]

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

What is a class-map used for in ZBF?

A

To match specific types of traffic like protocols or ports.

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

What is a policy-map used for in ZBF?

A

To define actions (inspect, drop, pass) on matched traffic.

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

What command applies a policy to a zone-pair?

A

service-policy type inspect [POLICY_NAME]

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

What action allows return traffic in ZBF?

A

inspect

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

What action blocks traffic without logging in ZBF?

A

drop

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

What action allows traffic without stateful inspection in ZBF?

A

pass

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

Can traffic flow between two zones without a zone-pair?

A

No, traffic is denied by default.

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

Is ZBF unidirectional or bidirectional?

A

Unidirectional, you must configure both directions separately.

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

What is the default action for traffic between zones with no zone-pair?

A

Traffic is denied.

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

What does ACL stand for?

A

Access Control List

17
Q

What is the purpose of an ACL?

A

To control traffic by permitting or denying packets based on criteria.

18
Q

What is the default behavior at the end of every ACL?

A

Implicit deny all

19
Q

Which ACL type filters by source IP only?

A

Standard ACL

20
Q

Which ACL type filters by source, destination, and protocol?

A

Extended ACL

21
Q

What command applies an ACL to an interface?

A

ip access-group [ACL_NAME or NUMBER] [in|out]

22
Q

Where should a standard ACL be placed?

A

As close to the destination as possible.

23
Q

Where should an extended ACL be placed?

A

As close to the source as possible.

24
Q

What command applies a standard ACL to VTY lines?

A

access-class [ACL_NAME or NUMBER] in

25
Can a named ACL be applied to VTY lines?
Yes, if it is a standard ACL.
26
What does NAT stand for?
Network Address Translation
27
What is the purpose of NAT?
To translate private IP addresses to public ones for internet access.
28
What does PAT stand for?
Port Address Translation
29
What is another name for PAT?
NAT Overload
30
What command defines an inside NAT interface?
ip nat inside
31
What command defines an outside NAT interface?
ip nat outside
32
What is the basic syntax to configure PAT?
ip nat inside source list [ACL] interface [INTERFACE] overload
33
What does 'overload' mean in PAT configuration?
It allows multiple devices to share one public IP using ports.
34
How can you verify NAT translations?
show ip nat translations
35
How can you verify NAT statistics?
show ip nat statistics
36
What is CBAC
Context-Based Access Control, basically reflexive NAT with brains
37