-->

Sabtu, 14 Oktober 2017

Console

Manual:Console

From MikroTik Wiki
Jump to: navigation, search
Version.png
Applies to RouterOS: 2.9, v3, v4

Overview

The console is used for accessing the MikroTik Router's configuration and management features using text terminals, either remotely using serial port, telnet, SSH or console screen within Winbox, or directly using monitor and keyboard. The console is also used for writing scripts. This manual describes the general console operation principles. Please consult the Scripting Manual on some advanced console commands and on how to write scripts.

Hierarchy

The console allows configuration of the router's settings using text commands. Since there is a lot of available commands, they are split into groups organized in a way of hierarchical menu levels. The name of a menu level reflects the configuration information accessible in the relevant section, eg. /ip hotspot.

Example

For example, you can issue the /ip route print command:
[admin@MikroTik] > ip route print
Flags: X - disabled, A - active, D - dynamic, 
C - connect, S - static, r - rip, b - bgp, o - ospf, m - mme, 
B - blackhole, U - unreachable, P - prohibit 
 #      DST-ADDRESS        PREF-SRC        G GATEWAY         DIS INTE...
 0 A S  0.0.0.0/0                          r 10.0.3.1        1   bridge1
 1 ADC  1.0.1.0/24         1.0.1.1                           0   bridge1
 2 ADC  1.0.2.0/24         1.0.2.1                           0   ether3 
 3 ADC  10.0.3.0/24        10.0.3.144                        0   bridge1
 4 ADC  10.10.10.0/24      10.10.10.1                        0   wlan1  
[admin@MikroTik] >
Instead of typing ip route path before each command, the path can be typed only once to move into this particular branch of menu hierarchy. Thus, the example above could also be executed like this:
[admin@MikroTik] > ip route
[admin@MikroTik] ip route> print
Flags: X - disabled, A - active, D - dynamic, 
C - connect, S - static, r - rip, b - bgp, o - ospf, m - mme, 
B - blackhole, U - unreachable, P - prohibit 
 #      DST-ADDRESS        PREF-SRC        G GATEWAY         DIS INTE...
 0 A S  0.0.0.0/0                          r 10.0.3.1        1   bridge1
 1 ADC  1.0.1.0/24         1.0.1.1                           0   bridge1
 2 ADC  1.0.2.0/24         1.0.2.1                           0   ether3 
 3 ADC  10.0.3.0/24        10.0.3.144                        0   bridge1
 4 ADC  10.10.10.0/24      10.10.10.1                        0   wlan1  
[admin@MikroTik] ip route>
Notice that the prompt changes in order to reflect where you are located in the menu hierarchy at the moment. To move to the top level again, type " / "
[admin@MikroTik] > ip route
[admin@MikroTik] ip route> /
[admin@MikroTik] >
To move up one command level, type " .. "
[admin@MikroTik] ip route> ..
[admin@MikroTik] ip>
You can also use / and .. to execute commands from other menu levels without changing the current level:
[admin@MikroTik] ip route> /ping 10.0.0.1
10.0.0.1 ping timeout
2 packets transmitted, 0 packets received, 100% packet loss
[admin@MikroTik] ip firewall nat> .. service-port print
Flags: X - disabled, I - invalid 
 #   NAME                                                                PORTS
 0   ftp                                                                 21   
 1   tftp                                                                69   
 2   irc                                                                 6667 
 3   h323                                                               
 4   sip                                                                
 5   pptp                                                               
[admin@MikroTik] ip firewall nat>

Item Names and Numbers

Many of the command levels operate with arrays of items: interfaces, routes, users etc. Such arrays are displayed in similarly looking lists. All items in the list have an item number followed by flags and parameter values.
To change properties of an item, you have to use set command and specify name or number of the item.

Item Names

