Start typing to search...

cisco dhcp packet tracer
Excluding IPv4 Addresses router(config)# ip dhcp exluded-address <low-address> <high-address>
Defining a DHCP Pool Name router(config)# ip dhcp pool <pool-name>
Define the address pool router(dhcp-config)# network <network-address> <subnet-mask>
Define the router or gateway address router(dhcp-config)# default-router address <ip address>
Define a DNS server router(dhcp-config)# dns-server address
Define the domain name router(dhcp-config)# domain-name <domain>
Define the duration of the lease router(dhcp-config)# lease <days hours minutes OR infinite>
Display the configuration router# show running-config | section dhcp
Display all leases router# show ip dhcp binding
Display information on DHCP messages router# show ip dhcp server statistics
cisco vlan packet tracer switch
Enter global configuration mode switch# configure terminal
Create a VLAN with a valid ID number switch(config)# vlan <vlan-id>
Specify a unique name to identify the VLAN switch(config-vlan)# name <vlan-name>
Return to the privileged EXEC mode switch(config-vlan)# end
cisco vlan packet tracer switch
Enter global configuration mode switch# configure terminal
Enter interface configuration mode switch(config)# interface <interface-id>
Set the port to access mode switch(config-if)# switchport mode access
Assign the port to a VLAN switch(config-if)# switchport access vlan <vlan-id>
Return to privileged EXEC mode switch(config-if)# end
cisco vlan packet tracer switch
Enter global configuration mode switch# configure terminal
Enter interface configuration mode switch(config)# interface <interface-id>
Set the port to permanent trunking mode switch(config-if)# switchport mode trunk
Set the native VLAN to something other than VLAN 1 switch(config-if)# switchport trunk native vlan <vlan-id>
Specify the list of VLANs to be allowed on the trunk link switch(config-if)# switchport trunk allowed vlan <vlan-list>
Return to privileged EXEC mode switch(config-if)# end