iBGP peering.



Wow! Christmas is on coming Saturday. Merry Christmas to you all, today I’m reading about iBGP peering and hope that I can finish BGP chapter before 2010 ending. This is my iBGP lab, but seem like if I run this, it will be a heavy load for my poor Dell laptop.fuuu…

This time, enterprise have two core routers, IE-1 and IE-2, both are connecting to the internet, different ISP. In this case, we assume that , IE-1 configured to received default route and full BGP update from ISP-1 router. But for IE-2 only configured to received a default rout and partial BGP update, meaning that ISP-3 router will only send a partial part of his BGP updates, not including the updates from ISP-2 but including the customers of ISP-3, 202.1.1.1/24 network in this case.

When a packet from Enterprise want to go to 202.1.1.1/24, it will arrived at both IE-1 and IE-2, which are up link routers. Here, we can assume that OSPF is running within enterprise. Then IE-1 will send packet to IE-2 only but not to ISP-1 because IE-1 know that IE-2 has better route to ASN-5.

Without that iBGP connection, the routers will have no way to know if the other routers have a better BGP path.

- If one router has only one uplink to internet, no need to use loopback interface as update source, as the result, no need to use eBGP multihop subcommand.

- But, even though iBGP peering use loopback IP address (it should use because of the below reasons), it does not need to configure eBGP multihop subcommand.

The inter-connection between iBGP peering within Enterprise routers should use loopback interface. Because internet connected routers of same enterprise might not using the common subnets. Maybe, the routers in separate building or may actually be in different cities or even in different countries for the sake of redundancy. In such case, it makes sense to configure iBGP peers using loopback IP addresses for TCP connection so the single link failure does not cause the iBGP peering fail.

This is the configuration example of the redistribution of the enterprise’s public address range of 202.202.0.0/19 by redistribution from OSPF and summarizing with the aggregate-address BGP subcommand. And as you can see, this is obvious that local BGP ASN and remote BGP ASN are same. So that line is for iBGP peering within same ASN.

Example:

Router bgp 4

Aggregate-address 202.202.0.0 255.255.224.0 summary-only

Redistribute ospf 1 route-map only-128-107

Neighbor 10.1.1.1 remote-as 4


Thanks !!!

BGP Lab - Neighbor Peering and static route injection.


scenario : Let's say Enterprise-1 is connecting to ISP-1 using dual homed design. There are two link which connect to the same ISP. Both link are always alive acting redundancies for each other.

Internal Routers of Enterprise-1, like IE-1 are connecting to their border router E1. In this case i'm using static routes inside the enterprise. If i use other dynamic route like OSPF or etc.., i have to configure "route redistributing" at E1.

And use a loopback interface as update source, and configure eBGP multihop with a dual BGP peer, which reduce the amount of overhead, while giving the same higher availability.


This is the Routing Table of Enterprise Router I-E1.

I-E1#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 192.168.100.2 to network 0.0.0.0

192.168.100.0/30 is subnetted, 1 subnets

C 192.168.100.0 is directly connected, FastEthernet0/0

S* 0.0.0.0/0 [1/0] via 192.168.100.2 !! Default Static Route to E1

What I’m trying to do here is just try to set a default route, which saying that any packets which coming to I-E1 will go out to inner interface of Border Enterprise Router E1. Let’s say a packet come in, which want to go to ISP router ISP-1 that I-E1 don’t know. Then I-E1 will send all these into 192.168.100.2 of E1. From here, E1 will take care the rest of its journey by using its Routing table. Here is E1 routing table.

E1#sh ip route

Gateway of last resort is 0.0.0.0 to network 0.0.0.0

1.0.0.0/32 is subnetted, 1 subnets

C 1.1.1.1 is directly connected, Loopback0

2.0.0.0/32 is subnetted, 1 subnets

S 2.2.2.2 [1/0] via 192.168.1.2 !! This is the static route to use loopback interface.

[1/0] via 10.1.1.2

S 192.168.99.0/24 [1/0] via 192.168.100.1

C 10.0.0.0/8 is directly connected, FastEthernet2/0

C 192.168.1.0/24 is directly connected, FastEthernet1/0

192.168.100.0/30 is subnetted, 1 subnets

C 192.168.100.0 is directly connected, FastEthernet6/0

S* 0.0.0.0/0 is directly connected, Loopback0 !! This is default static route all packet via loopback

