SlideShare a Scribd company logo
Dubai,	MUM	Training-The-Trainer
Prepare	By:	Teav	Sovandara
Date:	October	18-20,	2016
Internet	Route	Filter
1
About	Me
• My	name	is	Teav	Sovandara
• I’m	a	NOC	Manager	at	MaxBIT	ISP
• I	started	working	on	MikroTik since	2013
• I	got	MikroTik certification	such	as	MTCNA,	MTCRE,	MTCTCE,	MTCINE
• I’m	also	a	MikroTik academy	trainer	and	consultant	at	ITTC
2
Agenda
• Introduction	to	the	Internet	routing
• Getting	start	with	Route	filter
• Route	filter	implementation	in	BGP
• LAB
3
Introduction	to	the	Internet	routing
4
Introduction	to	the	Internet	routing
5
transit	Provider
Here	we	are
Introduction	to	the	Internet	routing
• Internet	consist	of	many	computer	network	combine	together.
• Each	network	identify	by	unique	autonomous	system	number	(ASN)
• ISP	advertise	their	prefix	to	the	global	network	through	transit	provider.
• ISP	also	need	to	receive	prefix	from	their	transit	provider,	or	they	use	default	
route.
• There	is	only	one	routing	protocol	called	BGP	(Border	Gateway	Protocol)	can	
handle	the	Internet	route
• No	one	control	the	Internet,	So	Internet	is	an	untruth	network
• You	can	see	your	transit	provider	on	the	diagram	here	http://bgp.he.net/
6
Introduction	to	the	Internet	routing
How	to	secure	your	network?
7
There	are	many	problem	happen	on	global	Internet	routing	such	as,	route	
hijacking,	route	leaking and	other	mistake
Introduction	to	the	Internet	routing
How	to	provide	a	good	Internet	quality	?
8
Simply,	you	need	to	find	the	
shortest	path	to	the	
destination.	But	for	some	
reason	shortest	path	is	not	
always	the	best	one.	
For	recommendation,	
Internet	Provider	should	be	
multi-home,	so	you	can	do	
traffic	engineering.
Getting	start	with	route	filter
• Route	filter	is	in	Routing	>	Filters
• We	can	use	route	filter	on	OSPF,	
BGP,	RIP	…ect
• We	can	change	the	attribute	to	
the	route	via	route	filter.	Ex:	we	
set	local	preference	to	BGP	route.
• With	route	filter	we	can	manage	
which	prefix,	we	accept	which	
prefix	we	don’t
• You	can	filtering	route	in	two	
ways,	Incoming	and	outgoing
9
Getting	start	with	route	filter
• Route	filter	match	from	top	to	bottom	follow	the	sequence	number
• Route	filter	is	if	and	then	condition	
If	
Matcher	
then
do	action
• There	are	two	filter	techniques:
• Permit	some	deny	all
• Deny	some	permit	all
10
Getting	start	with	route	filter
• Route	filter	to	filter	unwanted	route.	So	the	prefix	that	we	filtered		will	
not	visible	on	routing	table.
10.1.1.0/24
10.1.2.0/24
10.1.3.0/24
10.1.1.0/24
10.1.2.0/24
10.1.3.0/24
Accept
10.1.4.0/24
Deny
10.1.4.0/24
11
Getting	start	with	route	filter
• Changing	attribute	on	incoming	prefix
12
Route	filter	implementation	in	BGP
ØOut	Policy
Upstream/
Transit
Upstream/
Transit
• Announce	only	own	prefix	and	
customer	prefix	to	upstream	and	
peering
ØIn	Policy
• Accept	default	route	only	you	need	it
• Do	not	accept	own	prefix
• Don’t	accept	private	(rfc1918)	and	certain	special	use	prefix
• Don’t	accept	prefix	longer	then	/24
AS132730
Customer
Internet
103.224.30.0/24
103.224.31.0/24
13
Route	filter	implementation	in	BGP
ØOut	Policy
• add	action=accept	chain=EBGP-OUT	prefix=103.224.30.0/24
• add	action=accept	chain=EBGP-OUT	prefix=103.224.31.0/24
• add	action=discard	chain=EBGP-OUT
ØIn	Policy
• add	action=discard	chain=EBGP-IN	prefix=103.224.30.0/24	
• add	action=discard	chain=EBGP-IN	prefix=10.0.0.0/8		prefix-length=8-32
• add	action=discard	chain=EBGP-IN	prefix=172.16.0.0/12		prefix-length=12-32
• add	action=discard	chain=EBGP-IN	prefix=192.168.0.0/16	prefix-length=16-32
• add	action=discard	chain=EBGP-IN	prefix=0.0.0.0/0	prefix-length=25-32
• add	action=accept	chain=EBGP-IN
14
EBGP	filter	on
transit	link
Route	filter	implementation	in	BGP
ØOut	Policy
• add	action=discard	chain=EBGP-CUS-OUT	prefix=103.224.31.0/24
• add	action=accept	chain=EBGP-CUS-OUT
ØIn	Policy
• add	action=accept	chain=EBGP-IN	prefix=103.224.31.0/24	
• add	action=discard	chain=EBGP-IN
15
EBGP	filter	on
customer	link
LAB
AS	200
AS	100
1.1.0.0/30
.1 .2
• AS	200	own	prefix
• 2.2.0.0/24			Infrastructure
• 2.2.1.0/24			Server	Farm
• 2.2.2.0/24			Routed	subnet	for	customer
• 2.2.3.0/24				Customer	Point	to	Point
• AS	100	own	prefix
• 1.1.0.0/24			Infrastructure
• 1.1.1.0/24			Server	Farm
• 1.1.2.0/24			Routed	subnet	for	customer
• 1.1.3.0/24			Customer	Point	to	Point
BGP	Peer
16
Eth1 Eth1
LAB
Requirement
1. Setup	EBGP	Peering	between	AS	100	and	200
2. Each	ISP	advertise	only	their	own	prefix
3. Do	not	accept	own	prefix	from	remote	peering
4. Do	not	accept	default	route
5. Do	not	accept	private	IP	(RFC1918)
6. Only	your	prefix	able	to	advertise	out	from	your	network
17
LAB
AS	100
/ip address	add	address=1.1.0.1/30	
interface=ether1 network=1.1.0.0
/routing	bgp instance	add	as=100	client-to-client-
reflection=no	name=AS100	router-id=1.1.0.1
/routing	bgp peer
add	in-filter=EBGP-IN	out-filter=EBGP-OUT	
instance=AS100	name=EBGP-PEER	remote-
address=1.1.0.2		remote-as=200	ttl=default
/routing	bgp network
add	network=1.1.0.0/22	synchronize=no	
add	network=1.1.0.0/24	synchronize=no
add	network=1.1.1.0/24	synchronize=no
add	network=1.1.2.0/24	synchronize=no
add	network=1.1.3.0/24	synchronize=no 18
/routing	filter
add	action=discard	chain=EBGP-IN	prefix=1.1.0.0/22	prefix-
length=22-24
add	action=discard	chain=EBGP-IN	prefix=0.0.0.0/0
add	action=discard	chain=EBGP-IN	prefix=10.0.0.0/8	prefix-
length=8-32
add	action=discard	chain=EBGP-IN	prefix=172.16.0.0/12	
prefix-length=12-32
add	action=discard	chain=EBGP-IN	prefix=192.168.0.0/16	
prefix-length=16-32
add	action=accept	chain=EBGP-IN
add	action=accept	chain=EBGP-OUT	prefix=1.1.0.0/22	
prefix-length=22-24
add	action=discard	chain=EBGP-OUT
Step	3
Step	4
Step	5
Step	1
Step	2
Step	6
LAB
AS	200
/ip address	add	address=1.1.0.2/30	
interface=ether1 network=1.1.0.0
/routing	bgp instance	add	as=200	client-to-client-
reflection=no	name=AS200	router-id=1.1.0.2
/routing	bgp peer
add	in-filter=EBGP-IN	instance=AS200	name=EBGP-
PEER	remote-address=1.1.0.1		remote-as=100	
ttl=default
/routing	bgp network
add	network=2.2.0.0/22	synchronize=no
add	network=2.2.0.0/24	synchronize=no
add	network=2.2.1.0/24	synchronize=no
add	network=2.2.2.0/24	synchronize=no
add	network=2.2.3.0/24	synchronize=no
19
/routing	filter
add	action=discard	chain=EBGP-IN	prefix=2.2.0.0/22	prefix-
length=22-24
add	action=discard	chain=EBGP-IN	prefix=0.0.0.0/0
add	action=discard	chain=EBGP-IN	prefix=10.0.0.0/8	prefix-
length=8-32
add	action=discard	chain=EBGP-IN	prefix=172.16.0.0/12	
prefix-length=12-32
add	action=discard	chain=EBGP-IN	prefix=192.168.0.0/16	
prefix-length=16-32
add	action=accept	chain=EBGP-IN
add	action=accept	chain=EBGP-OUT	prefix=2.2.0.0/22	
prefix-length=22-24
add	action=discard	chain=EBGP-OUT
Step	3
Step	4
Step	5
Step	1
Step	2 Step	6
LAB Verification
20
AS	200
AS	100 .1 .2
This	is	my	new	prefix
1.1.1.0/24
No	no	,	I	don’t	
accept	it
Try	to	advertise	prefix	of	AS	100	from	AS	200	and	check	
whether	AS	100	receive	their	own	prefix	or	not
Summary
21
• Route	filter	is	the	only	place	you	can	do	Internet	routing	policy
• Route	filter	rule	read	from	top	to	bottom	follow	the	sequence	
number
• When	you	do	filter	on	incoming	route,	it	will	affect	upload	traffic
• When	you	do	filter	on	outgoing	route,	it	will	affect	download	traffic
Thanks	you	!
22

