test import

Categories

Ad Home

Responsive Ads Here

Labels

642-813 SWITCH (2) 642-902 ROUTE (2) 643-832 TSHOOT (1) Access Based Enumeration (1) access list (2) AIX (1) Anti Malware (16) AutoIT (1) backtrack (4) Basic Networking (3) Blogspot (2) bootable USB (1) can not download attach file from gmail (1) ccna (9) CCNA Lab (19) centos (3) Check (1) Check_MK (3) cisco (51) Dell (1) DHCP (1) Download (2) Dynamic Host Configuration Protocol (1) ebook (2) Ebooks (18) eigrp (1) encapsulation (3) esxi5 (2) exam (13) exchange server 2010 (3) facebook (2) firewall-cmd (1) firewall-config (1) firewalld (1) Frame Relay (4) Free Router Simulator Softwares (1) FreeNAS (1) GhostSurf (1) gns3 (1) Hacking Security (5) hardware (1) hotspot (1) How to Change Windows 2008 R2 SID (1) How to create VPN network on Linux (1) How to install openSSH on AIX 5.3 (1) How to Install the Microsoft Core Fonts on Fedora 19 (1) HP (1) IBM (1) Infrastructure Monitoring (3) InterVLAN (1) ip routing (3) IPSec (2) ipv6 (1) IT (122) joomla (1) Kiến thức (278) LAN Technology (3) life skills for (1) lifeskills (2) linux (13) Linux-Unix (24) mac address (1) Magazine (9) Mail (2) mail server (1) MCSA (7) Microsoft (28) mikrotik (3) Multipoint (1) Nagios (3) NAT (1) nested (1) Network (1) Network Load Balancing (1) News (1) Nghệ thuật sống (1) O365 (4) Office 365 (4) OSPF (1) Packet tracer (19) Pass4sure (1) Point to Point (1) Point-to-Point Protocol (PPP) – CHAP (1) Point-to-Point Protocol (PPP) – PAP (1) Policy (3) Port Security (1) Practice Labs (19) Prerequisites (1) proxy (1) relax (7) rhel7 (1) RIP (1) routerOS (3) Routing (1) SAN (1) SAN Storage (1) Scripts (6) Server (1) server room (1) Sharepoint Server 2007 (1) Sharepoint Server 2010 (1) Spanning Tree Protocol (1) SSH login without password (1) Static Default Route (1) Storage (1) subnet (1) switch (1) System Requirements for Windows Server 2012 (1) Tản mạn (2) tcp-ip (1) telnet (1) TestInside (1) Thư giãn (4) Thủ thuật (2) tip (3) Tips + Tricks (29) trick (1) Tutorial (29) Tutorialvirtual server HighAvailability (1) ubuntu (4) unix (3) Unix-Linux (8) usb (1) Virtual Private Network (VPN) - IPsec (Site-to-Site) (1) Virtual Trunking Protocol (1) Virtualization (2) Virtualization HighAvailability (1) virus (5) vmware (6) vpn (4) vpn client (1) vpn client to site (2) vpn site to site (2) vSphere 5 (6) vSphere 5.1 (1) WAN Technology (13) Warranty (1) wildcard mask (1) windows 7 (1) windows 8 (1) windows server 2008 (3) Windows Server 8 (1)

Facebook

Ethereum

Subscribe for New Post Notifications

Ripple

Ethereum Price

Monday Tuesday Wednesday
$402.89 $384.06 $396.34

Contact Form

Name

Email *

Message *

Bitcoin

Litecoin

Browsing Category " ip routing "

CCNA LAB - 4.4 IP Routing – EIGRP

CCNA LAB - 4.4 IP Routing – EIGRP




LAB 4-4: IP Routing – EIGRP
You are the network administrator at Ranet, and have to config the routers both Ranet-HQ and Ranet-BR to make the connection throughout Ranet network and with the Internet.

So all you have to do are:
(Config via console of each router.)

1. Enable and set IP address on LAN interface of each router to be the last assignable IP of each subnet.
2. Enable serial interface on each router and set IP address on each interface as:
- s0/0/0 on Ranet-BR: last IP of 5.88.192.56/29
- s0/0/0 on Ranet-HQ: first IP of 5.88.192.56/29
- s0/1/0 on Ranet-HQ: last IP of 5.88.192.224/30
all serial interface use HDLC as encapsulation protocol and do not forget to set clock rate at 64 kbps on Ranet-BR side.
3. Set EIGRP as routing protocol on each router to let Host1 connect to Host2 in the condition that:
- Use AS no.10110
- Not permit EIGRP on interface that is not within Ranet Network.
4. Set default route on each router to let both Host1and Host2 be able to connect to the Online Server
(177.87.0.39) in the internet.


Solution:


Ranet-HQ config:
(copy & paste these commands to Ranet-HQ router)

en
conf t
int fa0/0
no sh
ip add 5.88.192.54 255.255.255.248
int s0/0/0
no sh
ip add 5.88.192.57 255.255.255.248
int s0/1/0
no sh
ip add 5.88.192.226 255.255.255.252
exit