Some lists have items with specific names assigned to each of them. Examples are interface or user levels. There you can use item names instead of item numbers.
You do not have to use the print command before accessing items by their names, which, as opposed to numbers, are not assigned by the console internally, but are properties of the items. Thus, they would not change on their own. However, there are all kinds of obscure situations possible when several users are changing router's configuration at the same time. Generally, item names are more "stable" than the numbers, and also more informative, so you should prefer them to numbers when writing console scripts.

Item Numbers

Item numbers are assigned by the print command and are not constant - it is possible that two successive print commands will order items differently. But the results of last print commands are memorized and, thus, once assigned, item numbers can be used even after add, remove and move operations (since version 3, move operation does not renumber items). Item numbers are assigned on a per session basis, they will remain the same until you quit the console or until the next print command is executed. Also, numbers are assigned separately for every item list, so ip address print will not change numbering of the interface list.
Since version 3 it is possible to use item numbers without running print command. Numbers will be assigned just as if the print command was executed.
You can specify multiple items as targets to some commands. Almost everywhere, where you can write the number of item, you can also write a list of numbers.
[admin@MikroTik] > interface print
Flags: X - disabled, D - dynamic, R - running
  #    NAME                 TYPE             MTU
  0  R ether1               ether            1500
  1  R ether2               ether            1500
  2  R ether3               ether            1500
  3  R ether4               ether            1500
[admin@MikroTik] > interface set 0,1,2 mtu=1460
[admin@MikroTik] > interface print
Flags: X - disabled, D - dynamic, R - running
  #    NAME                 TYPE             MTU
  0  R ether1               ether            1460
  1  R ether2               ether            1460
  2  R ether3               ether            1460
  3  R ether4               ether            1500
[admin@MikroTik] >

Quick Typing

There are two features in the console that help entering commands much quicker and easier - the [Tab] key completions, and abbreviations of command names. Completions work similarly to the bash shell in UNIX. If you press the [Tab] key after a part of a word, console tries to find the command within the current context that begins with this word. If there is only one match, it is automatically appended, followed by a space:
/inte[Tab]_ becomes /interface _
If there is more than one match, but they all have a common beginning, which is longer than that what you have typed, then the word is completed to this common part, and no space is appended:
/interface set e[Tab]_ becomes /interface set ether_
If you've typed just the common part, pressing the tab key once has no effect. However, pressing it for the second time shows all possible completions in compact form:
[admin@MikroTik] > interface set e[Tab]_
[admin@MikroTik] > interface set ether[Tab]_
[admin@MikroTik] > interface set ether[Tab]_
ether1 ether5
[admin@MikroTik] > interface set ether_
The [Tab] key can be used almost in any context where the console might have a clue about possible values - command names, argument names, arguments that have only several possible values (like names of items in some lists or name of protocol in firewall and NAT rules). You cannot complete numbers, IP addresses and similar values.
Another way to press fewer keys while typing is to abbreviate command and argument names. You can type only beginning of command name, and, if it is not ambiguous, console will accept it as a full name. So typing:
[admin@MikroTik] > pi 10.1 c 3 si 100
equals to:
[admin@MikroTik] > ping 10.0.0.1 count 3 size 100
It is possible to complete not only beginning, but also any distinctive substring of a name: if there is no exact match, console starts looking for words that have string being completed as first letters of a multiple word name, or that simply contain letters of this string in the same order. If single such word is found, it is completed at cursor position. For example:
[admin@MikroTik] > interface x[TAB]_
[admin@MikroTik] > interface export _

[admin@MikroTik] > interface mt[TAB]_
[admin@MikroTik] > interface monitor-traffic _

General Commands