And, I tried to inject 192.168.100/24 and 192.168.99.0/24, which are internal subnets of Enterprise to advertise out in BGP message of E1. So ISP-1 will receive the route and know how to reach inner subnets or Enterprise.

ISP-1#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 not set

1.0.0.0/32 is subnetted, 1 subnets

S 1.1.1.1 [1/0] via 192.168.1.1

[1/0] via 10.1.1.1

2.0.0.0/32 is subnetted, 1 subnets

C 2.2.2.2 is directly connected, Loopback0

B 192.168.99.0/24 [20/0] via 1.1.1.1, 00:03:28

C 10.0.0.0/8 is directly connected, FastEthernet2/0

C 192.168.1.0/24 is directly connected, FastEthernet1/0

B 192.168.100.0/24 [20/0] via 1.1.1.1, 00:03:28



ISP-1#ping 192.168.100.1

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 192.168.100.1, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 64/94/140 ms

Vice visa,

I-E1#ping 2.2.2.2

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 172/240/300 ms

Me and Internet.

ဟိုးေရွးေရွးတုန္းက.....ေတာ႕မဟုတ္ပါဘူး။ လြန္ခဲ႕ေသာဆယ္စုနွစ္တစ္ခု ရဲ႕အလယ္ပိုင္း ၁၉၉၅ ၀န္းက်င္ေလာက္..။စက္ဘီးစီးရင္ ပါးေလးေတြပါနီၿပီး ထံုလာတတ္တဲ႕ လြိဳင္ေကာ္ျမဳိ႕ရဲ႕ ခ်မ္းခ်မ္းစီးစီး ေဆာင္းရာသီမနက္ခင္း တစ္ခုကို ကြ်န္ေတာ္သတိရေသးတယ္။ အဲဒီေန႕က အေအးနဲနဲပိုလို႕ကြ်န္ေတာ္ရဲ႕တစ္ထည္တည္းေသာဂ်င္းဂ်တ္ကတ္ကို စက္ထိုးဆြယ္တာအက်ီေပၚကေန ထပ္၀တ္ထားရတယ္။ ေနာက္ ... BMX စက္ဘီးေလးကို ပြဲခင္းရွိတဲ႕ ေလယဥ္ကြင္းဘက္ ခပ္သြက္သြက္နင္းလာခဲ႕တယ္။ အဲဒီရက္ပိုင္းက ကယားေဒး အထိမ္းအမွတ္နဲ႕ ေလယဥ္ကြင္း နားကကြင္းျပင္မွာ ပြဲခင္းၾကီး ရွိတယ္ေလ။ ညဖက္ပဲ ပြဲခင္းကစည္တာဆိုေပမယ္႕ ေန႕ခင္းဘက္လဲ ဆိုင္ခန္းေတြဖြင္႕ထားတတ္ပါတယ္။ ပြဲခင္းထဲက ပညာေရးျပခန္း တစ္ခု မွာ ကြ်န္ေတာ္႕သူငယ္ခ်င္းေတြ ေျပာတဲ႕ ကြန္ပ်ဴတာ ဆိုတာကိုသြားၾကည္႕မလို႕ပါ။ ေနာက္ေတာ႕ ဆရာမ တစ္ေယာက္ကေဘးကေန ေစာင္႕ေနၿပီး ကြ်န္ေတာ္႕ဘ၀မွာ ပထမဦးဆံုးအၾကိမ္ ေမာက္စ္ကို ကိုင္ခြင္႕ရခဲ႕တယ္။ Windows95 ျဖစ္လိမ္႕မယ္ထင္တယ္။ သူကကြ်န္ေတာ္႕ကို Microsoft Paint ဖြင္႕ေပးလိုက္တယ္။ ကြ်န္ေတာ္က ခဲတံေလးေတြ ခဲဖ်က္ေလးေတြ ေနာက္ အေရာင္ခ်ယ္တဲ႕ Tools ေတြကို စမ္းၾကည္႕ၿပီး သေဘာအက်ၾကီးက်ခဲ႕တယ္။ ဒါက ပထမဆံုးကြန္ပ်ဴတာအေတြ႕အၾကံဳပါ။ ၁၅ မိနစ္ေလာက္ပဲၾကာခဲ႕တယ္။ ဒီပစၥည္းမ်ိဳးနဲ႕အသက္ေမြးရလိမ္႕မယ္လို႕ မစဥ္းစားခဲ႕မိဘူး....။

