SlideShare a Scribd company logo
1 of 13
Download to read offline
RedHat 6 & Centos 6

yum server, DNS, FTP, email, pop3 , webmail , ssh, vnc server, samba, ACL Permission ,
Group and ownership , Firewall ,



windows xp service Pack 2

setup, Firewall , Password Recovery, Cable state and crose , Print , Sharing , local Network
Configuration , Bangla and English type , remote control  and support , vnc , vmware workstation
,FTP server Client ,  photoshop , Illustrator, web page wordpress, scan , Data Recovery ,  HDD
Bat refire ,  Computer Hardware A+ Certify , , Internet ,

Software good knowledge: winrar, office, skype, yahoo, vlc, video studio, Video editing , bangla &
English typing , Remote , team vmware , Data Recovery, Password Recovery , HDD
Regenerator , Open Crick , Live CD , Live work , E­mail Hander , all software good knowledge



Windows 7

Password recovery , ftp, Lan network, Internet, Team vmware , HDD Regenerator , Data
Recovery , windows 7 setup configuration




Windows server 2008 R2

FTP, Network Configuration ,




MikroTik
http://www.slideshare.net

http://myhomelab.blogspot.com/2012/06/installing­mikrotik­routeros­in.html

MikroTik Setup And Configuration ,

Installing Mikrotik RouterOS in VirtualBox

MikroTik RouterOS is a Linux based operating system that runs on  proprietary
hardware (RouterBOARD), or on standard x86­based computers.
Some training videos here

You can install it in VirtualBox and play around with this virtual device.

Go to their website and download the latest Router OS for PC/86
At this time v5.18 is latest stable available version. Also available in torrent.

Create a new Virtual Machine in VirtualBox as per example below.
Check the interfaces
[admin@MikroTik] > interface print
 Flags: D ­ dynamic, X ­ disabled, R ­ running, S ­ slave
 # NAME TYPE MTU L2MTU MAX­L2MTU
 0 R ether1 ether 1500



and add  dhcp­client on ether1 and enable it
ip dhcp­client add interface=ether1
 ip dhcp­client enable number=0
Previously I have setup the network adapter to be "Bridge" so the virtual Mikrotik
machine can see the my 3rd party (dhcp) router and get ip address
[admin@MikroTik] > ip address print
 Flags: X ­ disabled, I ­ invalid, D ­ dynamic
 # ADDRESS NETWORK INTERFACE
  0 D 192.168.0.102/24 192.168.0.0 ether1



I then added a second Ethernet adapter on my computer and in order to see it on
Mikrotik as ether2 I had to restart it.
[admin@MikroTik] > interface print
 Flags: D ­ dynamic, X ­ disabled, R ­ running, S ­ slave
 # NAME TYPE MTU L2MTU MAX­L2MTU
 0 R ether1 ether 1500
 1 R ether2 ether 1500
 [admin@MikroTik] > interface print
 Flags: D ­ dynamic, X ­ disabled, R ­ running, S ­ slave
 # NAME TYPE MTU L2MTU MAX­L2MTU
 0 R ether1 ether 1500
 1 R ether2 ether 1500

I enable dhcp client on ether2 and as it was connected to another DHCP server it got ip
address.
[admin@MikroTik] > ip dhcp­client add interface=ether2
 [admin@MikroTik] > ip dhcp­client print
 [admin@MikroTik] > ip dhcp­client enable numbers=0
 Flags: X ­ disabled, I ­ invalid
 # INTERFACE USE­PEER­DNS ADD­DEFAULT­ROUTE STATUS ADDRESS
 0 X ether2 yes yes
 [admin@MikroTik] > ip address print
 Flags: X ­ disabled, I ­ invalid, D ­ dynamic
 # ADDRESS NETWORK INTERFACE
 1 D 192.168.2.10/24 192.168.2.0 ether2




Then we can check if it can reach the Internet.
[admin@MikroTik] > ping 8.8.8.8
 HOST SIZE TTL TIME STATUS
 8.8.8.8 56 49 62ms
 8.8.8.8 56 49 63ms
 8.8.8.8 56 49 63ms
 8.8.8.8 56 49 62ms
 sent=4 received=4 packet­loss=0% min­rtt=62ms avg­rtt=62ms max­rtt=63ms
1. Assigning ether1 IP Address to the same network of VirtualBox Host­Only Network.
This is the easiest way. You have to attach the Network Adapter of Mikrotik to ‘Host­only
Adapter’ belong to ‘VirtualBox Host­Only Ethernet Adapter’. See image below:




