Wednesday, October 16, 2013

Configure IP address on router using the Setup command

0 komentar
[admin@MikroTik] > setup
  Setup uses Safe Mode. It means that all changes that are made during setup
are reverted in case of error, or if [Ctrl]+[C] is used to abort setup. To keep
changes exit setup using the [X] key.

[Safe Mode taken]
  Choose options by pressing one of the letters in the left column, before
dash. Pressing [X] will exit current menu, pressing Enter key will select the
entry that is marked by an '*'. You can abort setup at any time by pressing
[Ctrl]+[C].
Entries marked by '+' are already configured.
Entries marked by '-' cannot be used yet.
Entries marked by 'X' cannot be used without installing additional packages.
   r - reset all router configuration
 + l - load interface driver
 * a - configure ip address and gateway
   d - setup dhcp client
   s - setup dhcp server
   p - setup pppoe client
   t - setup pptp client
   x - exit menu
your choice [press Enter to configure ip address and gateway]: a

To configure IP address and gateway, press a or [Enter], if the a choice is marked with an asterisk symbol ('*').

 * a - add ip address
 - g - setup default gateway
   x - exit menu
your choice [press Enter to add ip address]: a

Choose a to add an IP address. At first, setup will ask you for an interface to which the address will be assigned. If the setup offers you an undesirable interface, erase this choice, and press the [Tab] key twice to see all available interfaces. After the interface is chosen, assign IP address and network mask on it:

your choice: a
enable interface:
ether1  ether2  wlan1
enable interface: ether1
ip address/netmask: 10.1.0.66/24
#Enabling interface
/interface enable ether1
#Adding IP address
/ip address add address=10.1.0.66/24 interface=ether1 comment="added by setup"
 + a - add ip address
 * g - setup default gateway
   x - exit menu
your choice: x

basic configuration the Mikrotik

0 komentar
Before configuring the IP addresses and routes please check the /interface menu to see the list of available interfaces. If you have Plug-and-Play cards installed in the router, it is most likely that the device drivers have been loaded for them automatically, and the relevant interfaces appear on the /interface print

[admin@MikroTik] interface> print
Flags: X - disabled, D - dynamic, R - running
 #    NAME                         TYPE             RX-RATE    TX-RATE    MTU
 0  R ether1                       ether            0          0          1500
 1  R ether2                       ether            0          0          1500
 2 X  wavelan1                     wavelan          0          0          1500
 3 X  prism1                       wlan             0          0          1500
[admin@MikroTik] interface>
The interfaces need to be enabled, if you want to use them for communications. Use the /interface enable name command to enable the interface with a given name or number, for example:

[admin@MikroTik] interface> print
Flags: X - disabled, D - dynamic, R - running
 #    NAME                         TYPE             RX-RATE    TX-RATE    MTU
 0 X  ether1                       ether            0          0          1500
 1 X  ether2                       ether            0          0          1500
[admin@MikroTik] interface> enable 0
[admin@MikroTik] interface> enable ether2
[admin@MikroTik] interface> print
Flags: X - disabled, D - dynamic, R - running
 #    NAME                         TYPE             RX-RATE    TX-RATE    MTU
 0  R ether1                       ether            0          0          1500
 1  R ether2                       ether            0          0          1500
[admin@MikroTik] interface>

Basics proxy setup for beginners

0 komentar
Normally you connect to the router by IP addresses with any telnet or SSH
client software (a simple text-mode telnet client is usually called telnet and
is distributed together with almost any OS). You can also use graphical
configuration tool for Windows (also can be run in Linux using Wine) called
Winbox. To get Winbox, connect to the router's IP address with a web
browser, and follow the link to download winbox.exe from the router.
MAC-telnet is used to connect to a router when there is no other way to
connect to it remotely if the router has no IP address or in case of
misconfigured firewall. MAC-telnet can only be used from the same
broadcast domain (so there should be no routers in between) as any of the
router's enabled interfaces (you can not connect to a disabled interface).
MAC-telnet program is a part of the Neighbor Viewer. Download it from
www.mikrotik.com, unpack both files contained in the archive to the same
directory, and run NeighborViewer.exe. A list of MikroTik routers working in
the same broadcast domain will be showed double-click the one you need to
connect to. Note that Winbox is also able to connect to routers by their MAC
addresses, and has the discovery tool built-in.
You can also connect to the router using a standard DB9 serial null-modem
cable from any PC. Default settings of the router's serial port are 9600 bits/s
(for RouterBOARD 500 series - 115200 bits/s), 8 data bits, 1 stop bit, no
parity, hardware (RTS/CTS) flow control. Use terminal emulation program
(like HyperTerminal or SecureCRT in Windows, or minicom in UNIX/Linux) to
connect to the router. The router will beep twice when booted up, and you
should see the login prompt shortly before that (check cabling and serial
port settings if you do not see anything in the terminal window).
log/ -- System logs
quit -- Quit console
radius/ -- Radius client settings
certificate/ -- Certificate management
special-login/ -- Special login users
redo -- Redo previously undone action
driver/ -- Driver management
ping -- Send ICMP Echo packets
setup -- Do basic setup of system
interface/ -- Interface configuration
password -- Change password
undo -- Undo previous action
port/ -- Serial ports
import -- Run exported configuration script
snmp/ -- SNMP settings
user/ -- User management
file/ -- Local router file storage.
system/ -- System information and utilities
queue/ -- Bandwidth management
ip/ -- IP options
tool/ -- Diagnostics tools
ppp/ -- Point to Point Protocol
routing/ -- Various routing protocol settings
export --
[admin@MikroTik] ip>
.. -- go up to root
service/ -- IP services
socks/ -- SOCKS version 4 proxy
arp/ -- ARP entries management
upnp/ -- Universal Plug and Play
dns/ -- DNS settings
address/ -- Address management
accounting/ -- Traffic accounting
the-proxy/ --
vrrp/ -- Virtual Router Redundancy Protocol
pool/ -- IP address pools
packing/ -- Packet packing settings
neighbor/ -- Neighbors
route/ -- Route management
firewall/ -- Firewall management
dhcp-client/ -- DHCP client settings
dhcp-relay/ -- DHCP relay settings
dhcp-server/ -- DHCP server settings
hotspot/ -- HotSpot management
ipsec/ -- IP security
web-proxy/ -- HTTP proxy
export --
[admin@MikroTik] ip>


MAC-telnet is used to connect to a router when there is no other way to
connect to it remotely if the router has no IP address or in case of
misconfigured firewall. MAC-telnet can only be used from the same
broadcast domain (so there should be no routers in between) as any of the
router's enabled interfaces (you can not connect to a disabled interface).
MAC-telnet program is a part of the Neighbor Viewer. Download it from
www.mikrotik.com, unpack both files contained in the archive to the same
directory, and run NeighborViewer.exe. A list of MikroTik routers working in
the same broadcast domain will be showed double-click the one you need to
connect to. Note that Winbox is also able to connect to routers by their MAC
addresses, and has the discovery tool built-in.
You can also connect to the router using a standard DB9 serial null-modem
cable from any PC. Default settings of the router's serial port are 9600 bits/s
(for RouterBOARD 500 series - 115200 bits/s), 8 data bits, 1 stop bit, no
parity, hardware (RTS/CTS) flow control. Use terminal emulation program
(like HyperTerminal or SecureCRT in Windows, or minicom in UNIX/Linux) to
connect to the router. The router will beep twice when booted up, and you
should see the login prompt shortly before that (check cabling and serial port settings if you do not see anything in the terminal window).

 
Trends K N A Copyright © 2009
Fresh Girly Blogger Template Designed by Herro | Powered By Blogger