Community discussions

MikroTik App
 
noahalkaygany
just joined
Topic Author
Posts: 5
Joined: Mon Apr 21, 2014 2:23 am

help me two ptp

Thu Apr 24, 2014 3:13 am

Hello
This initial request to me and I hope that you will help me and I am grateful for both will try to help
I have a point-to-point Number Two and I want to make the first point of the (tx)
The second point of the (Rx)
Note that the router is used in the network (rb912) Number 4
With ultra Thanksgiving
You do not have the required permissions to view the files attached to this post.
 
User avatar
Egate
Long time Member
Long time Member
Posts: 554
Joined: Thu May 15, 2008 10:43 am
Location: South Africa

Re: help me two ptp

Thu Apr 24, 2014 6:53 pm

Hi RB912 is has dual chain radio. This means you can use two aerial cables, connected to the RB912. Connect one to one dish and other to second dish. Do the same on other side. that is it. Just make sure that one dish is horizontal polarized and second dish vertical, on both sides.
 
noahalkaygany
just joined
Topic Author
Posts: 5
Joined: Mon Apr 21, 2014 2:23 am

Re: help me two ptp

Fri Apr 25, 2014 2:44 am

Thank you, but I have four (rb912) with the number four rocketdish
All I want to do one for the sending and the second to Receive
On the other side the same thing
 
MovingNetworksFwd
Frequent Visitor
Frequent Visitor
Posts: 61
Joined: Tue Feb 18, 2014 1:50 am
Location: Arkansas
Contact:

Re: help me two ptp

Fri Apr 25, 2014 7:07 am

It seems you are wanting something similar to this http://wiki.mikrotik.com/wiki/OSPF_to_s ... redundancy but instead of a single 333 with two cards you are using two rb912s and will need another separate router to be the rb333 in this example.

If this is what you are looking for I can help you further if you need it but to do what you want optimally you will need another set of routers (rb750/450/950/2011/1000 series/CCR/CRS). The RB450/1000+ series routers should be able to take anything you can throw at it but the lower end routers will have troubles routing the smaller packets at high throughput.

Ryan
 
noahalkaygany
just joined
Topic Author
Posts: 5
Joined: Mon Apr 21, 2014 2:23 am

Re: help me two ptp

Sat Apr 26, 2014 12:54 am

My brother Ryan
Yes brother, I think we have reached a solution 450G Router
  In ether 1 full duplex TX and rx
  In ether 2 tx
In ether 3 rx
  On the opposite side of the same process
Router also 450g
  How will the settings in this case
I am grateful to you that you try this wonderful has shown me some things, but I hope to be a right way and controlled
Gratefully
Noah
You do not have the required permissions to view the files attached to this post.
 
noahalkaygany
just joined
Topic Author
Posts: 5
Joined: Mon Apr 21, 2014 2:23 am

Re: help me two ptp

Mon Apr 28, 2014 12:37 am

Brothers, who can help me in a way to prepare the existing connection in the picture above
 
jarda
Forum Guru
Forum Guru
Posts: 7756
Joined: Mon Oct 22, 2012 4:46 pm

Re: help me two ptp

Mon Apr 28, 2014 9:21 am

Hi what effect do you expect / need?
 
marcin21
Member Candidate
Member Candidate
Posts: 214
Joined: Tue May 04, 2010 4:50 pm

Re: help me two ptp

Mon Apr 28, 2014 10:59 am

You should look for the link gaven above. OSPF to simulate full duplex. It does exactly what You want to achieve. I've got some working links this way. Strongly recommend this solution with OSPF.
 
MovingNetworksFwd
Frequent Visitor
Frequent Visitor
Posts: 61
Joined: Tue Feb 18, 2014 1:50 am
Location: Arkansas
Contact:

Re: help me two ptp

Tue Apr 29, 2014 12:12 am

There will be a few changes to the config above. Let me write it for you and I will paste it here as an edit.

Ryan

EDIT Configuration added Below.

Here is the config I have found some of and written the rest of for you. I have syntax checked it the best I can without having the relevant hardware to run it on as such you may have some spelling errors. This config also assumes you are using dual polarity capable cards/boards as it has the ht-tx and ht-rx chains set for 0 and 1 and is also using NV2.

Router A

/ip address add address=192.168.0.1/24 interface=ether1
/ip address add address=192.168.10.1/29 interface=ether2
/ip address add address=192.168.20.1/29 interface=ether3
/routing ospf network add network=192.168.10.0/29 area=backbone
/routing ospf network add network=192.168.20.0/29 area=backbone
/routing ospf interface add interface=ether2 cost=100

Router B

/ip address add address=192.168.1.1/24 interface=ether1
/ip address add address=192.168.10.2/29 interface=ether2
/ip address add address=192.168.20.2/29 interface=ether3
/routing ospf network add network=192.168.10.0/29 area=backbone
/routing ospf network add network=192.168.20.0/29 area=backbone
/routing ospf interface add interface=ether3 cost=100


Radio Link A

Radio 1

/interface bridge add
/int bridge port add interface=ether1 bridge=bridge1
/int bridge port add interface=wlan1 bridge=bridge1

/ip address add address=192.168.10.3/29 interface=bridge1
/ip route add gateway 192.168.10.1

/int wireless
set [ find default-name=wlan1 ] band=5ghz-a/n channel-width=20mhz disabled=no frequency=5745 l2mtu=1600 mode=bridge rx-chains=0,1 ssid=LinkA tx-chains=0,1 wireless-protocol=nv2


Radio 2

/interface bridge add
/int bridge port add interface=ether1 bridge=bridge1
/int bridge port add interface=wlan1 bridge=bridge1

/ip address add address=192.168.10.4/29 interface=bridge1
/ip route add gateway 192.168.10.1

/int wireless
set [ find default-name=wlan1 ] band=5ghz-a/n channel-width=20mhz disabled=no frequency=5745 l2mtu=1600 mode=station-bridge rx-chains=0,1 ssid=LinkA tx-chains=0,1 wireless-protocol=nv2



Radio Link B

Radio 1

/interface bridge add
/int bridge port add interface=ether1 bridge=bridge1
/int bridge port add interface=wlan1 bridge=bridge1

/ip address add address=192.168.20.3/29 interface=bridge1
/ip route add gateway 192.168.20.1

/int wireless
set [ find default-name=wlan1 ] band=5ghz-a/n channel-width=20mhz disabled=no frequency=5825 l2mtu=1600 mode=bridge rx-chains=0,1 ssid=LinkB tx-chains=0,1 wireless-protocol=nv2


Radio 2

/interface bridge add
/int bridge port add interface=ether1 bridge=bridge1
/int bridge port add interface=wlan1 bridge=bridge1

/ip address add address=192.168.20.4/29 interface=bridge1
/ip route add gateway 192.168.20.1

/int wireless
set [ find default-name=wlan1 ] band=5ghz-a/n channel-width=20mhz disabled=no frequency=5825 l2mtu=1600 mode=station-bridge rx-chains=0,1 ssid=LinkB tx-chains=0,1 wireless-protocol=nv2
 
noahalkaygany
just joined
Topic Author
Posts: 5
Joined: Mon Apr 21, 2014 2:23 am

Re: help me two ptp

Wed Apr 30, 2014 4:25 am

Thank you Ryan
I'll try it
noah

Who is online

Users browsing this forum: No registered users and 35 guests