Adapter Setting (click to enlarge)
Later you have to set the IP address of ether1 of Mikrotik to be the same network of
VirtualBox Host­Only Network. The default IP address assigned to this Ethernet is
192.168.56.1/24, of cource you can change this IP address as you want. You can check
the IP Address by using ‘ipconfig’ (Windows) or ‘ifconfig’ (Unix/Linux). See image below:




Virtualbox Ethernet Adapter (click to enlarge)
Now run the Mikrotik OS running in Virtualbox. Login using ‘admin’ and empty password.
Set the IP address of ether1 to 192.168.56.2/24 or whatever IP address still in the same
network.
ip address add address=192.168.56.2/24 interface=ether1

After setting to ethet1 ip address, try to ping the IP address from Host OS (Windows).
C:UsersFuad NAHDI>ping 192.168.56.2

Pinging 192.168.56.2 with 32 bytes of data:
Reply from 192.168.56.2: bytes=32 time<1ms TTL=64
Reply from 192.168.56.2: bytes=32 time=2ms TTL=64
Reply from 192.168.56.2: bytes=32 time<1ms TTL=64
Reply from 192.168.56.2: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.56.2:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli­seconds:
    Minimum = 0ms, Maximum = 2ms, Average = 0ms

If Mikrotik replied the ping, it is ready to access it using Winbox. Run Winbox now and
set to Connect To: 192.168.56.2. See image below:




Click 'Connect' button and if there are no errors you should successfully log in to the
Mikrotik using Winbox.




Winbox Mikrotik (click to enlarge)
2. Mapping / Forwarding port used by Winbox.
Using this way you have to map/forward port used by a GuestOS installed on Virtualbox.
Winbox is using port 8291 to LISTEN on the system.
So we will map/forward this port from  HostOS to the GuestOS.
The command are as below:
C:UsersFuad NAHDI>cd
C:>cd "Program FilesSunxVM VirtualBox"
C:Program FilesSunxVM VirtualBox>VBoxManage setextradata Mikrotik
"VBoxInternal/Devices/pcnet/0/LUN#0/Config/winbox/HostPort" 8291
VirtualBox Command Line Management Interface Version 3.0.2
(C) 2005­2009 Sun Microsystems, Inc.
All rights reserved.

C:Program FilesSunxVM VirtualBox>VBoxManage setextradata Mikrotik
"VBoxInternal/Devices/pcnet/0/LUN#0/Config/winbox/GuestPort" 8291
VirtualBox Command Line Management Interface Version 3.0.2
(C) 2005­2009 Sun Microsystems, Inc.
All rights reserved.

C:Program FilesSunxVM VirtualBox>VBoxManage setextradata Mikrotik
"VBoxInternal/Devices/pcnet/0/LUN#0/Config/winbox/Protocol" TCP
VirtualBox Command Line Management Interface Version 3.0.2
(C) 2005­2009 Sun Microsystems, Inc.
All rights reserved.

After executing the above commands withour any errors, now open Winbox application.
Set the Connect To value to localhost and Login to admin, then click Connect button.




After clicking Connect button and no error during login process, you should successfully
log in to the winbox application.
Winbox Mikrotik (click to enlarge)

More Related Content

What's hot

Dns configuration on rhel 5
Dns configuration on rhel 5Dns configuration on rhel 5
Dns configuration on rhel 5
Subin Selvaraj
 
Ukk tkj p1 proxy mikrotik2014 2015
Ukk tkj p1 proxy mikrotik2014 2015Ukk tkj p1 proxy mikrotik2014 2015
Ukk tkj p1 proxy mikrotik2014 2015
Riza Hafizhuddin
 
Rapport mymusicplease.fr
Rapport mymusicplease.frRapport mymusicplease.fr
Rapport mymusicplease.fr
Gaetan Garnier
 
Squid proxy server
Squid proxy serverSquid proxy server
Squid proxy server
Green Jb
 
Setting mikrotik untuk game online campur browsing
Setting mikrotik untuk game online campur browsingSetting mikrotik untuk game online campur browsing
Setting mikrotik untuk game online campur browsing
imanariepin24
 
Introducing with MongoDB
Introducing with MongoDBIntroducing with MongoDB
Introducing with MongoDB
Mahbub Tito
 
Tópicos - LVS Instalacao Slack11
Tópicos - LVS Instalacao Slack11Tópicos - LVS Instalacao Slack11
Tópicos - LVS Instalacao Slack11
Luiz Arthur
 