More Related Content

What's hot

PPPoE With Mikrotik and Radius
PPPoE With Mikrotik and RadiusPPPoE With Mikrotik and Radius
PPPoE With Mikrotik and Radius
Dashamir Hoxha
 
Mikrotik router os qos best practice
Mikrotik router os qos best practiceMikrotik router os qos best practice
Mikrotik router os qos best practice
Bassel Kablawi
 
BGP Services IP Transit vs IP Peering
BGP Services  IP Transit vs IP PeeringBGP Services  IP Transit vs IP Peering
BGP Services IP Transit vs IP Peering
GLC Networks
 
VXLAN and FRRouting
VXLAN and FRRoutingVXLAN and FRRouting
VXLAN and FRRouting
Faisal Reza
 
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016
Rofiq Fauzi
 
Workshop IPv6 APJII Jawa Barat
Workshop IPv6 APJII Jawa Barat Workshop IPv6 APJII Jawa Barat
Workshop IPv6 APJII Jawa Barat
Faisal Reza
 
BGP on mikrotik
BGP on mikrotikBGP on mikrotik
BGP on mikrotik
Achmad Mardiansyah
 
MikroTik & RouterOS
MikroTik & RouterOSMikroTik & RouterOS
MikroTik & RouterOS
Faelix Ltd
 