There are some commands that are common to nearly all menu levels, namely: print, set, remove, add, find, get, export, enable, disable, comment, move. These commands have similar behavior throughout different menu levels.
  • add - this command usually has all the same arguments as set, except the item number argument. It adds a new item with the values you have specified, usually at the end of the item list, in places where the order of items is relevant. There are some required properties that you have to supply, such as the interface for a new address, while other properties are set to defaults unless you explicitly specify them.
    • Common Parameters
      • copy-from - Copies an existing item. It takes default values of new item's properties from another item. If you do not want to make exact copy, you can specify new values for some properties. When copying items that have names, you will usually have to give a new name to a copy
      • place-before - places a new item before an existing item with specified position. Thus, you do not need to use the move command after adding an item to the list
      • disabled - controls disabled/enabled state of the newly added item(-s)
      • comment - holds the description of a newly created item
    • Return Values
      • add command returns internal number of item it has added
  • edit - this command is associated with the set command. It can be used to edit values of properties that contain large amount of text, such as scripts, but it works with all editable properties. Depending on the capabilities of the terminal, either a fullscreen editor, or a single line editor is launched to edit the value of the specified property.
  • find - The find command has the same arguments as set, plus the flag arguments like disabled or active that take values yes or no depending on the value of respective flag. To see all flags and their names, look at the top of print command's output. The find command returns internal numbers of all items that have the same values of arguments as specified.
  • move - changes the order of items in list.
    • Parameters
      • first argument specifies the item(-s) being moved.
      • second argument specifies the item before which to place all items being moved (they are placed at the end of the list if the second argument is omitted).
  • print - shows all information that's accessible from particular command level. Thus, /system clock print shows system date and time, /ip route print shows all routes etc. If there's a list of items in current level and they are not read-only, i.e. you can change/remove them (example of read-only item list is /system history, which shows history of executed actions), then print command also assigns numbers that are used by all commands that operate with items in this list.
    • Common Parameters
      • from - show only specified items, in the same order in which they are given.
      • where - show only items that match specified criteria. The syntax of where property is similar to the find command.
      • brief - forces the print command to use tabular output form
      • detail - forces the print command to use property=value output form
      • count-only - shows the number of items
      • file - prints the contents of the specific submenu into a file on the router.
      • interval - updates the output from the print command for every interval seconds.
      • oid - prints the OID value for properties that are accessible from SNMP
      • without-paging - prints the output without stopping after each screenful.
  • remove - removes specified item(-s) from a list.
  • set - allows you to change values of general parameters or item parameters. The set command has arguments with names corresponding to values you can change. Use ? or double [Tab] to see list of all arguments. If there is a list of items in this command level, then set has one action argument that accepts the number of item (or list of numbers) you wish to set up. This command does not return anything.

Modes

Console line editor works either in multiline mode or in single line mode. In multiline mode line editor displays complete input line, even if it is longer than single terminal line. It also uses full screen editor for editing large text values, such as scripts. In single line mode only one terminal line is used for line editing, and long lines are shown truncated around the cursor. Full screen editor is not used in this mode.
Choice of modes depends on detected terminal capabilities.

List of keys

Control-C 
keyboard interrupt.
Control-D 
log out (if input line is empty)
Control-K 
clear from cursor to the end of line
Control-X 
toggle safe mode
Control-V 
toggle hotlock mode mode
F6 
toggle cellar
F1 or ? 
show context sensitive help. If the previous character is \, then inserts literal ?.
Tab 
perform line completion. When pressed second time, show possible completions.
Delete 
remove character at cursor
Control-H or Backspace 
remove character before cursor and move cursor back one position.
Control-\ 
split line at cursor. Insert newline at cursor position. Display second of the two resulting lines.
Control-B or Left 
move cursor backwards one character
Control-F or Right 
move cursor forward one character
Control-P or Up 
go to previous line. If this is the first line of input then recall previous input from history.
Control-N or Down 
go to next line. If this is the last line of input then recall next input from history.
Control-A or Home 
move cursor to the beginning of the line. If cursor is already at the beginning of the line, then go to the beginning of the first line of current input.
Control-E or End 
move cursor to the end of line. If cursor is already at the end of line, then move it to the end of the last line of current input.
Control-L or F5 
reset terminal and repaint screen.
up, down and split keys leave cursor at the end of line.

Built-in Help