Tola.leng mail server (sq_mail &amp; rcmail)_q5_
Tola.leng mail server (sq_mail &amp; rcmail)_q5_Tola.leng mail server (sq_mail &amp; rcmail)_q5_
Tola.leng mail server (sq_mail &amp; rcmail)_q5_
Tola LENG
 

What's hot (20)

ClusterDesktop manual how-to use for Linux clients
ClusterDesktop manual how-to use for Linux clientsClusterDesktop manual how-to use for Linux clients
ClusterDesktop manual how-to use for Linux clients
 
ClusterDesktop how-to use from Android devices
ClusterDesktop how-to use from Android devicesClusterDesktop how-to use from Android devices
ClusterDesktop how-to use from Android devices
 
Dns configuration on rhel 5
Dns configuration on rhel 5Dns configuration on rhel 5
Dns configuration on rhel 5
 
Open vpn server_linux
Open vpn server_linuxOpen vpn server_linux
Open vpn server_linux
 
Kannel configuration step by step with Motorolla Razer
Kannel configuration step by step with Motorolla RazerKannel configuration step by step with Motorolla Razer
Kannel configuration step by step with Motorolla Razer
 
Ukk tkj p1 proxy mikrotik2014 2015
Ukk tkj p1 proxy mikrotik2014 2015Ukk tkj p1 proxy mikrotik2014 2015
Ukk tkj p1 proxy mikrotik2014 2015
 
Configure proxy firewall on SuSE Linux Enterprise Server 11
Configure proxy firewall on SuSE Linux Enterprise Server 11Configure proxy firewall on SuSE Linux Enterprise Server 11
Configure proxy firewall on SuSE Linux Enterprise Server 11
 
Rapport mymusicplease.fr
Rapport mymusicplease.frRapport mymusicplease.fr
Rapport mymusicplease.fr
 
Squid proxy server
Squid proxy serverSquid proxy server
Squid proxy server
 
Setting mikrotik untuk game online campur browsing
Setting mikrotik untuk game online campur browsingSetting mikrotik untuk game online campur browsing
Setting mikrotik untuk game online campur browsing
 
Free radius billing server with practical vpn exmaple
Free radius billing server with practical vpn exmapleFree radius billing server with practical vpn exmaple
Free radius billing server with practical vpn exmaple
 
Modul quick debserver
Modul quick debserverModul quick debserver
Modul quick debserver
 
Introducing with MongoDB
Introducing with MongoDBIntroducing with MongoDB
Introducing with MongoDB
 
Tópicos - LVS Instalacao Slack11
Tópicos - LVS Instalacao Slack11Tópicos - LVS Instalacao Slack11
Tópicos - LVS Instalacao Slack11
 
Realizzare applicazioni Web con WebSocket, by Simone Bordet
Realizzare applicazioni Web con WebSocket, by Simone BordetRealizzare applicazioni Web con WebSocket, by Simone Bordet
Realizzare applicazioni Web con WebSocket, by Simone Bordet
 
Contoh Soal LKS IT Network 2014 Di Palembang Modul 2
Contoh Soal LKS IT Network 2014 Di Palembang Modul 2Contoh Soal LKS IT Network 2014 Di Palembang Modul 2
Contoh Soal LKS IT Network 2014 Di Palembang Modul 2
 
Dating Pro Installation Instructions
Dating Pro Installation InstructionsDating Pro Installation Instructions
Dating Pro Installation Instructions
 
Tola.leng mail server (sq_mail &amp; rcmail)_q5_
Tola.leng mail server (sq_mail &amp; rcmail)_q5_Tola.leng mail server (sq_mail &amp; rcmail)_q5_
Tola.leng mail server (sq_mail &amp; rcmail)_q5_
 
Membangun web server,_e-mail_server_dan_ftp_server
Membangun web server,_e-mail_server_dan_ftp_serverMembangun web server,_e-mail_server_dan_ftp_server
Membangun web server,_e-mail_server_dan_ftp_server
 
Tutorial : Zimbra on BlankOn
Tutorial : Zimbra on BlankOnTutorial : Zimbra on BlankOn
Tutorial : Zimbra on BlankOn
 

Viewers also liked

Blocking koneksi pake mikrotik
Blocking koneksi pake mikrotikBlocking koneksi pake mikrotik
Blocking koneksi pake mikrotik
Hamdan Ripai
 
