Book Notes Review 1 Flashcards
Command that will prompt icmp requests on the screen?
debug ip icmp
response
ICMP packet debugging is on.
How do you designate an inside and an outside nat interface?
# interface g0/1 #ip nat outside #interface g0/0 #ip nat inside
Give an example of a static nat configuration using 192.168.1.10 as the inside local and 200.124.22.3 as the inside global.
ip nat inside source static 192.168.1.10 200.124.22.3
Command to verify nat translations.
show ip nat translations
Explain dynamic nat.
internal devices assigned with private ip addresses share from a pool of public ip addresses to reach the internet. Access lists are used to identify the range of ip addresses that you want to be able to translate.
Explain/dynamic nat configuration.
Assign ip nat inside/outside to interfaces
#access-list 1 permit 192.168.1.0 0.0.0.255 *identify range of traffic you want to translate*
#ip nat pool NWKING 200.124.22.1 200.124.22.2 netmask 255.255.255.252 *public addys in pool used for translations and name the pool*
#ip nat inside source list 1 pool NWKING *source ip addy is identified by using a list list 1 then translate it to a dynamic pool "NWKING"
Command to clear nat translations.
R1# clear ip nat translations
How would you display nat statistics?
sh ip nat statistics
Explain nat overlaod/pat configuration.
ip nat pool NWKING 200.124.22.1 200.124.22.1 netmask 255.255.255.252
Assign ip nat inside/outside to interfaces
#access-list 1 permit 192.168.1.0 0.0.0.255 *identify range of traffic you want to translate*
public addys in pool used for translations and name the pool only one ip addy is listed in the pool
*source ip addy is identified by using a list list 1 then translate it to a dynamic pool “NWKING” then overlaod is added to enable pat.
What command would you use to set up PAT directly on an interface?
ip nat inside source list 1 interface g0/0 overload.
Give the configuration for setting up ssh and telnet.
#conf t (config)#line vty 0 4 (config-line)#login local (config-line)#transport input telnet ssh (config-line)#username r2-atiba password cs (config)#ip domain-name example.com (config)#crypto key generate rsa
How to configure PAT on an interface using access list 1 and inside global int s0/0/0?
#access-list 1 permit 192.168.1.0 0.0.0.255 #ip nat inside source list 1 interface s0/0/0 overload
LACP & PAgP modes
LACP - Active - Passive
PAgP - Auto - Desirable
Command to show all etherchannels on a switch along with negotiated protocols?
show etherchannel
IEEE standard for STP - RSTP - MST
STP - Spanning Tree Protocol - 802.1d
RSTP - Rapid Spanning Tree Protocol - 802.1w
MST - Multiple Spanning Tree Protocol - 802.1s