The console has a built-in help, which can be accessed by typing ?. General rule is that help shows what you can type in position where the ? was pressed (similarly to pressing [Tab] key twice, but in verbose form and with explanations).

Safe Mode

It is sometimes possible to change router configuration in a way that will make the router inaccessible (except from local console). Usually this is done by accident, but there is no way to undo last change when connection to router is already cut. Safe mode can be used to minimize such risk.
Safe mode is entered by pressing [CTRL]+[X]. To save changes and quit safe mode, press [CTRL]+[X] again. To exit without saving the made changes, hit [CTRL]+[D]
[admin@MikroTik] ip route>[CTRL]+[X]
[Safe Mode taken]

[admin@MikroTik] ip route<SAFE>
2009-04-06 1317.png
Message Safe Mode taken is displayed and prompt changes to reflect that session is now in safe mode. All configuration changes that are made (also from other login sessions), while router is in safe mode, are automatically undone if safe mode session terminates abnormally. You can see all such changes that will be automatically undone tagged with an F flag in system history:
[admin@MikroTik] ip route>
[Safe Mode taken]

[admin@MikroTik] ip route<SAFE> add
[admin@MikroTik] ip route<SAFE> /system history print
Flags: U - undoable, R - redoable, F - floating-undo
  ACTION                                   BY                 POLICY
F route added                              admin              write    
Now, if telnet connection (or winbox terminal) is cut, then after a while (TCP timeout is 9 minutes) all changes that were made while in safe mode will be undone. Exiting session by [Ctrl]+[D] also undoes all safe mode changes, while /quit does not.
If another user tries to enter safe mode, he's given following message:
[admin@MikroTik] >
Hijacking Safe Mode from someone - unroll/release/don't take it [u/r/d]:
  • [u] - undoes all safe mode changes, and puts the current session in safe mode.
  • [r] - keeps all current safe mode changes, and puts current session in a safe mode. Previous owner of safe mode is notified about this:
 
     [admin@MikroTik] ip firewall rule input
     [Safe mode released by another user]
  • [d] - leaves everything as-is.
If too many changes are made while in safe mode, and there's no room in history to hold them all (currently history keeps up to 100 most recent actions), then session is automatically put out of the safe mode, no changes are automatically undone. Thus, it is best to change configuration in small steps, while in safe mode. Pressing [Ctrl]+[X] twice is an easy way to empty safe mode action list.

HotLock Mode

When HotLock mode is enabled commands will be auto completed.
To enter/exit HotLock mode press [CTRL]+[V].
[admin@MikroTik] /ip address> [CTRL]+[V]
[admin@MikroTik] /ip address>>
Double >> is indication that HotLock mode is enabled. For example if you type /in e, it will be auto completed to
[admin@MikroTik] /ip address>> /interface ethernet 

Quick Help menu

F6 key enables menu at the bottom of the terminal which shows common key combinations and their usage.
[admin@RB493G] > 

tab compl ? F1 help ^V hotlk ^X safe ^C brk ^D quit

See also


[ Top | Back to Content ]

Manual:Console login process

Contents

Description

There are different ways to log into console:
  • serial port
  • console (screen and keyboard)
  • telnet
  • ssh
  • mac-telnet
  • winbox terminal
Input and validation of user name and password is done by login process. Login process can also show different informative screens (license, demo version upgrade reminder, software key information, default configuration).
At the end of successful login sequence login process prints banner and hands over control to the console process.
Console process displays system note, last critical log entries, auto-detects terminal size and capabilities and then displays command prompt]. After that you can start writing commands.
Use up arrow to recall previous commands from command history, TAB key to automatically complete words in the command you are typing, ENTER key to execute command, and Control-C to interrupt currently running command and return to prompt.
Easiest way to log out of console is to press Control-D at the command prompt while command line is empty (You can cancel current command and get an empty line with Control-C, so Control-C followed by Control-D will log you out in most cases).

Console login options