How to install mikrotik in virtual environment (first assignment)
How to install mikrotik in virtual environment (first assignment)How to install mikrotik in virtual environment (first assignment)
How to install mikrotik in virtual environment (first assignment)
Hamdan Ripai
 
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
 

Viewers also liked (14)

Mikrotik mater-1-beta
Mikrotik mater-1-betaMikrotik mater-1-beta
Mikrotik mater-1-beta
 
Blocking koneksi pake mikrotik
Blocking koneksi pake mikrotikBlocking koneksi pake mikrotik
Blocking koneksi pake mikrotik
 
How to install mikrotik in virtual environment (first assignment)
How to install mikrotik in virtual environment (first assignment)How to install mikrotik in virtual environment (first assignment)
How to install mikrotik in virtual environment (first assignment)
 
Tutorial Mikrotik Bagian 2
Tutorial Mikrotik Bagian 2Tutorial Mikrotik Bagian 2
Tutorial Mikrotik Bagian 2
 
Tutorial Mikrotik Bagian 1
Tutorial Mikrotik Bagian 1Tutorial Mikrotik Bagian 1
Tutorial Mikrotik Bagian 1
 
Routing fundamentals with mikrotik
Routing fundamentals with mikrotikRouting fundamentals with mikrotik
Routing fundamentals with mikrotik
 
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 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
 
Penyelesaian Soal Ujikom TKJ Tahun 2016 Paket 2 Menggunakan RouterOS di Virtu...
Penyelesaian Soal Ujikom TKJ Tahun 2016 Paket 2 Menggunakan RouterOS di Virtu...Penyelesaian Soal Ujikom TKJ Tahun 2016 Paket 2 Menggunakan RouterOS di Virtu...
Penyelesaian Soal Ujikom TKJ Tahun 2016 Paket 2 Menggunakan RouterOS di Virtu...
 
Setting mikrotik sebagai gateway dengan winbox
Setting mikrotik sebagai gateway dengan winboxSetting mikrotik sebagai gateway dengan winbox
Setting mikrotik sebagai gateway dengan winbox
 
Pembahasan Soal UKK TKJj 2017 - Paket 2
Pembahasan Soal UKK TKJj 2017 - Paket 2Pembahasan Soal UKK TKJj 2017 - Paket 2
Pembahasan Soal UKK TKJj 2017 - Paket 2
 
Tutorial ukk mikrotik paket ganda 2 3 @2017 abdulrais
Tutorial ukk mikrotik paket ganda 2 3 @2017 abdulraisTutorial ukk mikrotik paket ganda 2 3 @2017 abdulrais
Tutorial ukk mikrotik paket ganda 2 3 @2017 abdulrais
 
Tutorial ukk mikrotik paket ganda 2 3 @2017 abdulrais
Tutorial ukk mikrotik paket ganda 2 3 @2017 abdulraisTutorial ukk mikrotik paket ganda 2 3 @2017 abdulrais
Tutorial ukk mikrotik paket ganda 2 3 @2017 abdulrais
 
Pembahasan Soal UKK TKJ 2017 - Paket 3
Pembahasan Soal UKK TKJ 2017 - Paket 3Pembahasan Soal UKK TKJ 2017 - Paket 3
Pembahasan Soal UKK TKJ 2017 - Paket 3
 

Similar to Basic work

086 Microsoft Application Platform 2009 2010
086 Microsoft Application Platform 2009 2010086 Microsoft Application Platform 2009 2010
086 Microsoft Application Platform 2009 2010
GeneXus
 
Tech 1 - Deploying Sahana Eden
Tech 1  - Deploying Sahana EdenTech 1  - Deploying Sahana Eden
Tech 1 - Deploying Sahana Eden
AidIQ
 
kodanda new resume (1)
kodanda new resume (1)kodanda new resume (1)
kodanda new resume (1)
Kodanda H
 
rama linux solaris vmware admin resume
rama linux  solaris vmware admin resumerama linux  solaris vmware admin resume
rama linux solaris vmware admin resume
Ram Ram
 
BroadStrong Software Room Profile
BroadStrong Software Room ProfileBroadStrong Software Room Profile
BroadStrong Software Room Profile
Henry Li
 
Web scale infrastructures with kubernetes and flannel
Web scale infrastructures with kubernetes and flannelWeb scale infrastructures with kubernetes and flannel
Web scale infrastructures with kubernetes and flannel
purpleocean
 