MUM Laos 2017 - Choosing Mikrotik for Your Network
MUM Laos 2017 - Choosing Mikrotik for Your NetworkMUM Laos 2017 - Choosing Mikrotik for Your Network
MUM Laos 2017 - Choosing Mikrotik for Your Network
Faisal Reza
 
MikroTik Firewall : Securing your Router with Port Knocking
MikroTik Firewall : Securing your Router with Port KnockingMikroTik Firewall : Securing your Router with Port Knocking
MikroTik Firewall : Securing your Router with Port Knocking
Akbar Azwir, MM, PMP, PMI-SP, PSM I, CISSP
 
Network Simulation - Prague 2015
Network Simulation - Prague 2015Network Simulation - Prague 2015
Network Simulation - Prague 2015
Wardner Maia
 
MikroTik Security
MikroTik SecurityMikroTik Security
MikroTik Security
Rofiq Fauzi
 
MTCNA
MTCNAMTCNA
MikroTik Basic Training Class - Online Moduls - English
 MikroTik Basic Training Class - Online Moduls - English MikroTik Basic Training Class - Online Moduls - English
MikroTik Basic Training Class - Online Moduls - English
Adhie Lesmana
 
MTCNA - MikroTik Certified Network Associate - v2
MTCNA - MikroTik Certified Network Associate - v2MTCNA - MikroTik Certified Network Associate - v2
MTCNA - MikroTik Certified Network Associate - v2
Yaser Rahmati
 