ေနာက္ ၁၀ နွစ္ေလာက္ၾကာေတာ႕ ကြ်န္ေတာ္႕ရဲ႕ ပထမဦးဆံုး Google အေကာင္႕ကို MICT ရဲ႕ Java စာသင္ခန္းထဲမွာဖြင္႕ၿပီး ေမးပို႕ေနပါၿပီ။
ေနာက္ ၃ နွစ္ေလာက္အၾကာမွာပဲ ကြ်န္ေတာ္႕ဘ၀ရဲ႕ ပထမဦးဆံုးကိုယ္ပိုင္လုပ္ငန္းအေနနဲ႕ Cyber Cafe တစ္ခုကို ခ်ိဳင္းနာေတာင္းမွာ ဖြင္႕ျဖစ္ခဲ႕တယ္။
ေနာက္နွစ္မွာပဲ စကၤာပူက Small ISP လို႕ေျပာလုိ႕ရတဲ႕ ကုမၸဏီေလး တစ္ခုမွာ NOC Engineer အျဖစ္ လုပ္ခြင္႕ရခဲ႕တယ္။ Internet ရဲ႕ ကန္႕လန္႕ကာ ေနာက္အတြင္းေရးတခ်ိဳ႕ကို ျမင္ခြင္႕ရခဲ႕တယ္။
၂ နွစ္ေလာက္ လုပ္ၿပီးေတာ႕ကြ်န္ေတာ္သိပ္လုပ္ခ်င္တဲ႕ ISP ခပ္ၾကီးၾကီးမွာသူတို႕ရဲ႕ Broadband Network ကို Maintain လုပ္တဲ႕ Team မွာေနရာလြပ္တာမို႕ သူတို႕ထဲကိုေျပာင္းနိုင္ခဲ႕တယ္။
ဒီဟာ အင္တာနက္ရဲ႕ ေျမပံုတဲ႕။ Google ကေျပာတာပါ။ logical ပံုျဖစ္ပါလိမ္႕မယ္။ ဒီပံုအရၾကည္႕မယ္ဆိုရင္ ကြ်န္ေတာ္ဟာခု အျပာေရာင္ Router လိုအဆင္႕ မ်ိဳးမွာ ကံေကာင္းေထာက္မစြာနဲ႕ Operate လုပ္ခြင္႕ရခဲ႕တယ္။





ေပ်ာ္စရာေတြ ရယ္စရာေတြ ေလ႕လာစရာေတြ အားလံုးကို ဒီ Internet ကပဲရခဲ႕တယ္။ ကြ်န္ေတာ္႕ရဲ႕ပညာေရး အလုပ္အကိုင္ ရဲ႕ ရာခိုင္းနုန္း ေတာ္ေတာ္မ်ားမ်ား ကိုလဲ သူပဲစိုးမိုးေနခဲ႕တယ္.............။ Spamming ေတြ Malware ေတြ Virus ေတြ ကိုခဏေမ႕ထားၿပီး ဒီအက်ိဳးမ်ားလွတဲ႕ Internet ဟာ ကြ်န္ေတာ္႕အတြက္ေတာ႕ အပ်င္းေျဖစရာထက္ မကခဲ႕ပါဘူးလို႕ပဲေျပာခ်င္ပါတယ္။

OSPF LSA Types

Exam မွာေမးနုိင္ေလာက္ပါတယ္။ Type တစ္ခုခ်င္းစီရဲ႕အၾကမ္းဖ်င္းေတြပါ။ အျပည္႕အစံုမဟုတ္ပါဘူး။ ဒါေပမယ္႕ ကၽြန္ေတာ္႕အတြက္ေတာ႕ မွတ္မိဖို႕ အားစိုက္ထုတ္ရတဲ႕ ေခါင္းစဥ္ေတြထဲကတစ္ခုပါ။