router eigrp 10110
network 5.88.192.48 0.0.0.7
network 5.88.192.56 0.0.0.7
no auto-summary
exit
ip route 0.0.0.0 0.0.0.0 se0/1/0

Ranet-HQ#sh ip protocol
Routing Protocol is "eigrp 10110 "
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
EIGRP maximum hopcount 100
EIGRP maximum metric variance 1
Redistributing: eigrp 10110
Automatic network summarization is not in effect
Maximum path: 4
Routing for Networks:
5.88.192.48/29
5.88.192.56/29
Routing Information Sources:
Gateway Distance Last Update
Distance: internal 90 external 170

Ranet-HQ#copy run start
Destination filename [startup-config]?
Building configuration...
[OK]
Ranet-HQ#

Ranet-BR config:
(copy & paste these commands to Ranet-BR router)

en
conf t
int fa0/0
no shut
ip add 5.88.192.46 255.255.255.240
int s0/0/0
no sh
clock rate 64000
ip add 5.88.192.62 255.255.255.248
exit

router eigrp 10110
network 5.88.192.32 0.0.0.15
network 5.88.192.56 0.0.0.7
no auto-summary
exit
ip route 0.0.0.0 0.0.0.0 se0/0/0

Ranet-BR#sh ip protocol

Routing Protocol is "eigrp 10110 "
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
EIGRP maximum hopcount 100
EIGRP maximum metric variance 1
Redistributing: eigrp 10110
Automatic network summarization is not in effect
Maximum path: 4
Routing for Networks:
5.88.192.32/28
5.88.192.56/30
Routing Information Sources:
Gateway Distance Last Update
5.88.192.57 90 497401
Distance: internal 90 external 170
Ranet-BR#sh ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route

Gateway of last resort is 0.0.0.0 to network 0.0.0.0

5.0.0.0/8 is variably subnetted, 3 subnets, 2 masks
C 5.88.192.32/28 is directly connected, FastEthernet0/0
D 5.88.192.48/29 [90/20514560] via 5.88.192.57, 00:00:53, Serial0/0/0
C 5.88.192.56/29 is directly connected, Serial0/0/0
S* 0.0.0.0/0 is directly connected, Serial0/0/0
Ranet-BR#copy run start
Destination filename [startup-config]?
Building configuration...
[OK]
Ranet-BR#

----------------------- The End ---------------------

Everything is OK.

You can view and download this solution here.

 









Copyright by http://www.lecuong.info

CCNA LAB - 4.3 IP Routing – OSPF

CCNA LAB - 4.3 IP Routing – OSPF


LAB 4-3: IP Routing – OSPF


You are the network administrator at Ranet, and have to config the routers both Ranet-HQ and Ranet-BR to make the connection throughout Ranet network and with the Internet.
So all you have to do are:
(Config via console of each router.)

1. Enable and set IP address on LAN interface of each router to be the last assignable IP of each subnet.

2. Enable serial interface on each router and set IP address on each interface as:

- s0/0/0 on Ranet-BR: last IP of 128.0.6.156/30
- s0/0/0 on Ranet-HQ: first IP of 128.0.6.156/30
- s0/1/0 on Ranet-HQ: last IP of 128.0.6.92/30
all serial interface use HDLC as encapsulation protocol and do not forget to set clock rate at 64 kbps on Ranet-BR side.

3. Set OSPF as routing protocol on each router to let Host1 connect to Host2 in the condition that:

- Use Process ID: 1 for Ranet-HQ and Process ID: 100 for Ranet-BR
- Set RouterID of Ranet-HQ to be 1.1.0.1, and set to be 1.1.1.1 for Ranet-BR

4. Set default route on each router to let both Host1 and Host2 be able to connect to the Online Server
(203.87.129.95) in the internet.

------------------------------------- End ----------------------------------

Solution:

Ranet-HQ config:
(copy & paste these commands to Ranet-HQ router)

en
conf t
int fa0/0
no sh
ip add 128.0.6.142 255.255.255.240
int  s0/0/0
no sh
ip add 128.0.6.157 255.255.255.252
int s0/1/0
no sh
ip add 128.0.6.94 255.255.255.252
exit
int loopback 0
ip add 1.1.0.1 255.255.255.0
exit

router ospf 1
network 128.0.6.128 0.0.0.15 area 0
network 128.0.6.156 0.0.0.3 area 0
exit
ip route 0.0.0.0 0.0.0.0 se0/1/0
end

Ranet-HQ#sh ip protocol

Routing Protocol is "ospf 1"
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Router ID 1.1.0.1
Number of areas in this router is 1. 1 normal 0 stub 0 nssa
Maximum path: 4
Routing for Networks:
128.0.6.128 0.0.0.15 area 0
128.0.6.156 0.0.0.3 area 0
Routing Information Sources:
Gateway Distance Last Update
Distance: (default is 110)

Ranet-HQ#copy run start
Destination filename [startup-config]?
Building configuration...
[OK]

Ranet-HQ#

Ranet-BR config:
(copy & paste these commands to Ranet-BR router)