Mpls security - Venice 2014
Mpls security - Venice 2014 Mpls security - Venice 2014
Mpls security - Venice 2014
Wardner Maia
 
Mikrotik® MPLS/VPN Lab Part 1
Mikrotik® MPLS/VPN Lab Part 1Mikrotik® MPLS/VPN Lab Part 1
Mikrotik® MPLS/VPN Lab Part 1
Kaveh Khosravi
 
Mikrotik Network Simulator (MUM Presentation Material 2013)
Mikrotik Network Simulator (MUM Presentation Material 2013)Mikrotik Network Simulator (MUM Presentation Material 2013)
Mikrotik Network Simulator (MUM Presentation Material 2013)
Rofiq Fauzi
 
Mikrotik Hotspot With Queue Tree BW Management
Mikrotik Hotspot With Queue Tree BW ManagementMikrotik Hotspot With Queue Tree BW Management
Mikrotik Hotspot With Queue Tree BW Management
gopartheredbuff
 
CAPsMANv2 | Wireless APs Controller by MikroTik
CAPsMANv2 | Wireless APs Controller by MikroTikCAPsMANv2 | Wireless APs Controller by MikroTik
CAPsMANv2 | Wireless APs Controller by MikroTik
Dobri Boyadzhiev
 

What's hot (20)

PPPoE With Mikrotik and Radius
PPPoE With Mikrotik and RadiusPPPoE With Mikrotik and Radius
PPPoE With Mikrotik and Radius
 
Mikrotik router os qos best practice
Mikrotik router os qos best practiceMikrotik router os qos best practice
Mikrotik router os qos best practice
 
BGP Services IP Transit vs IP Peering
BGP Services  IP Transit vs IP PeeringBGP Services  IP Transit vs IP Peering
BGP Services IP Transit vs IP Peering
 
VXLAN and FRRouting
VXLAN and FRRoutingVXLAN and FRRouting
VXLAN and FRRouting
 
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016
 
Workshop IPv6 APJII Jawa Barat
Workshop IPv6 APJII Jawa Barat Workshop IPv6 APJII Jawa Barat
Workshop IPv6 APJII Jawa Barat
 
BGP on mikrotik
BGP on mikrotikBGP on mikrotik
BGP on mikrotik
 
MikroTik & RouterOS
MikroTik & RouterOSMikroTik & RouterOS
MikroTik & RouterOS
 
MUM Laos 2017 - Choosing Mikrotik for Your Network
MUM Laos 2017 - Choosing Mikrotik for Your NetworkMUM Laos 2017 - Choosing Mikrotik for Your Network
MUM Laos 2017 - Choosing Mikrotik for Your Network
 
MikroTik Firewall : Securing your Router with Port Knocking
MikroTik Firewall : Securing your Router with Port KnockingMikroTik Firewall : Securing your Router with Port Knocking
MikroTik Firewall : Securing your Router with Port Knocking
 
Network Simulation - Prague 2015
Network Simulation - Prague 2015Network Simulation - Prague 2015
Network Simulation - Prague 2015
 
MikroTik Security
MikroTik SecurityMikroTik Security
MikroTik Security
 
MTCNA
MTCNAMTCNA
MTCNA
 
MikroTik Basic Training Class - Online Moduls - English
 MikroTik Basic Training Class - Online Moduls - English MikroTik Basic Training Class - Online Moduls - English
MikroTik Basic Training Class - Online Moduls - English
 
MTCNA - MikroTik Certified Network Associate - v2
MTCNA - MikroTik Certified Network Associate - v2MTCNA - MikroTik Certified Network Associate - v2
MTCNA - MikroTik Certified Network Associate - v2
 
