test me

Site Search:

Cisco Router Basic Commands video tutoial - Configure FastEthernetinterface

In the section one of CCNA lab video tutorial 3, we will configure Router2 and Router0 for the FastEthernet interfaces. We will set the ip address of FastEthernet interface 0/0 of Router2 as 10.0.0.1 with subnet mask 255.0.0.0, then turn on the interface with command "no shutdown". We do the same on Router0, set the ip address of FastEthernet interface 0/0 as 10.0.0.2 with subnet mask 255.0.0.0, then turn it on. We finally ping the ip address 10.0.0.1 on Router0 in order to verify Routers' configuration.



IOS commands for Router 2

--- System Configuration Dialog ---

Continue with configuration dialog? [yes/no]: n
Press RETURN to get started!

Router>enable
Router#config t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#interface fa 0/0
Router(config-if)#ip address 10.0.0.1 255.0.0.0
Router(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
Router(config-if)#exit
Router(config)#exit
%SYS-5-CONFIG_I: Configured from console by console
Router#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol

FastEthernet0/0        10.0.0.1        YES manual up                    down

FastEthernet0/1        unassigned      YES manual administratively down down
Router#

IOS commands for Router 0

--- System Configuration Dialog ---

Continue with configuration dialog? [yes/no]: n
Press RETURN to get started!

Router>enable
Router#config t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#interface fa 0/0
Router(config-if)#ip address 10.0.0.2 255.0.0.0
Router(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
Router(config-if)#exit
Router(config)#exit
%SYS-5-CONFIG_I: Configured from console by console
Router#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol

FastEthernet0/0        10.0.0.2        YES manual up                    up

FastEthernet0/1        unassigned      YES manual administratively down down

Serial0/0              unassigned      YES manual administratively down down

Serial0/1              unassigned      YES manual administratively down down
Router#ping 10.0.0.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.1, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 31/31/32 ms

Router#ping 10.0.0.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 31/31/32 ms

Router#

No comments:

Post a Comment