en
conf t
int fa0/0
no sh
ip add 128.0.6.150 255.255.255.248
int s0/0/0
no sh
clock rate 64000
ip add 128.0.6.158 255.255.255.252
exit
int loopback 0
ip add 1.1.1.1 255.255.255.0
exit

router ospf 100
network 128.0.6.144 0.0.0.7 area 0
network 128.0.6.156 0.0.0.3 area 0
exit

ip route 0.0.0.0 0.0.0.0 se0/0/0
end

Ranet-BR#sh ip protocol

Routing Protocol is "ospf 100"
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Router ID 1.1.1.1
Number of areas in this router is 1. 1 normal 0 stub 0 nssa
ART-CNA-003-L43
Maximum path: 4
Routing for Networks:
128.0.6.144 0.0.0.7 area 0
128.0.6.156 0.0.0.3 area 0
Routing Information Sources:
Gateway Distance Last Update
128.0.6.157 110 00:00:20
Distance: (default is 110)

Ranet-BR#sh ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route

Gateway of last resort is 0.0.0.0 to network 0.0.0.0

1.0.0.0/24 is subnetted, 1 subnets
C 1.1.1.0 is directly connected, Loopback0
128.0.0.0/16 is variably subnetted, 3 subnets, 3 masks
O 128.0.6.128/28 [110/782] via 128.0.6.157, 00:00:29, Serial0/0/0
C 128.0.6.144/29 is directly connected, FastEthernet0/0
C 128.0.6.156/30 is directly connected, Serial0/0/0
S* 0.0.0.0/0 is directly connected, Serial0/0/0

Ranet-BR#copy run start
Destination filename [startup-config]?
Building configuration...
[OK]
Ranet-BR#

----------------------- The End ---------------------

Everything is OK.

You can view and download this solution here.
Copyright by http://www.lecuong.info

CCNA LAB - 4.2 IP Routing - RIP

CCNA LAB - 4.2 IP Routing - RIP


LAB 4-2: IP Routing - RIP 

You are the network administrator at Ranet, and have to config the routers both Ranet-HQ and Ranet-BR to make the connection throughout Ranet network and with the Internet. So all you have to do are:
(Config via console of each router.)

1. Enable and set IP address on LAN interface of each router to be the first assignable IP of each subnet.

2. Enable serial interface on each router and set IP address on each interface as:
- s0/0/0 on Ranet-BR: first IP of 98.83.165.72/30
- s0/0/0 on Ranet-HQ: last IP of 98.83.165.72/30
- s0/1/0 on Ranet-HQ: last IP of 52.9.236.20/30

all serial interface use HDLC as encapsulation protocol and do not forget to set clock rate at 64 kbps on Ranet-BR side.

3. Set RIPv2 as routing protocol on each router to let Host1 connect to Host2.

4. Set default route on each router to let both Host1 and Host2 be able to connect to the Online Server        (55.8.92.3) in the internet.

-------------------------------- The End -----------------------------------

Solution:


Ranet-HQ config:
(copy & paste these commands to Ranet-HQ router)

en
conf t
int fa0/0
no sh
ip add 98.83.165.65 255.255.255.248
int s0/0/0
no sh
ip add 98.83.165.74 255.255.255.252
int s0/1/0
no sh
ip add 52.9.236.22 255.255.255.252
exit
router rip
version 2
network 98.0.0.0
no auto-summary
exit
ip route 0.0.0.0 0.0.0.0 s0/1/0

Ranet-HQ#sh ip protocol
Routing Protocol is "rip"
Sending updates every 30 seconds, next due in 21 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Redistributing: rip
Default version control: send version 2, receive 2
Interface Send Recv Triggered RIP Key-chain
FastEthernet0/0 2 2
Automatic network summarization is not in effect
Maximum path: 4
Routing for Networks:
98.0.0.0
Passive Interface(s):
Routing Information Sources:
Gateway Distance
Distance: (default is 120)
Ranet-HQ#copy run start
Destination filename [startup-config]?
Building configuration...
[OK]
Ranet-HQ#

Ranet-BR config:
(copy & paste these commands to Ranet-HQ router)

en
conf t
int fa0/0
no sh
ip add 98.83.165.81 255.255.255.240
int s0/0/0
no sh
clock rate 64000
ip add 98.83.165.73 255.255.255.252
exit
router rip
version 2
network 98.0.0.0
no auto-summary
exit
ip route 0.0.0.0 0.0.0.0 s0/0/0
end

Ranet-BR#sh ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route

Gateway of last resort is 0.0.0.0 to network 0.0.0.0

98.0.0.0/8 is variably subnetted, 3 subnets, 3 masks
R 98.83.165.64/29 [120/1] via 98.83.165.74, 00:00:27, Serial0/0/0
C 98.83.165.72/30 is directly connected, Serial0/0/0
C 98.83.165.80/28 is directly connected, FastEthernet0/0
S* 0.0.0.0/0 is directly connected, Serial0/0/0
Ranet-BR#copy run start
Destination filename [startup-config]?
Building configuration...
[OK]
Ranet-BR#

Everything is ok!!

----------------------------------  End  ------------------------------

You can download this solution here.
Copyright by http://www.lecuong.info