IP Services (NAT, NTP, FHRP) Flashcards

1
Q

What is source NAT?

A

When the source address is translated to another address as part of the initial translation.

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

What is Destination NAT?

A

When the destination address is translated to another address as part of the initial translation.

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

What is Static NAT?

A

A hard coded translation of one address to another in the router

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

What is Dynamic NAT?

A

When a range of addresses is translated on the fly by the router for a pre-defined pool of available translation addresses.

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

What are the differences between inside local, inside global, outside local, and outside global addresses?

A

Inside local: The actual private IP address assigned to a device on the inside network(s).

Inside global: The public IP address that represents one or more inside local IP addresses to the outside.

Outside local: The IP address of an outside host as it appears to the inside network. The IP address does not have to be reachable by the outside but is considered private and must be reachable by the inside network.

Outside global: The public IP address assigned to a host on the outside network. This IP address must be reachable by the outside network.

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

What is PAT?

A

Port Address Translation aka NAT overload. When many addresses are translated to a single address. This uses the private address and the port number to map to the global address with a port number in the translation table.

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

When configuring a destination NAT (from the outside to the inside), what option might you need to add to ensure the router creates a 32 bit entry in the routing table?

A

add-route

example ip nat outside source tcp 199.10.10.1 80 10.1.1.10 6777 add-route

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

Command to set an interface to be an inside or outside for NAT?

A

R1(config-if)# ip nat {inside | outside}

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

Command to set a static NAT

A

R1(config)# ip nat {inside | outide} source static {source-address} {dest-address}

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

Command to create a pool of NAT addresses

A

R1(config)# ip nat pool NAME {start-address} {end-address*} prefix-length 24

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

Command to create an ACL to use for NAT

A

R1(config)# ip access-list standard {network-prefix} {wildcard-mask}

OR

R1(config)# ip access-list extended NAME
R1(config-ext-acl)# permit ip {network-prefix} {wildcard-mask} any

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

Command to set a pooled NAT

A

R1(config)# ip nat {inside | outside} source list ACL_NAME pool POOL_NAME

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

Command to set a dynamic PAT

A

R1(config)# ip nat inside source list ACL_NAME interface {outside-int} overload

OR

R1(config)# ip nat inside source list ACL_NAME pool POOL_NAME overload

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

Command to set a static PAT

A

R1(config)# ip nat {inside | outside} source static tcp {address} {port} {address} {port}

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

Command to display NAT translations

A

R1# show ip nat translations [brief]

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

What port is used by NTP?

A

UDP 123

17
Q

What services on a Cisco router could be affected by NTP being inaccurate?

A
  • Certificates
  • Log Files
  • VPN encryption keys
  • Password expirations
18
Q

What purpose does Stratum serve in NTP?

A

It defines which NTP source should be most preferred when multiple sources exist. Lowest is best.

19
Q

In NTP, which “Stratum” is considered best?

A

Stratum 0

20
Q

What is the command to manually set the time on a router?

A

From privileged exec mode!

R1# clock set hh:mm:ss

21
Q

What is the command to set the time-zone on a router?

A

R1(config)# clock timezone NAME {offset}

example: R1(config)# clock timezone EASTERN -5

22
Q

What is the command to make a router the main NTP source?

A

R1(config)# ntp master {stratum-number}

23
Q

What is the command to set a NTP source for a router?

A

R1(config)# ntp server {ip-address}

NOTE: Multiple NTP servers can be set

24
Q

What is the command to set daylight savings time on a router?

A

R1(config)# clock summer-time NAME {many options [ ] [ ]}

25
Q

What are NTP peers?

A

When a couple of NTP devices point to each other for NTP redundancy to keep each other’s clocks in sync in the event that external NTP sources become unreachable.

26
Q

What is the command to set a NTP peer?

A

R1(config)# ntp peer {ip_address}

27
Q

What is PTP?

A

Precision Time Protocol (PTP) is defined in IEEE 1588 as Precision Clock Synchronization for Networked
Measurements and Control Systems, and was developed to synchronize the clocks in packet-based networks
that include distributed device clocks of varying precision and stability. PTP is designed specifically for
industrial, networked measurement and control systems, and is optimal for use in distributed systems because
it requires minimal bandwidth and little processing overhead.

28
Q
A