NAT Flashcards

1
Q

Command to create a static NAT mapping

A

ip nat inside source static inside local inside global

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

Command to see static NAT mappings

A

show ip nat translations

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

5 steps to configuring dynamic NAT

A
  1. Set an interface to inside
  2. Set an interface to outside
  3. Create ACL for the inside interface which identifies packets for which NAT should be performed
  4. Create a pool of global IP’s for use in NAT
  5. Bind the ACL and the pool together, enabling dynamic NAT
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Command to create an IP address pool for use with NAT

A

ip nat pool name first IP last IP netmask subnet mask

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

Command to bind pool and ACL together to enable dynamic NAT

A

ip nat inside source list ACL # pool pool name

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

Command to clear the NAT translation table

A

clear ip nat translation *

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

2 variations to enable PAT

A

ip nat inside source list ACL # interface interface overload
ip nat inside source list ACL # pool pool name overload

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

What does “inside local” refer to?

A

Private IP’s used in NAT

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

What does “inside global” refer to?

A

Public IP’s used in NAT

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

3 steps to configure a router to do static NAT

A
  1. Set up an interface as inside local
  2. Set up an interface as inside global
  3. Create a mapping between inside and outside IP’s
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Command to make an inside NAT interface

A

conf t
int gi0/0
ip nat inside

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

Command to make an outside NAT interface

A

conf t
int gi0/1
ip nat outside

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

Command to set a static translation

A

ip nat inside source static inside local IP inside global IP

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

Command to set an inside local interface

A

conf t
interface interface
ip nat inside

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

Command to set an inside global interface

A

conf t
interface interface
ip nat outside

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