Experiment-5
Experiment-5
Topology Diagram
Use this syntax checker to practice configuring the initial settings on a router.
The following tasks should be completed when configuring initial settings on a router.
Router(config-line)# exit
Router(config)# service password-encryption
Router(config)# end
Router# copy running-config startup-config
At this point, your routers have their basic configurations. The next step is to configure their
interfaces. This is because routers are not reachable by end devices until the interfaces are
configured. There are many different types of interfaces available on Cisco routers. For
example, the Cisco ISR 4321 router is equipped with two Gigabit Ethernet interfaces:
The task to configure a router interface is very similar to a management SVI on a switch.
Specifically, it includes issuing the following commands:
the description command would be helpful to enter the third-party connection and contact
information. no shutdown command activates the interface and is similar to powering on the
interface.
R1> enable
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)#
state to down
state to up
R1(config)#
R1(config)#
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)#
state to down
state to up
R1(config)#
Note: Notice the informational messages informing us that G0/0/0 and G0/0/1 are enabled.
There are several commands that can be used to verify interface configuration. The most
useful of these is the show ip interface brief and show ipv6 interface brief commands, as
shown in the example.
GigabitEthernet0/0/0 [up/up]
FE80::201:C9FF:FE89:4501
2001:DB8:ACAD:10::1
GigabitEthernet0/0/1 [up/up]
FE80::201:C9FF:FE89:4502
2001:DB8:FEED:224::1
unassigned
R1#
The table summarizes the more popular show commands used to verify interface
configuration.
Table caption
Commands Description
show ip interface The output displays all interfaces, their IP addresses, and their
Table caption
Commands Description
show ip route Displays the contents of the IP routing tables stored in RAM.
show ipv6 route
Displays statistics for all interfaces on the device. However, this
show interfaces command will only display the IPv4 addressing information.
show ip interfaces Displays the IPv4 statistics for all interfaces on a router.
show ipv6 interface Displays the IPv6 statistics for all interfaces on a router.
R1# show ip interface brief Interface IP-Address OK? Method Status Protocol
GigabitEthernet0/0/0 192.168.10.1 YES manual up up GigabitEthernet0/0/1 209.165.200.225
YES manual up up Vlan1 unassigned YES unset administratively down down R1#