Mpls security - Venice 2014
Mpls security - Venice 2014 Mpls security - Venice 2014
Mpls security - Venice 2014
 
Mikrotik® MPLS/VPN Lab Part 1
Mikrotik® MPLS/VPN Lab Part 1Mikrotik® MPLS/VPN Lab Part 1
Mikrotik® MPLS/VPN Lab Part 1
 
Mikrotik Network Simulator (MUM Presentation Material 2013)
Mikrotik Network Simulator (MUM Presentation Material 2013)Mikrotik Network Simulator (MUM Presentation Material 2013)
Mikrotik Network Simulator (MUM Presentation Material 2013)
 
Mikrotik Hotspot With Queue Tree BW Management
Mikrotik Hotspot With Queue Tree BW ManagementMikrotik Hotspot With Queue Tree BW Management
Mikrotik Hotspot With Queue Tree BW Management
 
CAPsMANv2 | Wireless APs Controller by MikroTik
CAPsMANv2 | Wireless APs Controller by MikroTikCAPsMANv2 | Wireless APs Controller by MikroTik
CAPsMANv2 | Wireless APs Controller by MikroTik
 

Similar to MikroTik Internet Route Filter

Routing
RoutingRouting
Access Control Firewall
Access Control FirewallAccess Control Firewall
Access Control Firewall
karanwayne
 
Update-IR-IX
Update-IR-IXUpdate-IR-IX
Update-IR-IX
Shahab Vahabzadeh
 
Network Monitoring System
Network Monitoring SystemNetwork Monitoring System
Network Monitoring System
Rofiq Fauzi
 
PACE-IT: Introduction to Routing Protocols - N10 006
PACE-IT: Introduction to Routing Protocols - N10 006PACE-IT: Introduction to Routing Protocols - N10 006
PACE-IT: Introduction to Routing Protocols - N10 006
Pace IT at Edmonds Community College
 
Enterprise Multihoming - CTO Forum
Enterprise Multihoming - CTO ForumEnterprise Multihoming - CTO Forum
Enterprise Multihoming - CTO Forum
APNIC
 
RIP Presentation .ppt.pptx
RIP Presentation .ppt.pptxRIP Presentation .ppt.pptx
RIP Presentation .ppt.pptx
MujahidIslam27
 
chapter-1_iot.pptx
chapter-1_iot.pptxchapter-1_iot.pptx
chapter-1_iot.pptx
RAHULRAJ438202
 
IOT UNIT 1B.ppt
IOT UNIT 1B.pptIOT UNIT 1B.ppt
IOT UNIT 1B.ppt
madhavanmohan1
 
BERECs Network Neutrality Measurement Methodology, and how it supports the EU...
BERECs Network Neutrality Measurement Methodology, and how it supports the EU...BERECs Network Neutrality Measurement Methodology, and how it supports the EU...
BERECs Network Neutrality Measurement Methodology, and how it supports the EU...
AlexMinov
 
intro to iot.pdf
intro to iot.pdfintro to iot.pdf
intro to iot.pdf
DaisyFrancis9
 
Growing the Internet in Myanmar - Myanmar Telecom & ICT Global Summit
Growing the Internet in Myanmar - Myanmar Telecom & ICT Global SummitGrowing the Internet in Myanmar - Myanmar Telecom & ICT Global Summit
Growing the Internet in Myanmar - Myanmar Telecom & ICT Global Summit
APNIC
 
Networking Fundamentals
Networking FundamentalsNetworking Fundamentals
Networking Fundamentals
ACIT Education Pvt Ltd
 
AFSIG 2023: Internet routing and addressing
AFSIG 2023: Internet routing and addressingAFSIG 2023: Internet routing and addressing
AFSIG 2023: Internet routing and addressing
APNIC
 
PACE-IT: Introduction_to Routing Concepts (part 2) - N10 006
PACE-IT: Introduction_to Routing Concepts (part 2) - N10 006PACE-IT: Introduction_to Routing Concepts (part 2) - N10 006
PACE-IT: Introduction_to Routing Concepts (part 2) - N10 006
Pace IT at Edmonds Community College
 
Mtcna outline
Mtcna outlineMtcna outline
Mtcna outline
Grazi Silva
 
