Saturday 24 May 2014

Multi-Layer Switching (MLS) & EIGRP LAB

"MLS and EIGRP LAB"
Multi-Layer Switching (MLS) & Enhanced Interior Gateway Routing Protocol (EIGRP)
------------------------------------------------------

Configure the Multilayer Switch so that PCs from VLAN  2 and VLAN 3 can communicate with the Server.
 


Command explanation
"Layer 3 Switch"
conf t
int gi0/1
no switchport    # By default switchport က layer 2 မွာပဲ အလုပ္လုပ္ သည္
ip address 10.10.10.2 255.255.255.0  # no switchport လုပ္ထားမွ IP ေပးလို႔ရသည္
no shutdown
exit

## VLAN creating and IP assign
int vlan 2  
ip address 190.200.250.33 255.255.255.224
no shutdown
exit
int vlan 3
ip address 190.200.250.65 255.255.255.224
no shutdown
exit

## Interface Port ကို VLAN assign ခ်ထား
int fa0/10
switchport mode access
switchport access vlan 2
no shutdown
exit
int fa0/11
switchport mode access
switchport access vlan 3
no shutdown
exit

ip routing    # Layer 3 routing ကို enable လုပ္သည္။ 

## EIGRP creating and announcement of connected network
router eigrp 650  
network 10.10.10.0 0.0.0.255
network 190.200.250.32 0.0.0.31
network 190.200.250.64 0.0.0.31
no auto-summary   # auto-summary လုပ္ထားရင္ 190.200.250.x network class b အေနနဲ႔end                   # ျမင္မည္။ subnetmask ခြဲထားတာကို မသိေတာ့ဘဲ class A, B or C ပဲ သိေနမည္.
                        # no auto-summary လုပ္ထားမွာ Subnet mask /27 ခြဲထားတဲ့အတိုင္းသိမည္။

" Router "
conf t
int gi0/0
ip address 10.10.10.1 255.255.255.0
no shutdown
exit
int gi0/1
ip address 172.18.1.1 255.255.255.252
no shutdown
exit

router eigrp 650
network 10.10.10.0 0.0.0.255
network 172.18.1.0 0.0.0.3
no auto-summary
end
copy running-config startup-config

Server နဲ႔ PC ေတြမွာ IP ေပး Subnet ေပး Default Gateway ေပးပါ.

----------------------------------  END  --------------------------------------

Study more -- link...
http://www.certprepare.com/mls-and-eigrp-sim#more-50

Have a nice day! Thanks!

Best Regards,
Yan Linn Aung

No comments:

Post a Comment