PrismII Wireless Client and Wireless Access Point Manual

Document revision 1.5 (11-Aug-2003)
This document applies to the MikroTik RouterOS V2.7

Table of Contents

Summary

The MikroTik RouterOS supports the PrismII chipset based wireless adapter cards for working both as wireless clients (station mode) and wireless access points (ap-bridge or bridge mode).

Supports event logging.

Specifications

Packages required : wireless
License required : 2.4GHz Wireless, 2.4GHz Wireless Access Point (optional)
Home menu level : /interface prism
Protocols utilized : IEEE802.11b (IEEE802.11b)
Hardware usage: not significant

Related Documents

Software Package Installation and Upgrading
Device Driver Management
IP Addresses and Address Resolution Protocol (ARP)
Log Management

Description

Prism-based cards can be used in the following network roles:
  • Wireless Client - IEEE 802.11b wireless client (station) associating with an access point. The station mode has been tested with MikroTik RouterOS PrismII based Access Points and CISCO/Aironet Wireless Ethernet Bridges and Access Points.
  • Wireless Access Point - IEEE 802.11b wireless access point (requires the 2.4GHz AP Feature License). The access point can register wireless clients. The access point mode has been tested with PrismII, CISCO/Aironet and ORiNOCO/WaveLAN clients. The PrismII Access Point interface can also register other access points. Thus, it is possible to bridge networks over wireless links.
  • Wireless Bridge - limited version of the Access Point mode which allows only one client to be registered but does not require the 2.4GHz Wireless AP Feature License, only the 2.4GHz Wireless License. Thus, it is possible to create point-to-point links and bridge networks over wireless links.

    Important! Prism 2.5 200mW cards require firmware 1.3.6 or lower, if you want to bridge networks. Please see the troubleshooting section on how to check the firmware version and downgrade it

    The MikroTik RouterOS supports as many Prism chipset based cards as many free adapter slots are there on your system. One license is valid for all cards on your system. Note that maximal number of PCMCIA sockets is 8.

    Wireless Interface Configuration

    Submenu level : /interface prism

    Property Description

    name (name; default: prism1)- interface name
    mtu (integer; default: 1500) - maximum transfer unit
    mac-address (MAC address) - MAC address of card. In AP mode this will also be BSSID of BSS
    arp (disabled | enabled | proxy-arp | reply-only; default: enable) - Address Resolution Protocol:
  • disabled - the interface will not use ARP protocol
  • enabled - the interface will use ARP protocol
  • proxy-arp - the interface will be an ARP proxy (see corresponding manual)
  • reply-only - the interface will only reply to the requests originated to its own IP addresses, but neighbour MAC addresses will be gathered from /ip arp statically set table only
    mode (station | bridge | ap-bridge; default: station) - mode of the interface:
  • station - card works as station (client) for the wireless infrastructure
  • bridge - card works as access point, but can register only one client or access point
  • ap-bridge - card works as access point, i.e., it creates wireless infrastructure
    root-ap (MAC address; default: 00:00:00:00:00:00) - MAC address of the root access point to register to
    frequency (2412MHz, 2417MHz ... 2472MHz; default: 2412MHz) - frequency that AP will use to create BSS
    ssid (string; default: MikroTik) - Service Set Identifier:
  • in station mode - SSID to connect to
  • in AP and P2P mode - SSID to use when creating BSS (can not be left blank)
    default-authentication (yes | no; default: yes) - what to do with client that wants to associate, but it is not in the access-list
    default-forwarding (yes | no; default:yes) - what to do with client that wants to send packets to other wireless clients, but it is not in the access-list
    max-clients (integer:1...2007; default: 2007) - maximum number of clients (including other access points), that is allowed to associate with this access point
    card-type (100mW | 200mW | 30mW | generic; default: generic)- card type used for power settings
    tx-power (0dBm-1mW...23dBm-200mW | auto; default: auto)- transmit power level. Has no effect if card type is generic
  • auto - default setting of the card
    supported-rates (1 | 1-11 | 1-2 | 1-5.5 | 11 | 2 | 2-11 | 2-5.5 | 5.5 | 5.5-11; default: 1-11) - rates at which this node will work
    basic-rates (1 | 1-11 | 1-2 | 1-5.5 | 11 | 2 | 2-11 | 2-5.5 | 5.5 | 5.5-11; default: 1) - rates that every client that plans to connect to this AP should be able to work at. It is recommended to set it to 1, since not all clients might support rates 1-11
    hide-ssid (yes | no; default: no) - whether to hide SSID (do not broadcast SSID over the wireless infrastructure)

    Notes

    root-ap, default-authentication, default-forwarding, max-clients, basic-rates properties are used in bridge and ap-bridge modes only.

    Example

    To enable prism1 interface to connect to the wireless infrastructure test:
    [admin@MikroTik] interface prism> set prism1 disabled=no ssid=test
    [admin@MikroTik] interface prism> print
    Flags: X - disabled, R - running
      0  R name="prism1" mtu=1500 mac-address=00:02:6F:01:D2:7D arp=enabled
           mode=station root-ap=00:00:00:00:00:00 frequency=2412MHz ssid="test"
           default-authentication=yes default-forwarding=yes max-clients=2007
           card-type=generic tx-power=auto supported-rates=1-11 basic-rates=1
           hide-ssid=no
    
    [admin@MikroTik] interface prism>
    

    Monitoring the Interface Status

    Command name:/interface prism monitor

    Property Description

    Statistics:

    status (searching-for-network | connected-to-ess | out-of-range) - status of the interface:

  • searching-for-network - the card has not registered to an AP and is searching for one to register to
  • connected-to-ess - the card has registered to an AP
  • out-of-range - the card has registered to an AP, but lost the connection to it
    data-rate (1Mbps | 2Mbps | 5.5Mbps | 11Mbps) - the actual data rate of the connection
    ssid (string)- the Service Set Identifier.
    bssid (MAC address) - the Basic Service Set Identifier (actually, the MAC address of the access point)
    signal-quality (0...92) - the signal quality
    signal-level (27...154)- the average signal level
    noise-level (-100...0) - the average noise level

    Notes

    The monitor command does not work, if the interface is disabled, or the mode is ap-bridge or bridge.

    Example

    To monitor prism1 interface:
    [admin@MikroTik] interface prism> monitor prism1
                          status: connected-to-ess
                       data-rate: 11Mbps
                            ssid: "test"
                           bssid: 00:03:2F:04:25:10
                  signal-quality: 92
                    signal-level: 54
                     noise-level: -99
    
    [admin@MikroTik] interface prism>
    

    Registration Table

    Submenu level : /interface prism registration-table

    Property Description

    Statistics: interface (name) - interface that client is registered to
    mac-address (MAC address) - mac address of the registered client
    type (client | local | ap | forward | parent-ap)- type of the client:
  • client - client registered to the interface
  • local - client learned from bridged interface
  • ap - client is an access point
  • forward - client is forwarded from another access point
  • parent-ap - the access point this interface is connected to
    parent (MAC address) - parent access point's MAC address, if forwarded from another access point
    packets (integer) - number of received and sent packets
    bytes (integer) - number of received and sent bytes
    signal-level (min/average/max: 0...92) - min/average/max signal level
    noise-level (min/average/max: -100...0) - min/average/max noise level
    data-rate (min/average/max: (1 | 2 | 5.5 | 11)) - min/average/max receive data rate
    tx-rate (1 | 2 | 5.5 | 11) - transmit data rate
    last-update (time) - time since the last update
    uptime (time) - time the client is associated with the access point

    Example

    To see registration table showing all clients currently associated with the access point:
    [admin@MikroTik] interface prism> registration-table print
      # INTERFACE                     MAC-ADDRESS       TYPE      PARENT
      0 prism1                        00:07:EB:30:E7:DA client
      1 prism1                        00:40:96:29:2F:80 client
    [admin@MikroTik] interface prism>
    
    To get additional statistics:
    [admin@MikroTik] interface prism> registration-table print stats
      0 interface=prism1 mac-address=00:07:EB:30:E7:DA type=client packets=0,19
        bytes=0,482 signal-level=69/75/138 noise-level=0/0/0 data-rate=10/110/110
        tx-rate=10 last-update=00:00:00.840 uptime=00:02:59.180
    
      1 interface=prism1 mac-address=00:40:96:29:2F:80 type=client packets=0,14
        bytes=0,196 signal-level=66/72/84 noise-level=0/0/0 data-rate=10/10/10
        tx-rate=10 last-update=00:00:08.380 uptime=00:02:42.220
    
    
    [admin@MikroTik] interface prism>
    

    Access List

    Submenu level : /interface prism access-list

    Description

    The access list is used by the access point to restrict authentications (associations) of clients. This list contains MAC address of client and associated action to take when client attempts to connect. Also, the forwarding of frames sent by the client is controlled.

    The association procedure is as follows: when a new client wants to associate to the AP that is configured on interface prismX, entry with client's MAC address and interface prismX is looked up in the access-list. If such entry is found, action specified in it is taken. Otherwise default-authentication and default-forwarding of interface prismX is taken.

    Property Description

    mac-address (MAC address; default: 00:00:00:00:00:00) - MAC address of the client
    interface (name) - AP interface
    authentication (yes | no; default: yes) - accept this client when it tries to connect or not
    forwarding (yes | no; default: yes) - forward the client's frames to other wireless clients or not

    Notes

    If you have default authentication action for the interface set to yes, you can disallow this node to register at the AP's interface prism1 by setting authentication=no for it. Thus, all nodes except this one will be able to register to the interface prism1.

    If you have default authentication action for the interface set to no, you can allow this node to register at the AP's interface prism1 by setting authentication=yes for it. Thus, only the specified nodes will be able to register to the interface prism1.

    Example

    To allow authentication and forwarding for the client 00:40:96:37:A3:39 from the prism1 interface:
    [admin@MikroTik] interface prism access-list> add mac-address=00:40:96:37:A3:39
    interface=prism1
    [admin@MikroTik] interface prism access-list> print
    Flags: X - disabled, I - invalid
      0   mac-address=00:40:96:37:A3:39 interface=prism1 authentication=yes
          forwarding=yes
    
    [admin@MikroTik] interface prism access-list>
    

    Network Scan

    Command name:/interface prism scan

    Description

    The prism interface has feature that allows scanning for available networks. While scanning, the card unregisters itself from the access point (in station mode), or unregisters all clients (in bridge or ap-bridge mode). Thus, network connections are lost while scanning.

    The result of scanning contains a list of discovered access points along with their MAC addresses, channel frequencies, service set identificators, and the measured signal level.

    Property Description

    (name) - interface name to use for scanning
    frequencies (string; default: all frequencies) - list of frequencies to scan for, e.g., 2412MHz,2427MHz
    time (time; default: ) - time to scan for one frequency. The total time used for scanning is multiplier of this value and the number of frequencies to scan

    Example

    To scan the wireless network from prism1 interface:
    [admin@MikroTik] interface prism> scan prism1
    00:02:6f:01:5d:fe frequency=2412MHz ssid=waubonsie_low_ap1 signal-level=132
    00:02:6f:01:63:0b frequency=2427MHz ssid=john signal-level=114
    00:02:6f:01:62:ee frequency=2462MHz ssid=sales signal-level=0
    [admin@MikroTik] interface prism>
    

    Troubleshooting

    Basic Configuration Examples

    Station Mode Configuration

    Description

    To set the wireless interface for working with an IEEE 802.11b access point (register to the AP), you should set the following parameters:
  • The Service Set Identifier (ssid). It should match the ssid of the AP.
  • The Operation Mode (mode) of the card should be set to station.
  • The Supported Rate (suppprted-rates) of the card should match the basic rates of the AP. For example, if the AP has basic-rate=1, the client can have supported-rate=1-11. If the AP has basic-rate=1-11, then all clients MUST have the supported-rate=1-11 Thus, it is okay to leave the supported-rate=1-11 for the client. All other parameters can be left as default.

    Example

    To configure the wireless interface prism1 for registering to an AP with ssid testing:
    [admin@MikroTik] interface prism> set prism1 ssid=testing
    [admin@MikroTik] interface prism> enable prism1
    [admin@MikroTik] interface prism> print
    Flags: X - disabled, R - running
      0  R name="prism1" mtu=1500 mac-address=00:90:4B:02:17:E2 arp=enabled
           mode=station root-ap=00:00:00:00:00:00 frequency=2412MHz ssid="testing"
           default-authentication=yes default-forwarding=yes max-clients=2007
           card-type=generic tx-power=auto supported-rates=1-11 basic-rates=1
           hide-ssid=no
    
    [admin@MikroTik] interface prism>
    

    Access Point Mode Configuration

    Description

    To set the wireless interface for working as an IEEE 802.11b access point (register clients), you need both the 2.4GHz Wireless Feature License and the Prism AP Feature Licenses. You should set the following parameters:
  • The Service Set Identifier (ssid). It should be unique for your system.
  • The Operation Mode (mode) of the card should be set to ap-bridge or bridge In bridge mode, only one client can be registered.
  • The Frequency of the card.

    All other parameters can be left as default. However, you should make sure, that all clients support the basic rate of your access point, i.e., the supported-rates of the client should cove the basic-rates of the access point.

    Example

    To configure the wireless interface prism1 for working as an access point with ssid testing and use the frequency 2442MHz:
    [admin@MikroTik] interface prism> set prism1 mode=ap-bridge frequency=2442MHz \
    \... ssid=testing
    [admin@MikroTik] interface prism> print
    Flags: X - disabled, R - running
      0  R name="prism1" mtu=1500 mac-address=00:90:4B:02:17:E2 arp=enabled
           mode=ap-bridge root-ap=00:00:00:00:00:00 frequency=2442MHz ssid="testing"
           default-authentication=yes default-forwarding=yes max-clients=2007
           card-type=generic tx-power=auto supported-rates=1-11 basic-rates=1
           hide-ssid=no
    
    [admin@MikroTik] interface prism>
    

    Registering the Access Point to another Access Point

    Description

    You can configure the access point to registering to another (root) access point by specifying the MAC address of the root access point.

    The 'non-root' access point will register the clients only if it is registered to the 'root' access point.

    Having one access point registered to another one enables bridging the networks, if bridging mode between prism and ethernet interfaces is used. Note, that in the station mode, bridging cannot be used between prism and ethernet interfaces.

    Important! Prism 2.5 200mW cards require firmware 1.3.6 or lower, if you want to bridge networks. Please see the troubleshooting section on how to check the firmware version and downgrade it.

    Example

    To configure the wireless interface prism1 to register to the 00:90:4B:02:17:E2 root access point:
    [admin@MikroTik] interface prism> set prism1 root-ap=00:90:4B:03:F1:71
    [admin@MikroTik] interface prism> print
    Flags: X - disabled, R - running
      0  R name="prism1" mtu=1500 mac-address=00:90:4B:02:17:E2 arp=enabled
           mode=ap-bridge root-ap=00:90:4B:03:F1:71 frequency=2442MHz ssid="testing"
           default-authentication=yes default-forwarding=yes max-clients=2007
           card-type=generic tx-power=auto supported-rates=1-11 basic-rates=1
           hide-ssid=no
    
    [admin@MikroTik] interface prism>
    

    Wireless Network Applications

    Wireless Client

    Let us consider the following point-to-multipoint network setup with CISCO/Aironet Wireless Access Point as a base station and MikroTik Wireless Router as a client:

    Wireless Client

    3rd Party Wireless AP Configuration

    The access point is connected to the wired network's HUB and has IP address from the network 10.0.0.0/24. The minimum configuration required for the AP is:
    1. Setting the Service Set Identifier (up to 32 alphanumeric characters). In our case we use ssid "mt".
    2. Setting the allowed data rates at 1-11Mbps, and the basic rate at 1Mbps.
    3. Choosing the frequency, in our case we use 2442MHz.
    4. Setting the identity parameters: ip address/mask and gateway. These are required if you want to access the AP remotely using telnet or http.
    5. If you use CISCO/Aironet Wireless Ethernet Bridge or Access Point, you should set the Configuration/Radio/I80211/Extended (Allow proprietary extensions) to off, and the Configuration/Radio/I80211/Extended/Encapsulation (Default encapsulation method) to RFC1042. If left to the default on and 802.1H, respectively, you won't be able to pass traffic through the bridge.

    Note that the AP is not a router! It has just one network address, and is just like any host on the network. It resembles a wireless-to-Ethernet HUB or bridge. The AP does not route the IP traffic!

    MikroTik RouterOS Wireless Client Configuration

    The minimum configuration for the MikroTik router's prism wireless interface is:
    1. Setting the Service Set Identifier to that of the AP, i.e., "mt"
    2. The Operation Mode should be station.

    [admin@MikroTik] interface prism> set 0 ssid=mt
    [admin@MikroTik] interface prism> print
    Flags: X - disabled, R - running
      0  R name="prism1" mtu=1500 mac-address=00:02:6F:01:D2:7D arp=enabled
           mode=station root-ap=00:00:00:00:00:00 frequency=2412MHz ssid="mt"
           default-authentication=yes default-forwarding=yes max-clients=2007
           card-type=generic tx-power=auto supported-rates=1-11 basic-rates=1
           hide-ssid=no
    
    [admin@MikroTik] interface prism> monitor 0
                          status: connected-to-ess
                       data-rate: 11Mbps
                            ssid: "mt"
                           bssid: 00:40:96:56:E2:AD
                  signal-quality: 78
                    signal-level: 125
                     noise-level: -99
    
    [admin@MikroTik] interface prism>
    

    The IP addresses assigned to the wireless interface should be from the network 10.0.0.0/24, e.g.:

    [admin@MikroTik] ip address> add address=10.0.0.217/24 interface=prism1
    [admin@MikroTik] ip address> print
    Flags: X - disabled, I - invalid, D - dynamic
      #   ADDRESS            NETWORK         BROADCAST       INTERFACE
      0   10.0.0.217/24      10.0.0.0        10.0.0.255      prism1
      1   192.168.0.254/24   192.168.0.254   192.168.0.254   ether1
    [MikroTik] ip address>
    

    The default route should be set to the gateway router 10.0.0.1 (not to the AP 10.1.1.250 !):

    [admin@MikroTik] ip route> add gateway=10.0.0.1
    [admin@MikroTik] ip route> print
    Flags: X - disabled, I - invalid, D - dynamic, J - rejected,
    C - connect, S - static, R - rip, O - ospf, B - bgp
        #    DST-ADDRESS        G GATEWAY         DISTANCE INTERFACE
        0  S 0.0.0.0/0          r 10.0.0.1        1        prism1
        1 DC 10.0.0.0/24        r 0.0.0.0         0        prism1
        2 DC 192.168.0.0/24     r 0.0.0.0         0        ether1
    [admin@MikroTik] interface prism>
    

    Note! You cannot use the bridging function between the prism and ethernet interfaces, if the prism interface is in the station mode. The bridge does not work in this case!

    Wireless Access Point

    Let us consider the following point-to-point wireless network setup with two MikroTik Wireless Routers:

    Access Point

    You need both the 2.4GHz Wireless and the Prism AP Feature Licenses to enable the AP mode. To make the MikroTik router work as an access point, the configuration of the prism wireless interface should be as follows:

    The following command should be issued to change the settings for the prism interface:

    [admin@MT_Prism_AP] interface prism> set 0 mode=ap-bridge frequency=2442MHz \
    \... ssid=mt
    [admin@MT_Prism_AP] interface prism> print
    Flags: X - disabled, R - running
      0  R name="prism1" mtu=1500 mac-address=00:90:4B:02:17:E2 arp=enabled
           mode=ap-bridge root-ap=00:00:00:00:00:00 frequency=2442MHz ssid="mt"
           default-authentication=yes default-forwarding=yes max-clients=2007
           card-type=generic tx-power=auto supported-rates=1-11 basic-rates=1
           hide-ssid=no
    
    [admin@MT_Prism_AP] interface prism> monitor 0
               current-sta-count: 2
                current-ap-count: 0
             current-local-count: 0
        current-forwarding-count: 0
    
    [admin@MT_Prism_AP] interface prism>
    

    The list of registered clients looks like follows:

    [admin@MT_Prism_AP] interface prism> registration-table print
      # INTERFACE                     MAC-ADDRESS       TYPE      PARENT
      0 prism1                        00:07:EB:30:E7:DA client
      1 prism1                        00:02:6F:01:5D:FE client
    [admin@MT_Prism_AP] interface prism>
    

    There are two possible ways of implementing the wireless access point feature:

    To enable bridging between the ethernet and prism interfaces, do the following:
    1. Add bridge interface with the desired forwarded protocols:
      [admin@MT_Prism_AP] interface bridge> add forward-protocols=ip,arp,other
      [admin@MT_Prism_AP] interface bridge> print
      Flags: X - disabled, R - running
        0 X  name="bridge1" mtu=1500 arp=enabled mac-address=00:00:00:00:00:00
             forward-protocols=ip,arp,other priority=1
      
      [admin@MT_Prism_AP] interface bridge>
        
    2. Add the desired interfaces to the bridge interface:
      [admin@MT_Prism_AP] interface bridge port> set "ether1,prism1" bridge=bridge1
      [admin@MT_Prism_AP] interface bridge port> print
      Flags: X - disabled
        #   INTERFACE                            BRIDGE
        0   ether1                               bridge1
        1   prism1                               bridge1
      [admin@MT_Prism_AP] interface bridge port>
        
    3. Enable the bridge interface:
      [admin@MT_Prism_AP] interface> print
      Flags: X - disabled, D - dynamic, R - running
        #    NAME                 TYPE             MTU
        0  R ether1               ether            1500
        1  R prism1               prism            1500
        2 X  bridge1              bridge           1500
      [admin@MT_Prism_AP] interface> enable bridge1
      [admin@MT_Prism_AP] interface> print
      Flags: X - disabled, D - dynamic, R - running
        #    NAME                 TYPE             MTU
        0  R ether1               ether            1500
        1  R prism1               prism            1500
        2  R  bridge1              bridge           1500
      [admin@MT_Prism_AP] interface>
        
    4. Assign an IP address to the bridge interface and specify the default gateway for the access point:
      [admin@MT_Prism_AP] ip address> add address=10.0.0.250/24 interface=bridge1
      [admin@MT_Prism_AP] ip address> print
      Flags: X - disabled, I - invalid, D - dynamic
        #   ADDRESS            NETWORK         BROADCAST       INTERFACE
        0   10.0.0.250/24      10.0.0.0        10.0.0.255      bridge1
      [admin@MT_Prism_AP] ip address> .. route add gateway=10.0.0.1
      [admin@MT_Prism_AP] ip address> .. route print
      Flags: X - disabled, I - invalid, D - dynamic, J - rejected,
      C - connect, S - static, R - rip, O - ospf, B - bgp
          #    DST-ADDRESS        G GATEWAY         DISTANCE INTERFACE
          0  S 0.0.0.0/0          r 10.0.0.1        1        bridge1
          1 DC 10.0.0.0/24        r 0.0.0.0         0        bridge1
      [admin@MT_Prism_AP] ip address>
        

    The client router requires the System Service Identificator set to "mt". The IP addresses assigned to the interfaces should be from networks 10.0.0.0/24 and 192.168.0.0./24:

    [admin@mikrotik] ip address> print
    Flags: X - disabled, I - invalid, D - dynamic
      #   ADDRESS            NETWORK         BROADCAST       INTERFACE
      0   10.0.0.217/24      10.0.0.0        10.0.0.255      aironet
      1   192.168.0.254/24   192.168.0.0     192.168.0.255   Local
    [admin@mikrotik] ip address>
    
    The default route should be set to gateway 10.0.0.1 for the router [mikrotik]:

    [admin@mikrotik] ip route> add gateway=10.0.0.1
    [admin@mikrotik] ip route> print
    Flags: X - disabled, I - invalid, D - dynamic, J - rejected,
    C - connect, S - static, R - rip, O - ospf, B - bgp
        #    DST-ADDRESS        G GATEWAY         DISTANCE INTERFACE
        0  S 0.0.0.0/0          r 10.0.0.1        1        aironet
        1 DC 10.0.0.0/24        r 0.0.0.0         0        aironet
        2 DC 192.168.0.254/24   r 0.0.0.0         0        Local
    [admin@mikrotik] ip route>
    

    Wireless Bridge

    To set up a wireless bridge between two networks, you need to have a "wireless 2.4GHz" or "AP" license. Configure one MikroTik RouterOS Prism AP to register to another MikroTik RouterOS Prism AP for point-to-point operation.

    Important! Prism 2.5 200mW cards require firmware 1.3.6 or lower, if you want to bridge networks. Please see the troubleshooting section on how to check the firmware version and downgrade it.

    The basic setup is as follows:

    Bridge

    Below are step-by-step configurations for both units. The system identities are set to [MT-parent] and [MT-child], respectively.

    [MT-parent] Configuration

    Assume you have interfaces ether1 and prism1 under /interface list.
    1. Enable the Ethernet interface ether1:

      /interface enable ether1
      

    2. Configure prism1 interface.
      Set mode=bridge, ssid=br8, frequency=2447MHz, and enable prism1 interface (you can use mode=ap-bridge, if you have Prism AP License):

      /interface prism set prism1 mode=bridge ssid=br8 frequency=2447 disabled=no
      

    3. Add bridge interface and specify forwarded protocol list:

      /interface bridge add forward-protocols=ip,arp,other disabled=no
      
    4. Specify ports prism1 and ether1 that belong to bridge1:
      /interface bridge port set ether1,prism1 bridge=bridge1
      

    5. Assign IP address 10.0.0.217/24 to the bridge1 interface:

      /ip address add address=10.0.0.217/24 interface=bridge1
      

    6. Set default route to 10.0.0.1:

      /ip route add gw=10.0.0.1
      

    [MT-child] Configuration

    Assume you have interfaces ether1 and prism1 under /interface list.
    1. Enable the Ethernet interface ether1:

      /interface enable ether1
      

    2. Configure prism1 interface.
      Here, you have to specify root-ap MAC address, so the Prism radio registers to the root AP.
      Set mode=bridge, ssid=br8, frequency=2447MHz, root-ap=xx:xx:xx:xx:xx:xx, and enable prism1 interface (you can use mode=ap-bridge, if you have Prism AP License):

      /interface prism set prism1 mode=bridge ssid=br8 frequency=2447 \
      root-ap=xx:xx:xx:xx:xx:xx disabled=no
      

      Here, substitute the xx:xx:xx:xx:xx:xx with MAC address of [MT-parent] prism interface.

    3. Check your setup and see, if you have successfully registered to the root AP. Its MAC address should be listed as parent-ap in the registration table of prism interface, for example:

      [admin@MT-child] interface prism> registration-table print
        # INTERFACE                     MAC-ADDRESS       TYPE      PARENT
        0 prism1                        00:02:6F:01:CE:2A parent-ap
      [admin@MT-child] interface prism>
      

    4. Add bridge interface and specify forwarded protocol list:

      /interface bridge add forward-protocols=ip,arp,other disabled=no
      
    5. Specify ports prism1 and ether1 that belong to bridge1:
      /interface bridge port set ether1,prism1 bridge=bridge1
      

    6. Assign IP address 10.0.0.218/24 to the bridge1 interface:

      /ip address add address=10.0.0.218/24 interface=bridge1
      

    7. Set default route to 10.0.0.1:

      /ip route add gw=10.0.0.1
      

    Note, that both LANs should use IP addresses from the same network 10.0.0.0/24. Both MikroTik routers belong to the same network too. You should be able to ping through the wireless bridge from one LAN to other and to gateway 10.0.0.1.


    © Copyright 1999-2003, MikroTik