Starting from v3.14 it is possible to specify console options during login process. These options enables or disables various console features like color, terminal detection and many other.
Additional login parameters can be appended to login name after '+' sign.
login_name ::= user_name [ '+' parameters ] 
parameters ::= parameter [ parameters ] 
parameter ::= [ number ] 'a'..'z' 
number ::= '0'..'9' [ number ]
If parameter is not present, then default value is used. If number is not present then implicit value of parameter is used.
example: admin+c80w - will disable console colors and set terminal width to 80.
ParamDefaultImplicitDescription
"w"autoautoSet terminal width
"h"autoautoSet terminal height
"c"onoffdisable/enable console colors
"t"onoffDo auto detection of terminal capabilities
"e"onoffEnables "dumb" terminal mode

Different information shown by login process

Login process will display MikroTik banner after validating user name and password.
  MMM      MMM       KKK                          TTTTTTTTTTT      KKK
  MMMM    MMMM       KKK                          TTTTTTTTTTT      KKK
  MMM MMMM MMM  III  KKK  KKK  RRRRRR     OOOOOO      TTT     III  KKK  KKK
  MMM  MM  MMM  III  KKKKK     RRR  RRR  OOO  OOO     TTT     III  KKKKK
  MMM      MMM  III  KKK KKK   RRRRRR    OOO  OOO     TTT     III  KKK KKK
  MMM      MMM  III  KKK  KKK  RRR  RRR   OOOOOO      TTT     III  KKK  KKK

  MikroTik RouterOS 3.0rc (c) 1999-2007       http://www.mikrotik.com/
Actual banner can be different from the one shown here if it is replaced by distributor. See also: branding.

License

After logging in for the first time after installation you are asked to read software licenses.
Do you want to see the software license? [Y/n]:
Answer y to read licenses, n if you do not wish to read licenses (question will not be shown again). Pressing SPACE will skip this step and the same question will be asked after next login.

Demo version upgrade reminder

After logging into router that has demo key, following remonder is shown:
UPGRADE NOW FOR FULL SUPPORT
----------------------------
FULL SUPPORT benefits:
- receive technical support
- one year feature support
- one year online upgrades
    (avoid re-installation and re-configuring your router)
To upgrade, register your license "software ID"
 on our account server www.mikrotik.com

Current installation "software ID": ABCD-456

Please press "Enter" to continue!

Software key information

If router does not have software key, it is running in the time limited trial mode. After logging in following information is shown:
ROUTER HAS NO SOFTWARE KEY
----------------------------
You have 16h58m to configure the router to be remotely accessible,
and to enter the key by pasting it in a Telnet window or in Winbox.
See www.mikrotik.com/key for more details.

Current installation "software ID": ABCD-456
Please press "Enter" to continue!
After entering valid software key, following information is shown after login:
ROUTER HAS NEW SOFTWARE KEY
----------------------------
Your router has a valid key, but it will become active 
only after reboot. Router will automatically reboot in a day.

=== Automatic configuration ===

Usually after [[netinstall|installation]] or configuration [[reset]] RouterOS will apply [[default
settings]], such as an IP address.
First login into will show summary of these settings and offer to undo them.
This is an example:
<pre>
The following default configuration has been installed on your router:
-------------------------------------------------------------------------------
IP address 192.168.88.1/24 is on ether1
ether1 is enabled

-------------------------------------------------------------------------------
You can type "v" to see the exact commands that are used to add and remove
this default configuration, or you can view them later with
'/system default-configuration print' command.
To remove this default configuration type "r" or hit any other key to continue.
If you are connected using the above IP and you remove it, you will be disconnected.
Applying and removing of the default configuration is done using console script (you can press 'v' to review it).

Different information shown by console process after logging in

System Note

It is possible to always display some fixed text message after logging into console.

Critical log messages

