|
||||||||
|
||||||||
CCNA Video: Configuring IP Addresses | ||||||||
In preparation of our CCNA exam, we want to make sure we cover the various concepts that we could see on our Cisco CCNA exam. So to assist you, below we will discuss Configuring IP Addresses.
An IP address must be assigned to a switch if you plan to use SNMP or connect to the switch through a Web browser or Telnet. If the switch needs to send traffic to a different IP network, the traffic is routed to a default gateway. Here’s the procedure for configuring a switch IP address: |
||||||||
SwitchA>enable | ||||||||
SwitchA#config term | ||||||||
SwitchA(config)#ip address 10.2.5.10 255.255.255.0 | ||||||||
SwitchA(config)#ip default-gateway 10.2.5.2 | ||||||||
SwitchA(config)#exit | ||||||||
SwitchA#show ip | ||||||||
The no ip address command resets the address to the default (0.0.0.0). Each unique IP address can have a host name associated with it. A maximum of six IP addresses can be specified as named servers. Domain Name System (DNS) is a system used to translate names into addresses. If a system sees an address it does not recognize, it refers to DNS, which is enabled by default with a server address of 255.255.255.255. The ip domain-lookup and the no ip domain-lookup commands turn DNS on and off, respectively. | ||||||||
Router IP Host Names | ||||||||
When names are used to route traffic, they must be translated into addresses. Routers must be able to associate host names with IP addresses to communicate with other IP devices. The ip host command manually assigns host names to addresses. | ||||||||
Configuring IP Addresses Summary | ||||||||
|
||||||||