၁။ Type - 1 : Router LSA လို႕လဲ ေခၚပါတယ္။ OSPF Router ေတြဟာ သူတို႕နဲ႕ ခ်ိတ္ဆက္ထားတဲ႕ Area ေတြတိုင္းအတြက္ သူတို႕ကို ကိုယ္စားျပဳတဲ႕ Type 1 LSA ေတြကို ဖန္တီးၾကပါတယ္။ Area တစ္ခုခ်င္းစီရဲ႕ LSDB ေတြကိုၾကည္႕မယ္ဆိုရင္ Area တစ္ခုအတြက္ Route တစ္ခု၊ အဲဒီ Route အတြက္ Type 1 LSA တစ္ခုစီ ရွိတာေတြ႕ရမယ္။အဲဒီ ထဲမွာမွ RID ေတြရယ္ ေနာက္ အဲဒီ Area ထဲမွာရွိတဲ႕ Router ရဲ႕ Interface ေတြရဲ႕ IP ေတြ List လုပ္ထားပါမယ္။ သူဟာ *Stub Network ကို ကိုယ္စားျပဳတယ္။

၂။ Type - 2 : Network LSA လို႕လည္းေခၚတယ္။ Transit Network တစ္ခုတိုင္းမွာရွိမယ္။ Subnet ေပၚမွာရွိတဲ႕ DR က create လုပ္ၿပီးေတာ႕ subnet နွင္႕ subnet ကိုခ်ိတ္ထားတဲ႕ router interface ေတြကို ကိုယ္စားျပဳတယ္။

၃။ Type - 3 LSA : Net Summary LSA လို႕လည္းေခၚတယ္။ ABR ေတြက create လုပ္ၿပီး Type 1 နဲ႕ Type 2 LSA ေတြရဲ႕ Subnet list ေတြကို တျခား Area ကို Advertise လုပ္တယ္။ သူ႕ပိုင္ Area ရဲ႕ link ေတြ cost ေတြကို တျခား area ကိုသိေစတယ္။ ဒါေပမယ္႕ အဲဒီထဲမွာ topology data ေတြေတာ႕မပါဘူး။

၄။ Type - 4 LSA : ASBR Summary LSA လို႕လည္းေခၚတယ္။ Type -3 အတိုင္းပဲ ဒါေပမယ္႕ သူက ASBR ကိုေရာက္နုိင္မယ္႕ host route ကိုထည္႕ၿပီး Advertise လုပ္တယ္။

၅။ Type - 5 LSA : AS External LSA လို႕လည္းေခၚတယ္။ ASBR ေတြက OSPF ထဲကို၀င္လာမယ္႕ အျပင္ External Route အတြက္လုပ္ၾကတယ္။

၆။ Type - 6 LSA : Group Membership LSA လို႕လည္းေခၚတယ္။ MOSPF အတြက္ပါ။ Cisco IOS ေတြအတြက္မဟုတ္ဘူး။ (ေသခ်ာတယ္။ စာေမးပြဲမွာမပါဘူး :P)

၇။ Type 7 LSA : NSSA External LSA လို႕လည္း ေခၚတယ္။ Type 5 အတိုင္းပဲ။ ဒါေပမယ္႕ Area က NSSA ျဖစ္ေနရင္ ဒီ Type ကိုသံုးတယ္။

၈။ Type - 8 LSA : External Attributes LSA လိို႕လည္းေခၚတယ္။ Cisco Router မွာအလုပ္မလုပ္ဘူး။ (ျပတ္သားတယ္ :P)

၉။ Type 9-11 LSA : Opaque LSA မ်ားပါ။ သူတို႕က Generic LSA ေတြပါ။ အနာဂါတ္မွာအလြယ္တကူထပ္ခ်ဲ႕ဖို႕လုပ္ထားတာေတြေပါ႕။ ဥပမာ ဒီထဲက Type – 10 LSA ကို MPLS က သူ႕ရဲ႕ Traffic Engineering မွာသံုးဖို႕ေမြးစားလိုက္တယ္။

ဒီစာေတြဟာ Cisco စာအုပ္ထဲကမုိ႕လို႕ Cisco မွာသံုးမရတဲ႕ LSA ေတြအေၾကာင္းမပါပါဘူး။ ကၽြန္ေတာ္ကိုယ္တိုင္ကလဲ ေလာေလာဆယ္ Cisco စာေမးပြဲပဲေျဖမွာမို႕ ကၽြန္ေတာ္လဲပဲ သိဖို႕မၾကိဳးစားမိေသးဘူး။