Console will display last critical error messages that this user has not seen yet. See log for more details on configuration. During console session these messages are printed on screen.
dec/10/2007 10:40:06 system,error,critical login failure for user root from 10.0.0.1 via telnet
dec/10/2007 10:40:07 system,error,critical login failure for user root from 10.0.0.1 via telnet
dec/10/2007 10:40:09 system,error,critical login failure for user test from 10.0.0.1 via telnet

Prompt

  • [admin@MikroTik] /interface> - Default command prompt, shows user name, system identity, and current command path.
  • [admin@MikroTik] /interface<SAFE> - Prompt indicates that console session is in Safe Mode.
  • [admin@MikroTik] >> - Prompt indicates that HotLock is turned on.
  • {(\... - While entering multiple line command continuation prompt shows open parentheses.
  • line 2 of 3> - While editing multiple line command prompt shows current line number and line count.
  • address: - Command requests additional input. Prompt shows name of requested value.
Console can show different prompts depending on enabled modes and data that is being edited. Default command prompt looks like this:
[admin@MikroTik] /interface>
Default command prompt shows name of user, '@' sign and system name in brackets, followed by space, followed by current command path (if it is not '/'), followed by '>' and space. When console is in safe mode, it shows word SAFE in the command prompt.
[admin@MikroTik] /interface<SAFE> 
Hotlock mode is indicated by an additional yellow '>' character at the end of the prompt.
[admin@MikroTik] >> 
It is possible to write commands that consist of multiple lines. When entered line is not a complete command and more input is expected, console shows continuation prompt that lists all open parentheses, braces, brackets and quotes, and also trailing backslash if previous line ended with backslash-whitespace.
[admin@MikroTik] > {
{... :put (\
{(\... 1+2)}
3
When you are editing such multiple line entry, prompt shows number of current line and total line count instead of usual username and system name.
line 2 of 3> :put (\
Sometimes commands ask for additional input from user. For example, command '/password' asks for old and new passwords. In such cases prompt shows name of requested value, followed by colon and space.
[admin@MikroTik] > /password 
old password: ******
new password: **********
retype new password: **********

FAQ

Q: How do I turn off colors in console?
A: Add '+c' after login name.
Q: After logging in console prints rubbish on the screen, what to do?
Q: My expect script does not work with newer 3.0 releases, it receives some strange characters. What are those?
A: These sequences are used to automatically detect terminal size and capabilities. Add '+t' after login name to turn them off.
Q: Thank you, now terminal width is not right. How do I set terminal width?
A: Add '+t80w' after login name, where 80 is your terminal width.

[ Top | Back to Content ]

Rabu, 04 Oktober 2017

Cara Menghilangkan Tulisan Subscribe to: Post (Atom)

Membuat blog tampak indah dan rapih memang butuh usaha. Template sederhana pun jika kita mau berusaha merubah dan memperbaikinya akan nampak indah pada akhirnya. Sekali lagi saya katakan, blogspot memberi kita kesempatan melakukan perombakan.

Kali ini kita akan membahas cara menghapus tulisan Subscribe to: Post (Atom) yang berada dipojok kiri paling bawah blogspot. Tulisan ini memang tidak masalah jika tetap berada disana, namun bagi sebagian orang risih dengan adanya tulisan ini.

Untuk menghapusnya cukup mudah. Silahkan cari script berikut pada halaman HTML.

<div class='feed-links'>
  <data:feedLinksMsg/>
  <b:loop values='data:links' var='f'>
     <a class='feed-link' expr:href='data:f.url' expr:type='data:f.mimeType' target='_blank'><data:f.name/> (<data:f.feedType/>)</a>
  </b:loop>
  </div>

Jika belum tahu caranya menuju halaman HTML, pertama-tama login dulu ke akun blogspot Anda, lalu pilih Template lalu Edit HTML. Agar mudah melakukan pencarian tekan Ctrl F dan enter kode ini  <div class='feed-links'>.


Jika telah ketemu, lihat script diatas secara utuh. Hapus semuanya hingga ke baris </div>. Jika masih kurang paham, bisa dilihat pada gambar berikut ini. 


Setelah itu Simpan pengaturan dan otomatis tulisan Subscribe to: Post (Atom) diblog Anda hilang. Ini akan menambah kerapihan tampilan blog Anda.

Semoga bermanfaat. Jika masih mengalami kesulitan, tak perlu sungkan untuk bertanya dengan meninggalkan komentar dibawah ini. Salam berbagi!

Cara mudah mendaftarkan blog ke alexa terbaru + Video

Asalamu'alaikum Wr. Wb. Bagaimana kabarnya sobat hari ini? Jumpa lagi dengan kami masih di blog www.tutorial89.com, blog yang membahas berbagai tutorial-tutorial kehidupan sehari-hari. Dikesempatan kali ini kami akan membahas "Cara mudah mendaftarkan blog ke alexa terbaru + Video".

Cara mudah mendaftarkan blog ke alexa. Di sini saya tidak akan membahas apa itu alexa dan kegunaannya, karena ketika sampi ke halaman ini kemungiknan besar sobat sudah tahu apa itu alexa dan kegunaanya. Tetapi bagi sobat yang masih penasaran dengan  apa itu alexa silahkan bisa baca langsung pengertian alexa di Wikipedia.

Kembali ke pembahasan. Banyak para blogger yang agak kesulitan ketika akan mendaftarkan blognya ke alexa, ini disebabkan ada perubahan baru di situs alexa, sehingga ketika akan mencoba mendaftarkan blognya, seakan hanya untuk yang berbayar saja.

Padahal layanan yang free dari alexa sampai sekarang masih ada, jika yang sobat alami seperti iti, sobat berkunjung ke blog yang tepat. Ok … tanpa basa basi lagi langsung menuju TKP

Cara mendaftar dan claim blog ke alexa

Untuk mendaftarkan blog sobat ke alexa silahkan ikuti langkah-langkah berikut ini;
  1. Masuk ke situs http://www.alexa.com/ kemudian silahkan sign in jika sobat sudah pernah mendaftar. Atau pilih create an account jika belum pernah.
  2. Masukan url blog sobat ke kolom browser top site *jangan klik Get Certified...!!!
    Cara mendaftar dan mengclaim blog ke alexa
  3. Kemudian scroll ke bawah sehingga sobat menemukan edit site info lalu klik. Maka akan tampil pop up seperti gambar berikut ini.
    Cara mendaftar dan mengclaim blog ke alexa
  4. Klik  claim this site. Sampai disini ada 3 cara untuk mengclaim blog, pilih metode 2. Perhatikan gambar dibawah ini
    Cara mendaftar dan mengclaim blog ke alexa
  5. Copy kan ID verification atau kode yang saya blok dengan warna biru ke template blog sobat di bawah kode <head> lalu save.
  6. Setelah di copas ke template sobat, sekarang klik verity my ID jika penempatannya sudah benar maka akan tampak tulisan your site is successfully claimed itu berarti blog sobat sudah di claim dan terdaftar di alexa
Selamat kini blog sobat sudah terdaftar di alexa. Untuk melihat hasilnya, sobat bias melihatnya di menu my dashboard. Bagaimana mudah banget kan daftar blog ke alexa. setelah itu, coba deh baca artikel saya tentang Potensi blog untuk generasi muda masa kini supaya ngeblognya makin semangat. Ok sekian dulu ya. Di pertemuan yang akan datang saya akan coba share cara mudah memasang widget alexa di blog.… 

cara mendapatkan backlink yang berkualitas

Cara mendapatkan backlink dari comment Luv

Asalamu'alaikum Wr. Wb. Bagaimana kabarnya sobat hari ini? Jumpa lagi dengan kami masih di blog www.tutorial89.com, blog yang membahas berbagai tutorial-tutorial kehidupan sehari-hari. Dikesempatan kali ini kami akan membahas "Cara mendapatkan backlink dari comment Luv ".

Internet | Bagi seorang blogger backlink bukanlah kata yang asing. Konon salah satu factor sebuah blog atau web bisa nangkring di halaman pertama google adalah karena ditunjang dengan backlink berkualitas.

Ada banyak cara untuk mendapatkan backlink. Diantaranya sobat bisa menjadi penulis tamu pada blog atau web popular, menshare ke berbagai media social, sampai yang termudah adalah menuliskan komentar pada sebuah artikel yang kita kunjungi.

Nah, pada kesempatan kali ini saya akan coba share cara mendapatkan backlink dari berkomentar di blog atau web yang berkualitas tinggi. Selain mendapatkan backlink kita juga bisa sekalian bersilaturahmi kepada penulis blog yang bersangkutan, sambil memberikan opini atau bahkan pertanyaan yang belum kita pahami dari artikel yang mereka tulis. Tentu ini akan membuat semakin akrabnya antara penulis dan pengunjung.

Namun perlu diingat, tidak semua blog mengijinkan kita untuk memasang backling di forum komentar miliknya. Apalagi komentarnya hanya bertujuan cara backlink dengan kata-kata pasaran, seperti “nice posting, pertamax, thanks etc” yang kemudian kita sisipkan link blog kita. Hampir dapat dipastikan komentar-komentar seperti itu masuk pada folder spam.

Jika sobat ingin mencari backlink dengan cara berkomentar di blog atau web, saya sarankan cari blog atau web yang bisa kita tanami baklink, diantaranya adalah blog-blog yang memasang plugin commentLUV. Kelebihan dari berkomentar di blog yang memasang commentLuv ini, kita bisa mendapatkan backlink dua sekaligus dalam sekali komentar.

Dengan cara yang akan saya bagikan ini, sobat bisa memilih blog yang memiliki PA/DA tinggi dan PR yang tinggi juga. Jadi backlink sobat semakin berkualitas.

Sebelum memulai acara pencarian backlink pada blog commenctLUV yang ber PR PA dan DA tinggi, silahkan sobat persiapkan dulu alat-alatnya.
a. Instal plugin MozBar di browser sobat. Mozbar ini kita gunakan untuk memilih PA/DA yang tinggi.
b. Instal plugin SEOquake di browser sobat. SEOquake ini kita gunakan untuk melihat PR yang tinggi yang akan kita pilih sebagai tempat lading backlink.
 Cara mendapatkan backlink dari comment Luv

Cara mendapatkan blog commentLuv PR PA/DA tinggi

1. Silahkan masuk ke google image. Karena kita akan mencari blog-blog yang memasang plugin commentLUV dengan menggunakan gambar.

2. Urutkan pencarian berdasarkan PR tertinggi dengan cara kilik short Z-A. ini optional, sebenarnya sobat bisa saja melihat satu persatu dari top 1 sampai top 10 di page one google. Atau bahkan sampai page 100. Jika dirasa di page 1 sobat tidak menemukan PR PA/DA yang tinggi
Cara mendapatkan backlink dari comment Luv

3. Sekarang sobat tinggal pilih blog yang diingnkan. Mau blog yang ber PR tinggi apa yang PA/DA yang tinggi.

4. Baca artikel yang ada di blo tersebut, sebagai bahan sobat untuk berkomentar. Setelah di baca langsung menuju ke forum komentar dan isi komentar sobat. Contoh komentar yang sukses terpublish di blog commentLuv adalah seperti gambar berikut ini.

Cara mendapatkan backlink dari comment Luv

Pastikan sobat tidak melakukan spaming komentar, atau hal-hali yang merugikan pemilik blog. Karena nantinya komentar sobat tidak akan di publish di blog mereka, atau bahkan akan di masukan kedalam folder spam. Berkomentarlah secara sopan dan memberikan nilai puls untuk blog mereka. Seperti memberikan pertanyaan, opini dan lain-lain. Semoga bermanfaat.