MTCNA_Outline.pdf
MTCNA_Outline.pdfMTCNA_Outline.pdf
MTCNA_Outline.pdf
dannielangel00
 
Open access network
Open access networkOpen access network
Open access network
Mukesh Binani
 
MTCNA Training outline, Certified Network Associate (MTCNA)
MTCNA Training outline, Certified Network Associate (MTCNA)MTCNA Training outline, Certified Network Associate (MTCNA)
MTCNA Training outline, Certified Network Associate (MTCNA)
Tũi Wichets
 
Practical Implementation of Large BGP communities with Geotags and Traffic En...
Practical Implementation of Large BGP communities with Geotags and Traffic En...Practical Implementation of Large BGP communities with Geotags and Traffic En...
Practical Implementation of Large BGP communities with Geotags and Traffic En...
Muhammad Moinur Rahman
 

Similar to MikroTik Internet Route Filter (20)

Routing
RoutingRouting
Routing
 
Access Control Firewall
Access Control FirewallAccess Control Firewall
Access Control Firewall
 
Update-IR-IX
Update-IR-IXUpdate-IR-IX
Update-IR-IX
 
Network Monitoring System
Network Monitoring SystemNetwork Monitoring System
Network Monitoring System
 
PACE-IT: Introduction to Routing Protocols - N10 006
PACE-IT: Introduction to Routing Protocols - N10 006PACE-IT: Introduction to Routing Protocols - N10 006
PACE-IT: Introduction to Routing Protocols - N10 006
 
Enterprise Multihoming - CTO Forum
Enterprise Multihoming - CTO ForumEnterprise Multihoming - CTO Forum
Enterprise Multihoming - CTO Forum
 
RIP Presentation .ppt.pptx
RIP Presentation .ppt.pptxRIP Presentation .ppt.pptx
RIP Presentation .ppt.pptx
 
chapter-1_iot.pptx
chapter-1_iot.pptxchapter-1_iot.pptx
chapter-1_iot.pptx
 
IOT UNIT 1B.ppt
IOT UNIT 1B.pptIOT UNIT 1B.ppt
IOT UNIT 1B.ppt
 
BERECs Network Neutrality Measurement Methodology, and how it supports the EU...
BERECs Network Neutrality Measurement Methodology, and how it supports the EU...BERECs Network Neutrality Measurement Methodology, and how it supports the EU...
BERECs Network Neutrality Measurement Methodology, and how it supports the EU...
 
intro to iot.pdf
intro to iot.pdfintro to iot.pdf
intro to iot.pdf
 
Growing the Internet in Myanmar - Myanmar Telecom & ICT Global Summit
Growing the Internet in Myanmar - Myanmar Telecom & ICT Global SummitGrowing the Internet in Myanmar - Myanmar Telecom & ICT Global Summit
Growing the Internet in Myanmar - Myanmar Telecom & ICT Global Summit
 
Networking Fundamentals
Networking FundamentalsNetworking Fundamentals
Networking Fundamentals
 
AFSIG 2023: Internet routing and addressing
AFSIG 2023: Internet routing and addressingAFSIG 2023: Internet routing and addressing
AFSIG 2023: Internet routing and addressing
 
PACE-IT: Introduction_to Routing Concepts (part 2) - N10 006
PACE-IT: Introduction_to Routing Concepts (part 2) - N10 006PACE-IT: Introduction_to Routing Concepts (part 2) - N10 006
PACE-IT: Introduction_to Routing Concepts (part 2) - N10 006
 
Mtcna outline
Mtcna outlineMtcna outline
Mtcna outline
 
MTCNA_Outline.pdf
MTCNA_Outline.pdfMTCNA_Outline.pdf
MTCNA_Outline.pdf
 
Open access network
Open access networkOpen access network
Open access network
 
MTCNA Training outline, Certified Network Associate (MTCNA)
MTCNA Training outline, Certified Network Associate (MTCNA)MTCNA Training outline, Certified Network Associate (MTCNA)
MTCNA Training outline, Certified Network Associate (MTCNA)
 
