My SDN Lab-1
Here is the my first SDN lab test with Cisco XNC (Extended Network Controller). You can use this topology with Floodlight or OpenDaylight controller if possible for you. The pre-requesities are; once before you had XNC controller installation with specific controller modules like ‘Troubleshoot’, ‘TIF Manager’ and ‘Network Properties’.
This is my screenshot with this pre-requsities.
And the other pre-requisite is you must have a network running with SDN like www.mininet.org.
Now we can start to our SDN simulation lab with this command on the remote controller side.
Last login: Mon Feb 2 12:45:55 2015 [root@CISCO_XNC ~]# [root@CISCO_XNC ~]# [root@CISCO_XNC ~]# [root@CISCO_XNC ~]# [root@CISCO_XNC ~]# iptables -L INPUT -n --line-numbers Chain INPUT (policy ACCEPT) num target prot opt source destination 1 ACCEPT all -- 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED 2 ACCEPT icmp -- 0.0.0.0/0 0.0.0.0/0 3 ACCEPT all -- 0.0.0.0/0 0.0.0.0/0 4 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:22 5 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:80 6 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpts:2001:3024 7 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpts:32768:61000 8 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW multiport dports 6633,8022,8080,8443 9 REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited [root@CISCO_XNC ~]# export JAVA_HOME=/usr/java/latest/ [root@CISCO_XNC ~]# cd /opt/xnc/ [root@CISCO_XNC xnc]# /opt/xnc/runxnc.sh -start 8022 Another instance of controller running, check with /opt/xnc/runxnc.sh -status [root@CISCO_XNC xnc]# /opt/xnc/runxnc.sh -status Controller with PID: 1364 -- Doesn't seem to exist [root@CISCO_XNC xnc]# /opt/xnc/runxnc.sh -status Doesn't seem any Controller daemon is currently running, at least no PID file has been found [root@CISCO_XNC xnc]# fuser -n tcp 8022 [root@CISCO_XNC xnc]# fuser -n tcp 8022 [root@CISCO_XNC xnc]# /opt/xnc/runxnc.sh -stop Doesn't seem any Controller daemon is currently running [root@CISCO_XNC xnc]# /opt/xnc/runxnc.sh -start 8022 Running controller in background with PID: 1411, to connect to it please SSH to this host on port 8022
Let us attention to firstly we have to stop current runxnc.sh script and then run again this runxnc.sh script. !!!
Also we can reach Cisco’s XNC web interface. Type your web-browser http://[your-controller’s-ip-address:8080] In my lab topology my controller’s IP address is http://10.206.24.24:8080
Here is my screenshot.
username: admin
password: admin
Controller is OK. Then we can start mininet topology and let us see hosts and router’s (h1,h2,h3) IP, default gateway assignments and we can not ping from h1 to h2 with below commands.
mininet@mininet-vm:~$ sudo mn --controller=remote,ip=10.206.24.24 --topo=single,3 --mac -x mininet> h1 ifconfig h1-eth0 192.168.1.1 netmask 255.255.255.0 mininet> h1 route add default gw 192.168.1.254 mininet> h2 ifconfig h2-eth0 192.168.2.2 netmask 255.255.255.0 mininet> h2 route add default gw 192.168.2.254 mininet> h3 ifconfig h3-eth0:1 192.168.1.254 mininet> h3 ifconfig h3-eth0:2 192.168.2.254 mininet> h1 ping -c1 192.168.2.2 PING 192.168.2.2 (192.168.2.2) 56(84) bytes of data. From 192.168.1.1 icmp_seq=1 Destination Host Unreachable --- 192.168.2.2 ping statistics --- 1 packets transmitted, 0 received, +1 errors, 100% packet loss, time 0ms
This is my SDN Lab topology.
We can not ping. Why? Because h1 and h2 are in different network subnets. We must configure these following flows to our Cisco XNC controller. Via these flows in this topology our fake router h3 will route the ICMP packet as in source IP address 192.168.1.1 and destination IP address 192.168.2.2.
mininet> dpctl add-flow arp,actions=flood *** s1 ------------------------------------------------------------------------ mininet> dpctl add-flow ip,dl_src=00:00:00:00:00:01,dl_dst=00:00:00:00:00:03,nw_dst=192.168.2.2,actions=mod_dl_dst:00:00:00:00:00:02,output:2 *** s1 ------------------------------------------------------------------------ mininet> dpctl add-flow ip,dl_src=00:00:00:00:00:02,dl_dst=00:00:00:00:00:03,nw_dst=192.168.1.1,actions=mod_dl_dst:00:00:00:00:00:01,output:1 *** s1 ------------------------------------------------------------------------ mininet> dpctl add-flow dl_dst=00:00:00:00:00:03,actions=drop *** s1 ------------------------------------------------------------------------
Then dump these flows with following command.
mininet> dpctl dump-flows *** s1 ------------------------------------------------------------------------ NXST_FLOW reply (xid=0x4): cookie=0x0, duration=10.946s, table=0, n_packets=0, n_bytes=0, idle_age=10, dl_dst=00:00:00:00:00:03 actions=drop cookie=0x0, duration=52.094s, table=0, n_packets=0, n_bytes=0, idle_age=52, ip,dl_src=00:00:00:00:00:01,dl_dst=00:00:00:00:00:03,nw_dst=192.168.2.2 actions=mod_dl_dst:00:00:00:00:00:02,output:2 cookie=0x0, duration=25.993s, table=0, n_packets=0, n_bytes=0, idle_age=25, ip,dl_src=00:00:00:00:00:02,dl_dst=00:00:00:00:00:03,nw_dst=192.168.1.1 actions=mod_dl_dst:00:00:00:00:00:01,output:1 cookie=0x0, duration=82.373s, table=0, n_packets=0, n_bytes=0, idle_age=82, arp actions=FLOOD
OK. We saw 4 switch flows on our controller. Now let us ping again from h1 to h2.
mininet> h1 ping -c5 192.168.2.2 PING 192.168.2.2 (192.168.2.2) 56(84) bytes of data. 64 bytes from 192.168.2.2: icmp_seq=1 ttl=64 time=0.675 ms 64 bytes from 192.168.2.2: icmp_seq=2 ttl=64 time=0.089 ms 64 bytes from 192.168.2.2: icmp_seq=3 ttl=64 time=0.142 ms 64 bytes from 192.168.2.2: icmp_seq=4 ttl=64 time=0.096 ms 64 bytes from 192.168.2.2: icmp_seq=5 ttl=64 time=0.094 ms --- 192.168.2.2 ping statistics --- 5 packets transmitted, 5 received, 0% packet loss, time 4001ms rtt min/avg/max/mdev = 0.089/0.219/0.675/0.228 ms
Success!!! Everything looks fine. We have a look from the controller’s web-interface side. First as in flows;
after as in ports GUI.
All counters on ports GUI Rx and Tx bytes, packets are increasing. Flows are populated on xnc controller.
Yes this is SDN revolution. I want make my own router running openflow. And also one day, I want that every protocol will be open.
Special thanks to my wife Aysegul Kiraba Gol for her valuable efforts on me.
Хорошо смотрится реклама, где максимально используется окружающее пространство
https://clck.ru/LhXgs
https://clck.ru/LhZ9J
https://clck.ru/LhVuE
https://clck.ru/LhX5e
https://clck.ru/LhZBW
https://clck.ru/LhXxH
https://clck.ru/LhVGm
https://clck.ru/LhXED
https://clck.ru/LhUpN
https://clck.ru/LhVqW
https://clck.ru/LhZB6
https://clck.ru/LhUwK
https://clck.ru/LKtEp
https://clck.ru/LhZC3
https://clck.ru/LhXiF
Your comment is awaiting moderation.
Хорошо смотрится реклама, где максимально используется окружающее пространство
https://clck.ru/LhYiQ
https://clck.ru/LhVUD
https://clck.ru/LhWav
https://clck.ru/LhYni
https://clck.ru/LhYMP
https://clck.ru/LhUwK
https://clck.ru/LhXbC
https://clck.ru/LhUyK
https://clck.ru/LhXzd
https://clck.ru/LhU55
https://clck.ru/LhYWY
https://clck.ru/LhVMa
https://clck.ru/LhXij
https://clck.ru/LhWwm
https://clck.ru/LhYWW
Your comment is awaiting moderation.
Хорошо смотрится реклама, где максимально используется окружающее пространство
http://www.gadali.ru/9-%d0%bc%d0%b5%d1%87%d0%b5%d0%b9-%d1%82%d0%b0%d1%80%d0%be-%d0%b7%d0%bd%d0%b0%d1%87%d0%b5%d0%bd%d0%b8%d0%b5.php?unapproved=20474&moderation-hash=0d23da6f6899dd9ef4749291f8e51c27#comment-20474
http://www.klima-ko.pl/preparing-your-home-before-vacation/?unapproved=16211&moderation-hash=c7fd13a42102b81f239e1648c3228e04#comment-16211
http://napoliproverbitradizioni.altervista.org/portale/?q=node/825&page=3391#comment-286749
http://forum.opencart-destek.com/konu-%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%BD%D0%B5%D1%82-%D0%BF%D1%80%D0%BE%D0%B4%D0%B2%D0%B8%D0%B6%D0%B5%D0%BD%D0%B8%D0%B5-%D1%80%D0%B0%D1%81%D0%BA%D1%80%D1%83%D1%82%D0%BA%D0%B0-%D1%81%D0%B0%D0%B9%D1%82%D0%B0.html?pid=98386#pid98386
https://www.nuryl.com/2016/10/13/nuryl-iphone-7-update-coming-soon/?unapproved=813&moderation-hash=9dbb632ff869f988d947d2363592095e#comment-813
http://kokadoy.servis95.ru/2019/07/19/%d0%be%d0%b1%d1%81%d1%83%d0%b6%d0%b4%d0%b5%d0%bd%d0%b8%d0%b5-%d0%b2%d0%be%d0%bf%d1%80%d0%be%d1%81%d0%be%d0%b2-%d0%b8%d0%bd%d0%b2%d0%b5%d1%81%d1%82%d0%b8%d1%86%d0%b8%d0%be%d0%bd%d0%bd%d0%be%d0%b9/?unapproved=842&moderation-hash=2f217f96bc100a8baefe532b77f598b5#comment-842
https://www.repairtechsolutions.com/blog/emsisoft-managed-antivirus-updates/?unapproved=22971&moderation-hash=344c7c3beb44cd8861dbe1b0cd477406#comment-22971
http://heroindetoxnow.com/sitemap/?unapproved=374085&moderation-hash=2a7196047b840ab213b31619017dd3e2#comment-374085
http://www.lecoinnature.bio/paniers-de-semaine-1212-1812/?unapproved=112358&moderation-hash=ca54c6f6b0382c243ec0acd07624c4ad#comment-112358
https://www.bigdoctors.com/%d0%ba%d0%b0%d0%bf%d1%83%d1%81%d1%82%d0%bd%d0%b0%d1%8f-%d0%b4%d0%b8%d0%b5%d1%82%d0%b0/?unapproved=26935&moderation-hash=bb77d98319ca2bf61178c596d9b50c2a#comment-26935
http://sumbawa.soegeefx.com/2016/04/28/kebijakan-boj-mengejutkan-market/?unapproved=50329&moderation-hash=61dc53b75370bac9817c91df48f5f7d4#comment-50329
http://manalifeguide.com/2018/07/11/hello-world/?unapproved=282022&moderation-hash=b0e8071b83f33d02cc3656e8e4ced539#comment-282022
http://test.teensex-online.pw/member.php?111621-ghusil&vmid=7200#vmessage7200
http://www.snapdragonconsulting.co.uk/ah-ha-norwich-growing/?unapproved=46451&moderation-hash=3ff73943305ee592dcd7bffd2d206577#comment-46451
http://www.courtstar.ru/gostevaya-kniga/comment-page-1/?unapproved=10726&moderation-hash=e9af16303db5fdd39f553ee94f5fa5ef#comment-10726
Your comment is awaiting moderation.
Хорошо смотрится реклама, где максимально используется окружающее пространство
http://itcontent.eu/youtube-wartosciowe-kanaly/?unapproved=141514&moderation-hash=8bc3425c0b03cc6a36c6c163d1dd67bf#comment-141514
http://www.malcolmroth.com/blog/uncategorized/welcome/?unapproved=22125&moderation-hash=bc5ce1be14efb289971b93f3e177b52c#comment-22125
http://sadowniczy.bloggg.pl/jak-wybrac-dobre-sadzonki-roz/?unapproved=43011&moderation-hash=186a07ad7a2ba3de5dc6015234a009ba#comment-43011
https://www.smxl.it/hello-world/?unapproved=140&moderation-hash=2bd55f0043ab82a40d09d956f11ca869#comment-140
http://ariaeian.com/?unapproved=157731&moderation-hash=33bcbbf16c58b1000ce51a487dc6e249#comment-157731
http://provinamira.ru/2013/07/razvitie-vinodeliya-v-krymy/?unapproved=409604&moderation-hash=bff00a51af2a11858b5099ce92f2e284#comment-409604
https://www.semtrainers.com/product/3b-laser-needle-red-laser-light-12×660-nm/?unapproved=951&moderation-hash=100dab1539f21fbee002b762eeb6a75a#comment-951
http://merijndeboer.com/new-adventures-board-games/?unapproved=171720&moderation-hash=98a026b7d845dca0bb2dd6635f77832d#comment-171720
http://www.monasmusings.com/a-fifth-generation-olympian/?unapproved=74894&moderation-hash=eb138d3f212b5b303b8b90a7ced4c590#comment-74894
http://biotechmd.org/2012/07/06/the-outlook-is-improving/?unapproved=41309&moderation-hash=e91ac2f3a22650d137905201bd9ec7aa#comment-41309
http://www.acerisk.com/?p=1172&unapproved=231&moderation-hash=ce60db99386f29c9df788fc4ad891daf#comment-231
http://instatune.biz/hello-world?unapproved=53796&moderation-hash=5f98ab2cc86ba193b3b040b12fbabb55#comment-53796
http://brothersstyling.ru/vstrechaem-nash-novyj-logotip/?unapproved=77455&moderation-hash=7f8fdbc799ad710ec06cfa8d1c784db2#comment-77455
http://forum.motomanya.com/showthread.php?tid=66476&pid=362981#pid362981
http://www.jpcunha.com/hino-da-neci-nucleo-especializado-para-o-cidadao-incluso/?unapproved=48374&moderation-hash=100d5335d8a8f43849ccc0660e4493d2#comment-48374
Your comment is awaiting moderation.
Хорошо смотрится реклама, где максимально используется окружающее пространство
https://blog.1sivalavie.com/2010/03/mister-jl-navette-b-day/comment-page-1/?unapproved=47185&moderation-hash=3325c52676dd7fc5e3d1f72c7279af2b#comment-47185
http://skupka-pro.ru/shop/product-category/samsung-galaxy-s7-32-black/?unapproved=39575&moderation-hash=bbde153af1ec8378a83951e13605c7a4#comment-39575
http://sismebebek.org/basaksehir-jel-vibratorler/?unapproved=29568&moderation-hash=8af21dea486bc575a59bf1fb4f78217e#comment-29568
https://backyardutopia.net/hello-world/?unapproved=33282&moderation-hash=f080de9caed7ac3b0490d9dbd1d083a5#comment-33282
http://cpp13.ru/wordpress/comment/?unapproved=496739&moderation-hash=03c48e1b539197642db98883e2dbb63c#comment-496739
http://fhsy.edu.sa/vb/showthread.php?p=588644#post588644
http://asu.sa.utoronto.ca/2008/07/07/hello-world/?unapproved=47125&moderation-hash=35f532bfd6debad8c49fe42c1ebcf714#comment-47125
https://www.rovny-naturephoto.sk/en/kvietky-julskych-alp/?unapproved=41583&moderation-hash=25988277d68da8fb13e9577cf38610e0#comment-41583
http://neural.co.jp/news/2014/04/17/sustainable-japan-new-function/?unapproved=188256&moderation-hash=45fe9931cd315b7fe48d72ad37acecd9#comment-188256
http://www.arabdubai.com/dubai-visa/dubai-visa-information.html?unapproved=44555&moderation-hash=497dcb76852a0aca55e6c27e2c1be8e0#comment-44555
http://www.dentsuinnovak.com/?unapproved=55831&moderation-hash=678f68b2d0b2c521e1ae1228515342fc#comment-55831
http://eclati.org/countries/canada/australian-visit-visa/comment-page-6/?unapproved=256795&moderation-hash=3605c775a432b6b98a5dd22167b6e89c#comment-256795
http://pli.us.com/2017/11/06/law-enforcement-is-our-speciality/?unapproved=52286&moderation-hash=85b52205415330b98d5b746a04fce4d6#comment-52286
https://sdcaonline.org/events/locations/?unapproved=45751&moderation-hash=1d0eb5f1f1e1639c8aa3e236de1fe981#comment-45751
http://xn—-7sbmatugdkfphym2m9a.xn--p1ai/nastrojka-emulyatora-genymotion.html?unapproved=11778&moderation-hash=8f598e6d26c9c14c9b340e7e5f469194#comment-11778
Your comment is awaiting moderation.
Хорошо смотрится реклама, где максимально используется окружающее пространство
http://www.dvdrental.co.uk/blog/2014/05/30/1736.html/comment-page-1?unapproved=600702&moderation-hash=1c79d6a009360d1c02e9d6b5266868be#comment-600702
http://konkanmail.com/%e0%a6%aa%e0%a7%82%e0%a6%b0%e0%a7%8d%e0%a6%ac%e0%a6%b8%e0%a7%8d%e0%a6%a5%e0%a6%b2%e0%a7%80%e0%a6%b0-%e0%a6%95%e0%a6%be%e0%a6%b0%e0%a7%8d%e0%a6%a4%e0%a6%bf%e0%a6%95-%e0%a6%b2%e0%a6%a1%e0%a6%bc%e0%a6%be/?unapproved=331&moderation-hash=2bc53f6486604ccf36453a356b507fd7#comment-331
http://trek-life.com/xanty-mansijsk-zimoj-ego-dostoprimechatelnosti/?unapproved=4420&moderation-hash=05428e096234778a06f2e1e3aea495b9#comment-4420
https://allgardens.ru/zhivaya-izgorod/?unapproved=129&moderation-hash=b409d19d85aa624da67b478e9fca50c7#comment-129
http://attraheramera.tarotguiderna.se/2017/10/12/187/?unapproved=222352&moderation-hash=771cb496147b9348c2d0a39055f401f5#comment-222352
http://mtsn7kebumen.sch.id/berita-manasik-haji-dalam-rangka-gebyar-muharram.html
https://blog.highperformancemen.com/2012/09/26/hot-canadian-marko-lebeau/?unapproved=67114&moderation-hash=a9e4ad556106d0be125bdc72725c7f74#comment-67114
https://marksams.com/blog/1st-place-semi-contact-kickboxing?page=1715#comment-88948
https://moniteur.ru/russkij-stil/9511-2013-07-03-10-47-02.html?unapproved=3129&moderation-hash=086897513392fc3139f80031c55e5f30#comment-3129
http://proofofalien.com/top-20-ancient-proof-of-aliens/?unapproved=24920&moderation-hash=81fbc2606dfe9cc0ecc5156031a3281e#comment-24920
http://www.vivronaturel.com/ateliers/certificat-animatrice-du-bonheur/?unapproved=62454&moderation-hash=762bec68400eed8fd72f586ebc142c22#comment-62454
http://bodrug.eu/2019/07/02/sondaj-care-sunt-necesitatile-stringente-ale-locuitorilor-din-cartierul-danuteni/?unapproved=12784&moderation-hash=8c73cd74fc819fc05c4c25f32e817e19#comment-12784
https://spinwithstyle.com/before-and-after-188-east-2090-north-provo/?unapproved=33761&moderation-hash=b88c68ddf983427a76c237422820a6ad#comment-33761
https://urbania.pe/blog/decoracion-y-acabados/dale-una-pincelada-de-arte-tu-hogar/?unapproved=703470&moderation-hash=e8db17a3a9770bbda62287c883f05498#comment-703470
http://hastanelig.com/index.php/forum/yazarlar/223992-h-r-sh-s-ri-sja-r-l#223980
Your comment is awaiting moderation.
Хорошо смотрится реклама, где максимально используется окружающее пространство
http://khoxopdantuong3d.com/nha-dung-xop-dan-tuong-3d-lieu-co-dep-khong/?unapproved=35246&moderation-hash=9377b4f9e23c7255c85db77ee0832d36#comment-35246
https://www.serveu.in/author/charlestauff/
https://wildatlanticflights.com/waf-home/private2/?unapproved=19330&moderation-hash=92a9ca27b2849a5e6f80c8f9f727f0be#comment-19330
http://alexbid.pricebybuy.com/processing.php?keyword=6880652&email=proshkina.manya@mail.ru&url=http%3A%2F%2Fseoprofisional.ru&bid=2&categ=6
http://litpublic.ru/2019/12/15/%d0%ba%d1%80%d0%b8%d1%81-%d0%b0%d0%b8%d0%b2%d0%b5%d1%80-%d0%b0%d0%bd%d0%b0%d0%bb%d0%b8%d0%b7-%d1%81%d1%82%d0%b8%d1%85%d0%be%d1%82%d0%b2%d0%be%d1%80%d0%b5%d0%bd%d0%b8%d0%b9/?unapproved=233&moderation-hash=6e7ab639e5604397bf44123de72f6f3e#comment-233
http://theeye.tv/album/josh-kempen-the-morning-show/?unapproved=25394&moderation-hash=3cfd37b2e0957b0df2ef657afae96582#comment-25394
https://www.mikogo.ru/2010/03/31/besplatnyy-angliyskiy-onlayn/comment-page-1/?unapproved=11156&moderation-hash=dd491f9fa16775e0a8eecd3cdc155054#comment-11156
http://virt24.org/forum/virt-istorii/xorosho-smotritsya-reklama/
https://www.upcyclers.at/jutesack-pinnwand/?unapproved=33839&moderation-hash=1b05bc0a64d6126cc5bbd8a7be82cc14#comment-33839
http://www.etkbyggochkakel.se/2010/03/hej-varlden/comment-page-1/?unapproved=556362&moderation-hash=2d9f737c6bae57419c8eadccef1f8633#comment-556362
http://a1tay.ru/v-frg-prizvali-nato-uluchshit-pro-dlya-protivostoyaniya-rossii/comment-page-1/?unapproved=596&moderation-hash=2ea38d552fe7ea310e3c67e48bab79a2#comment-596
http://sergey-code.site/vybiraem-luchshiy-forum-dlya-saytov-joomla/?unapproved=245&moderation-hash=076a47f21f2d260759ef4e68db538d57#comment-245
http://blog.betasystems-dci.de/en/enterprise-control-center-v1-1-2/?unapproved=70909&moderation-hash=1b291437b907add6ead5a30500d71be2#comment-70909
http://napoliproverbitradizioni.altervista.org/portale/?q=node/825&page=3391#comment-286749
http://bluepicturesng.com/2018/01/31/black-panther-black-leopard-politics-black-superhero/?unapproved=1329715&moderation-hash=edeffbaf30190927e329cc4854718211#comment-1329715
Your comment is awaiting moderation.
Хорошо смотрится реклама, где максимально используется окружающее пространство
http://www.etkbyggochkakel.se/2010/03/hej-varlden/comment-page-1/?unapproved=556362&moderation-hash=2d9f737c6bae57419c8eadccef1f8633#comment-556362
http://www.leopoldsdorf-wien.info/phpbb/viewtopic.php?f=2&t=2336555
https://www.jorgeoyhenard.com/instalacion-de-php-5-en-windows-7-con-apache/2275/?unapproved=178543&moderation-hash=34000a810f0f09eda9b7bd10ffc921e6#comment-178543
http://www.tunica.de/gastebuch/comment-page-1/?unapproved=563515&moderation-hash=6557c027f0e55184866ea4611ff2b16e#comment-563515
http://www.trajan.cz/lichnoe/prodaetsya-usadba/comment-page-1/?unapproved=10184&moderation-hash=4d64eb4698044bac8065fce8a438387e#comment-10184
http://www.kure134.com/2017/07/30/%ef%bd%8d2%ef%bd%8f-2017-%ef%bd%90%ef%bd%84%ef%bd%82-%ef%bd%92%ef%bd%81%ef%bd%83%ef%bd%85/?unapproved=200&moderation-hash=d753c0bc0ddff9311a2fdb0a313fb86b#comment-200
https://eastcoastgamingcongress.com/leadership-thinktank-featured-at-east-coast-gaming-congress-nexgen-gaming-forum/?unapproved=485&moderation-hash=a8b01e3cb9e8bb86623e382c88b7d20b#comment-485
http://happymaterinity.ru/2019/12/07/%d1%85%d0%b0%d1%80%d0%b0%d0%ba%d1%82%d0%b5%d1%80%d0%bd%d1%8b%d0%b5-%d1%87%d0%b5%d1%80%d1%82%d1%8b-%d0%b8-%d0%bd%d1%8e%d0%b0%d0%bd%d1%81%d1%8b-%d1%80%d0%b0%d0%b1%d0%be%d1%82%d1%8b-%d1%81-fastpay-online/?unapproved=2164&moderation-hash=966f5657bfb0659a7c65e4387365fbc5#comment-2164
https://snelveelbesparen.be/reviews/windows-7-ultimate-tablet-pc/?unapproved=327&moderation-hash=2525e94e80ceb1c2e6c93a749e3118bb#comment-327
https://beautyandhealthlife.com/natural-appetite-suppressants/?unapproved=421510&moderation-hash=81def592a204e58cea182bc84868af49#comment-421510
http://www.heavymedia.org/resuscitating-my-blog/?unapproved=38466&moderation-hash=7906b9a1d2800d2cd2552704327d8ea9#comment-38466
https://www.indiaeducates.com/education/career-choice-after-board-exams/#comment-29513
http://freerollpokerclub.ru/viewtopic.php?f=19&t=30&p=379#p379
http://dengi-zarabotat.ru/10-sposobov-zarabotat-dengi/?unapproved=29223&moderation-hash=80650f4df4e70b9659a4412b6f71a422#comment-29223
http://astroslov-efedorova.ru/retrogradnyj-merkurij-8-iyulya-1-avgusta-2019-goda/?unapproved=6256&moderation-hash=1903c6eea331b1d9c19487cb57900c67#comment-6256
Your comment is awaiting moderation.