DELL (OME) Open Manage Esentials network connections (TCP/UDP ports) and fire...
DELL (OME) Open Manage Esentials network connections (TCP/UDP ports) and fire...DELL (OME) Open Manage Esentials network connections (TCP/UDP ports) and fire...
DELL (OME) Open Manage Esentials network connections (TCP/UDP ports) and fire...
David Pasek
 
Tech X Virtualization Tips
Tech X Virtualization TipsTech X Virtualization Tips
Tech X Virtualization Tips
Youssef EL HADJ
 
SAMKUMAR- Sr.Linux SystemAdministrator (1)
SAMKUMAR- Sr.Linux SystemAdministrator (1)SAMKUMAR- Sr.Linux SystemAdministrator (1)
SAMKUMAR- Sr.Linux SystemAdministrator (1)
gandi samkumar
 
Windows Server 2008 R2 & SP1 for IT Pro's
Windows Server 2008 R2 & SP1 for IT Pro'sWindows Server 2008 R2 & SP1 for IT Pro's
Windows Server 2008 R2 & SP1 for IT Pro's
Amit Gatenyo
 
CSW2017 Qinghao tang+Xinlei ying vmware_escape_final
CSW2017 Qinghao tang+Xinlei ying vmware_escape_finalCSW2017 Qinghao tang+Xinlei ying vmware_escape_final
CSW2017 Qinghao tang+Xinlei ying vmware_escape_final
CanSecWest
 

Similar to Basic work (20)

086 Microsoft Application Platform 2009 2010
086 Microsoft Application Platform 2009 2010086 Microsoft Application Platform 2009 2010
086 Microsoft Application Platform 2009 2010
 
siva profile
siva profilesiva profile
siva profile
 
saran_new
saran_newsaran_new
saran_new
 
Tech 1 - Deploying Sahana Eden
Tech 1  - Deploying Sahana EdenTech 1  - Deploying Sahana Eden
Tech 1 - Deploying Sahana Eden
 
kodanda new resume (1)
kodanda new resume (1)kodanda new resume (1)
kodanda new resume (1)
 
Ram
RamRam
Ram
 
rama linux solaris vmware admin resume
rama linux  solaris vmware admin resumerama linux  solaris vmware admin resume
rama linux solaris vmware admin resume
 
Solarwinds port requirement
Solarwinds port requirementSolarwinds port requirement
Solarwinds port requirement
 
Sanjeev Kumar
Sanjeev KumarSanjeev Kumar
Sanjeev Kumar
 
Resume 23 Nov 2015
Resume 23 Nov 2015Resume 23 Nov 2015
Resume 23 Nov 2015
 
BroadStrong Software Room Profile
BroadStrong Software Room ProfileBroadStrong Software Room Profile
BroadStrong Software Room Profile
 
Linux Based Network Proposal
Linux Based Network ProposalLinux Based Network Proposal
Linux Based Network Proposal
 
K Karthik_1
K Karthik_1K Karthik_1
K Karthik_1
 
Web scale infrastructures with kubernetes and flannel
Web scale infrastructures with kubernetes and flannelWeb scale infrastructures with kubernetes and flannel
Web scale infrastructures with kubernetes and flannel
 
DELL (OME) Open Manage Esentials network connections (TCP/UDP ports) and fire...
DELL (OME) Open Manage Esentials network connections (TCP/UDP ports) and fire...DELL (OME) Open Manage Esentials network connections (TCP/UDP ports) and fire...
DELL (OME) Open Manage Esentials network connections (TCP/UDP ports) and fire...
 
Tech X Virtualization Tips
Tech X Virtualization TipsTech X Virtualization Tips
Tech X Virtualization Tips
 
SAMKUMAR- Sr.Linux SystemAdministrator (1)
SAMKUMAR- Sr.Linux SystemAdministrator (1)SAMKUMAR- Sr.Linux SystemAdministrator (1)
SAMKUMAR- Sr.Linux SystemAdministrator (1)
 
Resume (6)
Resume (6)Resume (6)
Resume (6)
 
Windows Server 2008 R2 & SP1 for IT Pro's
Windows Server 2008 R2 & SP1 for IT Pro'sWindows Server 2008 R2 & SP1 for IT Pro's
Windows Server 2008 R2 & SP1 for IT Pro's
 
CSW2017 Qinghao tang+Xinlei ying vmware_escape_final
CSW2017 Qinghao tang+Xinlei ying vmware_escape_finalCSW2017 Qinghao tang+Xinlei ying vmware_escape_final
CSW2017 Qinghao tang+Xinlei ying vmware_escape_final
 

Basic work