**Stub Network - OSPF Stub Network ဆိုသည္မွာသူနဲ႕ သူရဲ႕ OSPF Routing Domain ကို Default Route တစ္ခုတည္းျဖင္႕သာခ်ိတ္ဆက္ထားေသာ အကုန္ပိတ္ တစ္ေပါက္ထြက္ Area ျဖစ္သည္။ အဲဒီ Area မွာအျပင္ကိုထြက္ဖို႕ တစ္ျခား Route မ်ားရွိနိုင္ေသာ္လည္း Area အတြင္းရွိ Router မ်ားသည္ Default Route တစ္ခုတည္းကိုသာ အျပင္ထြက္ရန္လမ္းေၾကာင္းအေနနွင္႕သိၾကသည္။


Ref : Cisco.Press.CCNP.ROUTE.642.902.Official.Certification.Guide.Feb.2010

BGP Vs IGPs


ကြ်န္ေတာ္တို႕ရဲ႕ BGP က တျခား IGP ေတြနဲ႕ တူတာေတြလဲရွိပါတယ္။ မတူတာေတြလဲရွိေပါ႕။ သူက IGP ေတြလို IP Prefix ေတြ Advertise မလုပ္ပါဘူး ။ ဒါေပမယ္႕လဲ တခ်ိဳ႕ information ေတြေတာ႕ advertise လုပ္ရတာေပါ႕။ ဥပမာ- သူက Network Layer Reachability Information (NLRI) ဆိုၿပီး Prefix Length ေတြကို Advertise လုပ္တယ္။ ဒါမွလဲ Route ေတြအမ်ားၾကီးထဲက ဘယ္ Route ကိုေရြးရမလဲဆိုတာ သူသိမွာပါ။ မက္ကနဇင္ အရေျပာရရင္လဲ သူလဲပဲ Neighbour Relation ေတြ လုပ္ထားရတာပဲ။ ဒါမွာ topology information ေတြ exchange လုပ္လို႕ရမယ္ေလ။ OSPF တို႕ EIGRP တို႕လိုပါပဲ။

မတူတာေတြမွာေတာ႕ သူကအားသာတာေတြမ်ားပါတယ္။ IGP ေတြက သူ႕ Neighbour ေတြက ဒီလိုပဲ Subnet တူတူေပၚမွာ Multicast ေတြသံုးၿပီး ေတြ႕ေတြ႕သြားၾကတာပါ။ BGP က်ေတာ႕၊ သူက သူ႕Neighbour ျဖစ္ဖုိ႕အတြက္ subnet တူစရာမလိုဘူး။ ဒါတကယ္အားသာပါတယ္။ ဒါဆိုသူဟာ မတူတဲ႕ Network Subnet နွစ္ခုၾကားမွာ Neighbour Relationship ကိုဘယ္လိုထိန္းထားပါသလဲ။ သီးသန္႕ TCP Connection (port 179) ကိုသံုးၿပီး BGP Message ေတြဖလွယ္တာပါ။ ဒါေၾကာင္႕ Subnet တူတူ မတူတူ ကိစၥမရွိပါဘူး။ ဒါေပမယ္႕ Neighbour Discoverying အတြက္ သီးသန္႕ Configure လုပ္ဖို႕လုိပါမယ္။(မ်ားေသာအားျဖင္႕ မတူတဲ႕ Subnet ေတြ ကိုသာ အျပင္မွာေတြ႕ရပါတယ္။)

ေနာက္… best route ကိုေရြးတဲ႕ေနရာမွာလဲ BGP ကတမ်ိဳး။ တျခား Protocol ေတြကေတာ႕ Metric ေတြေပၚအေျခခံၿပီးေရြးတယ္။ Metric ဆိုတာ Route ရဲ႕ Property တစ္ခုပါပဲ၊ သူကအထဲမွာ Value ေတြပါမယ္။ Routing Algorithm ေတြက အဲဒီ Value ေတြကိုၾကည္႕ၿပီး ဘယ္ Route က ဘယ္ Route ထက္ပိုသာလဲေရြးတယ္။(Metric Value အနဲဆံုးကအေကာင္းဆံုးပဲ)။ ဘာလို႕ေရြးရလဲဆိုေတာ႕ Dynamic Protocol ေတြရဲ႕တာ၀န္အရ သူတို႕ေတြက တတ္နိုင္သေလာက္ ေကာင္းသမ်အေကာင္းဆံုး Route မ်ားျဖင္႕သာလွ်င္ Routing Table ကိုတည္ေဆာက္ရမွာမုိ႕ပဲ။ ဥပမာ- RIP က Metric Value တစ္ခုျဖစ္တဲ႕ hopcounts ေတြကိုၾကည္႕ၿပီး ဘယ္ Route ကေကာင္းလဲဆံုးျဖတ္တာမ်ိဳးေပါ႕။ ထားပါေတာ႕ Metric ေတြကို။ BGP က်ေတာ႕ ပိုရွုပ္ေထြးတဲ႕ process ေတြ ေနာက္ Path Attribute လို႕ေခၚတဲ႕ Metric လိုမ်ိဳးနဲ႕ BGP Message ေတြဖလွယ္ၾကၿပီး အဲဒီ အမ်ိဳးမ်ိဳးေသာ information ေတြေပၚမွာအေျခခံၿပီးေတာ႕ေရြးပါတယ္။