Practical Implementation of Large BGP communities with Geotags and Traffic En...
Practical Implementation of Large BGP communities with Geotags and Traffic En...Practical Implementation of Large BGP communities with Geotags and Traffic En...
Practical Implementation of Large BGP communities with Geotags and Traffic En...
 

Recently uploaded

Bangalore Call Girls 9079923931 With -Cuties' Hot Call Girls
Bangalore Call Girls 9079923931 With -Cuties' Hot Call GirlsBangalore Call Girls 9079923931 With -Cuties' Hot Call Girls
Bangalore Call Girls 9079923931 With -Cuties' Hot Call Girls
narwatsonia7
 
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
APNIC
 
Securing BGP: Operational Strategies and Best Practices for Network Defenders...
Securing BGP: Operational Strategies and Best Practices for Network Defenders...Securing BGP: Operational Strategies and Best Practices for Network Defenders...
Securing BGP: Operational Strategies and Best Practices for Network Defenders...
APNIC
 
Bengaluru Dreamin' 24 - Personal Branding
Bengaluru Dreamin' 24 - Personal BrandingBengaluru Dreamin' 24 - Personal Branding
Bengaluru Dreamin' 24 - Personal Branding
Tarandeep Singh
 
Decentralized Justice in Gaming and Esports
Decentralized Justice in Gaming and EsportsDecentralized Justice in Gaming and Esports
Decentralized Justice in Gaming and Esports
Federico Ast
 
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
3a0sd7z3
 
KubeCon & CloudNative Con 2024 Artificial Intelligent
KubeCon & CloudNative Con 2024 Artificial IntelligentKubeCon & CloudNative Con 2024 Artificial Intelligent
KubeCon & CloudNative Con 2024 Artificial Intelligent
Emre Gündoğdu
 
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
dtagbe
 
How to make a complaint to the police for Social Media Fraud.pdf
How to make a complaint to the police for Social Media Fraud.pdfHow to make a complaint to the police for Social Media Fraud.pdf
How to make a complaint to the police for Social Media Fraud.pdf
Infosec train
 
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
rtunex8r
 
快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
3a0sd7z3
 
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
thezot
 
cyber crime.pptx..........................
cyber crime.pptx..........................cyber crime.pptx..........................
cyber crime.pptx..........................
GNAMBIKARAO
 

Recently uploaded (13)

Bangalore Call Girls 9079923931 With -Cuties' Hot Call Girls
Bangalore Call Girls 9079923931 With -Cuties' Hot Call GirlsBangalore Call Girls 9079923931 With -Cuties' Hot Call Girls
Bangalore Call Girls 9079923931 With -Cuties' Hot Call Girls
 
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
 
Securing BGP: Operational Strategies and Best Practices for Network Defenders...
Securing BGP: Operational Strategies and Best Practices for Network Defenders...Securing BGP: Operational Strategies and Best Practices for Network Defenders...
Securing BGP: Operational Strategies and Best Practices for Network Defenders...
 
Bengaluru Dreamin' 24 - Personal Branding
Bengaluru Dreamin' 24 - Personal BrandingBengaluru Dreamin' 24 - Personal Branding
Bengaluru Dreamin' 24 - Personal Branding
 
Decentralized Justice in Gaming and Esports
Decentralized Justice in Gaming and EsportsDecentralized Justice in Gaming and Esports
Decentralized Justice in Gaming and Esports
 
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
 
KubeCon & CloudNative Con 2024 Artificial Intelligent
KubeCon & CloudNative Con 2024 Artificial IntelligentKubeCon & CloudNative Con 2024 Artificial Intelligent
KubeCon & CloudNative Con 2024 Artificial Intelligent
 
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
 
How to make a complaint to the police for Social Media Fraud.pdf
How to make a complaint to the police for Social Media Fraud.pdfHow to make a complaint to the police for Social Media Fraud.pdf
How to make a complaint to the police for Social Media Fraud.pdf
 
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
 
快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
 
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
 
cyber crime.pptx..........................
cyber crime.pptx..........................cyber crime.pptx..........................
cyber crime.pptx..........................
 

MikroTik Internet Route Filter