ၿပီးေတာ႕ IGP ေတြက တကယ္႕ကို ထိေရာက္လွ်င္ျမန္တဲ႕ Route ေတြကို ေရြးဖို႕အားသန္ၾကေပမယ္႕၊ BGP က်ေတာ႕ က်ယ္ျပန္႕ၾကီးမား ၿပီး Stable ျဖစ္နိုင္မယ္ဆိုရင္ သိပ္ျမန္တဲလမ္းေၾကာင္းကိုေတာင္ေရြးမွာမဟုတ္ဘူး။ ဒီေနရာမွာ BGP ဟာ အင္တာနက္ Routing Protocol ဆိုတဲ႕အတိုင္း အၾကံၾကီးပါလိမ္႕မယ္။ Demand မ်ားမ်ားကို Handle လုပ္နိုင္မယ္႕ Route ကိုပဲေရြးပါမယ္။ Interior နဲ႕ Exterior ခံယူခ်က္ခ်င္းကြာသြားပါၿပီ။

Ref : Cisco.Press.CCNP.ROUTE.642.902.Official.Certification.Guide.Feb.2010

Adding IP local Pool

ကၽြန္ေတာ္ရဲ႕ အလုပ္သစ္မွာ ပထမဦးဆံုး လုပ္ရမယ္႕ Maintenance ျဖစ္ပါတယ္။ ဟုတ္ပါတယ္။ BRAS ထဲမွာ ရွိေနတဲ႕ IP POOL ေတြကုန္ေတာ႕မွာမို႕ထပ္ထည္႕ေပးရတာပါ။ Colleagues အားလံုးက ေမးသမွ်ေျဖၿပီး ၀ိုင္းကူေပးၾကပါတယ္။ ၾကီးၾကီးမားမား မဟုတ္ေပမယ္႕ Core Network ကိုပထမဦးဆံုး ကိုင္ဖူးတာမို႕ ရင္တမမ နဲ႕ပါ။ အားလံုးေခ်ာေခ်ာေမြ႕ေမြ႕ၿပီးသြားခဲ႕ပါတယ္။


E320:(config)#

#Calculate local Pool before configure (first address, last address, and mask)

#

#Putting ip local pool command

#Eg.

IP local pool (name)meganfox (start ip )110.xxx.xxx.65 (end ip)110.xxx.xxx.126

#Configuration loopback address for ip pool

#Eg.

IP address (first address of ip pool1)110.xxx.xxx.65 (full mask)255.255.255.255

#Putting route for the IP pool

#Eg.

Ip route (network ip)110.xxx.xxx.64 (netmask)255.255.255.192 (null interface)null0

#Setting Route Map for IP pool

Eg.

ip prefix-(list or tree) "(name)" permit (network) 110.xxx.xxx.64/26

ၿပီးေတာ႕ Verify လုပ္ၾကည္႕ပါတယ္။

#Verifying the newly add pool

Eg.

Show ip local pool | inc 110.xxx.xxx.xxx

#Verifying route for newly added pool

Eg.

Show ip bgp | inc 110.xxx.xxx.xxx

====

တကယ္တမ္း Configure လုပ္ရတာေလးက ေအာက္ကဟာေလးပါပဲ။


vi LoiKaw

config t

interface loopback 0

ip address 110.xxx.xxx.66 255.255.255.255 secondary

ip local pool MeganFox 110.xxx.xxx.66 110.xxx.xxx.126

router bgp 65114

network
110.xxx.xxx.64 mask 255.255.255.192

ip route 110.xxx.xxx.64 255.255.255.192 null0