Community discussions

MikroTik App

Search found 215 matches

by Trackboy
Mon Aug 10, 2020 10:35 pm
Forum: General
Topic: Site to site IPSEC VPN setup with Linux (libreswan 3.16) [SOLVED]
Replies: 3
Views: 2502

Re: Site to site IPSEC VPN setup with Linux (libreswan 3.16) [SOLVED]

You do not have to remove the masquerade rule, try this one: ip firewall nat add chain=srcnat action=accept src-address=10.177.177.0/24 dst-address=192.168.100.0/24 ip firewall nat add chain=srcnat action=masquerade out-interface=(put here your WAN interface) This is general NAT rule to access the I...
by Trackboy
Fri Aug 07, 2020 3:36 pm
Forum: General
Topic: Cisco 1921 router and Mikrotik IPSec IKEv2 Site to Site VPN
Replies: 1
Views: 2725

Cisco 1921 router and Mikrotik IPSec IKEv2 Site to Site VPN

Hello everybody! I got a Cisco 1921 Router with 15.3(3)M3 IOS and i have got a Mikrotik HEX with 6.47.1 RouterOS. This is only for fun and learning , so this is not for production purposes. I got the following error from the Cisco side: " Failed to receive the AUTH msg before the timer expired ...
by Trackboy
Thu Jan 16, 2020 12:59 pm
Forum: General
Topic: IPSec IKEv2 Site to Site tunnel between Mikrotik and Debian
Replies: 0
Views: 1607

IPSec IKEv2 Site to Site tunnel between Mikrotik and Debian

Hello everybody! I have got a site to site tunnel only for learning purpose. Mikrotik have dynamic public IP, Debian have fix. There are four private networks behind Mikrotik, but when the IP change one of the SA Src Address is stuck at the previous one in the particular Policy, and the problem is a...
by Trackboy
Wed Aug 28, 2019 8:41 pm
Forum: General
Topic: GRE over IKEv2
Replies: 2
Views: 1879

Re: GRE over IKEv2

Note that this setup is only viable when one side is behind NAT. Otherwise you can specify DNS directly in GRE settings with ipsec-secret starting from 6.45.1. The bridge on server side acts like a loopback interface on which the internal address is configured used for GRE tunnel communication. If ...
by Trackboy
Wed Aug 28, 2019 7:15 am
Forum: General
Topic: GRE over IKEv2
Replies: 2
Views: 1879

GRE over IKEv2

Hello everybody! I do not have static public IP addresses, so that is why i tried this configuration: https://wiki.mikrotik.com/wiki/Manual:IP/IPsec#Site_to_Site_GRE_tunnel_over_IPsec_.28IKEv2.29_using_DNS First question : Why do i need bridge for the server side ? Second one: If i enable the keepal...
by Trackboy
Thu Aug 01, 2019 4:28 pm
Forum: General
Topic: EoIP, WIN 10 DHCP problem
Replies: 2
Views: 889

Re: EoIP, WIN 10 DHCP problem

Here are the configs: A point: /interface bridge add name=LAN protocol-mode=none /interface lte set [ find ] mac-address=AC:FF:FF:00:00:00 name=lte1 /interface eoip add mac-address=XX:XX:XX:XX:XX:XX name=EoIP_Test remote-address=\ xxxxxxxxx.sn.mynetname.net tunnel-id=0 /interface lte apn set [ find ...
by Trackboy
Thu Aug 01, 2019 2:30 pm
Forum: General
Topic: EoIP, WIN 10 DHCP problem
Replies: 2
Views: 889

EoIP, WIN 10 DHCP problem

Hello everybody! I have got 2 sites with public IP addresses. Point A: M33G with DHCP (10.10.10.0/24) server enabled on Bridge interface and EoIP in the bridge too. Point B: M33G: LTE connection with public IP address Bridge: eth1,2,3 and EoIP too. If i add a dhcp client or set an address (10.10.10....
by Trackboy
Tue Jan 22, 2019 3:06 pm
Forum: General
Topic: understanding and fixing MTU/MSS/PMTU with IPsec
Replies: 36
Views: 40325

Re: understanding and fixing MTU/MSS/PMTU with IPsec

I put the firewall mangle rule, bit this one is not solved my problem completely, when i type the speedtest.net, sometimes working, sometimes not: ip firewall mangle add chain=forward action=change-mss log=yes new-mss=clamp-to-pmtu protocol=tcp tcp-flags=syn out-interface=ISP_PPPoE passthrough=yes d...
by Trackboy
Tue Jan 22, 2019 10:48 am
Forum: General
Topic: understanding and fixing MTU/MSS/PMTU with IPsec
Replies: 36
Views: 40325

Re: understanding and fixing MTU/MSS/PMTU with IPsec

Trackboy, the first thing i did, which really helped, was to use Ping with the DF flag set to discover the actual MTU that gets through. perhaps try that and see if you are getting the same max packet size in Windows and Linux? The options are slightly different in linux and windows there are lots ...
by Trackboy
Thu Jan 17, 2019 2:55 pm
Forum: General
Topic: understanding and fixing MTU/MSS/PMTU with IPsec
Replies: 36
Views: 40325

Re: understanding and fixing MTU/MSS/PMTU with IPsec

Hello guys! Sorry for my english first..... I have got similar problem or i think so. I have got a Mikrotik IKEv2 road warrior VPN with RSA authentication. I have got PPPoE connection at home. MTU and MRU is 1480. When i connect with Strongswan client on Linux Mint, i experience that, ping is fine, ...
by Trackboy
Thu Jan 10, 2019 10:26 am
Forum: General
Topic: Mikrotik IKEv2 road warrior VPN bypass fasttrack firewall rule ( SOLVED )
Replies: 9
Views: 2805

Re: Mikrotik IKEv2 road warrior VPN bypass fasttrack firewall rule

L2TP ? But i use IKEv2 now

Sorry, but does it create a dynamic interface? I've not used IKEv2.
If you need help to setup an IKEv2 server i can help you now : )
by Trackboy
Thu Jan 10, 2019 10:22 am
Forum: General
Topic: Mikrotik IKEv2 road warrior VPN bypass fasttrack firewall rule ( SOLVED )
Replies: 9
Views: 2805

Re: Mikrotik IKEv2 road warrior VPN bypass fasttrack firewall rule

So the firewall rule is the following, i did not know this: ip firewall filter add chain= forward action=accept ipsec-policy=in,ipsec ip firewall filter add chain=forward action=accept ipsec-policy=out,ipsec We need to put these rules above the fasttrack rule: ip firewall filter add chain=forward ch...
by Trackboy
Thu Jan 10, 2019 8:08 am
Forum: General
Topic: Mikrotik IKEv2 road warrior VPN bypass fasttrack firewall rule ( SOLVED )
Replies: 9
Views: 2805

Re: Mikrotik IKEv2 road warrior VPN bypass fasttrack firewall rule

Hey I would suggest to copy your current config, and then reset to default configuration, and then only selectively add some rules. The default config is "compatible" with vpns, and I think will be the easiest route. I will give it a try today, with my old 750GL. Thank you for the hint.
by Trackboy
Thu Jan 10, 2019 8:07 am
Forum: General
Topic: Mikrotik IKEv2 road warrior VPN bypass fasttrack firewall rule ( SOLVED )
Replies: 9
Views: 2805

Re: Mikrotik IKEv2 road warrior VPN bypass fasttrack firewall rule

No, it does not. I know the L2TP, In case of L2TP RouterOS creates an interface, but in IKEv2 does not.
by Trackboy
Wed Jan 09, 2019 3:28 pm
Forum: General
Topic: Mikrotik IKEv2 road warrior VPN bypass fasttrack firewall rule ( SOLVED )
Replies: 9
Views: 2805

Mikrotik IKEv2 road warrior VPN bypass fasttrack firewall rule ( SOLVED )

Hello everybody! I have got a Mikrotik 951G router with IKEv2 remote VPN. Fasttrack is enabled. ICMP works fine, but i can not browsing accross the VPN. I read about that this is because of the enabled Fasttrack. This is my firewall export now: https://pastebin.com/MzWXQuiW?fbclid=IwAR0ktil-mU6JQj6W...
by Trackboy
Tue Nov 13, 2018 7:52 pm
Forum: General
Topic: L2TP/IPSec without push DNS servers to the clients
Replies: 1
Views: 1392

L2TP/IPSec without push DNS servers to the clients

Hello everybody! I have got a L2TP/IPSec VPN server. I do not want to give DNS servers to my clients. So i do not want to enable the DNS resolve for them. If i do not set any DNS servers in the ppp profile, then my router gives the 2 DNS servers from the ip dns. Is there any solution for this ? Than...
by Trackboy
Mon Jul 02, 2018 11:06 am
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Re: Public IP over a tunnel ( SOLVED )

I tried lot of MTU, but i could not find the proper value. I tried L2TP/IPSec solution and that is working fine and assign public IP.
by Trackboy
Thu May 24, 2018 7:57 am
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Re: Public IP over a tunnel ( SOLVED )

I tried several MTU-s so far, but the problem is the same. If i want to ping a host that is working fine, there is not packet loss. On the speedtest.net i get 100/100 Mbit/sec.
So the web browsing is very slow.
by Trackboy
Mon May 21, 2018 1:43 pm
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Re: Public IP over a tunnel ( SOLVED )

My PPPoE connection shows now 1480 MTU and MRU. I set this value on the both side in the IPIP configuration. But the problem is the same.
by Trackboy
Fri May 18, 2018 10:42 pm
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Re: Public IP over a tunnel ( SOLVED )

One more question. I have got a PPPoE connection with dynamic IP. I tried the tunnel with this connection. The speed was around 2-3 Mbit/sec. The ping is perfect and i do not have packet loss. Maybe i have got MTU issue, and i would need to change with the mangle. I have got another connection with ...
by Trackboy
Wed May 16, 2018 12:20 pm
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Re: Public IP over a tunnel

I tried with IPIP tunnel, working very well. Thank you very much for your help and your patient : ) This is really helpful and valuable for me.
by Trackboy
Tue May 15, 2018 9:36 pm
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Re: Public IP over a tunnel

It should work with GRE too ?
by Trackboy
Mon May 14, 2018 11:50 am
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Re: Public IP over a tunnel

So i have got a GRE tunnel that is working fine between the CHR and home Mikrotik. On the CHR there is only one ether1 interface with 2 public IP addresses: 217.144.X.X/24, of course they are from the same range. I added only 217.144.X.119/24 to ether1. Mikrotik GRE interface IP address: 172.16.1.1/...
by Trackboy
Sun May 13, 2018 8:28 pm
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Re: Public IP over a tunnel

I made an encrypted GRE tunnel with the IPsec secret feature. 172.16.1.0/30 is the GRE tunnel ip range.
On CHR added 10.10.100.0/24 route, this is behind the 951G. That's it.
by Trackboy
Sun May 13, 2018 2:30 pm
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Re: Public IP over a tunnel

I made a GRE tunnel between the 951G and CHR. The tunnel is working. I added routing mark too.
I added public IP to my server statically. But does not work. I can not find proxy arp feature in the GRE interface.
by Trackboy
Thu May 10, 2018 10:20 am
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Re: Public IP over a tunnel

Thank you very much for the help, i will give it a try : )
by Trackboy
Wed May 09, 2018 7:46 am
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Re: Public IP over a tunnel

I would rather make a tunnel between them, and i would like to assign the IP to the server statically.
Maybe EoIP tunnel would be good for this ?
by Trackboy
Tue May 08, 2018 1:57 pm
Forum: Forwarding Protocols
Topic: Public IP over a tunnel ( SOLVED )
Replies: 35
Views: 26034

Public IP over a tunnel ( SOLVED )

Hello everybody! I have got a Mikrotik CHR with 2 public IP addresses. I would like to assign one of the IP address to my server.
My server is at home, so i would need a tunnel that capable of this thing. So is there any solution for this ?

Thank you very much for any help!
by Trackboy
Wed Feb 14, 2018 10:18 pm
Forum: General
Topic: GRE Tunnel between Ubuntu VPS and Mikrotik
Replies: 1
Views: 1266

Re: GRE Tunnel between Ubuntu VPS and Mikrotik

So nobody know ?
by Trackboy
Mon Feb 12, 2018 8:43 pm
Forum: General
Topic: GRE Tunnel between Ubuntu VPS and Mikrotik
Replies: 1
Views: 1266

GRE Tunnel between Ubuntu VPS and Mikrotik

Hello to all ! Is it possible to do GRE Tunnel between Linux and Mikrotik ?
by Trackboy
Wed Jan 31, 2018 4:08 pm
Forum: General
Topic: IPTV IGMP Proxy via GRE tunnel
Replies: 0
Views: 826

IPTV IGMP Proxy via GRE tunnel

Hello everybody ! I would like to get some help to set up IGMP Proxy. I am just curious how should i implement this. I can create UDP Multicast stream with VLC. My question would be that, how can i stream via the tunnel ? This is the layout: My PC: 10.10.100.2/24 ( UDP stream: 239.0.0.10:1500, if i ...
by Trackboy
Thu Jan 11, 2018 12:50 pm
Forum: Beginner Basics
Topic: Site to Site IpSec Tunnel
Replies: 23
Views: 31946

Re: Site to Site IpSec Tunnel

Hello. One of my site has dynamic public IP with PPPoE connection. I found the script for this problem and it is worked very well when my IP changed. But the problem is the same. I have an another connection with PPPoE connection but with fix public IP address. I set up the IPSec connection with the...
by Trackboy
Tue Jan 02, 2018 3:38 pm
Forum: Beginner Basics
Topic: Site to Site IpSec Tunnel
Replies: 23
Views: 31946

Re: Site to Site IpSec Tunnel

Hello everybody! I have got 2 LAN networks, IPSec and GRE tunnel is working fine. But there is a problem. There is a laptop in the another LAN and i can not access to it, but i can ping it. I can access the other side from this laptop by the way. So i can access my 951G, and behind my PC, ssh, ftp.....
by Trackboy
Mon Jul 03, 2017 2:09 pm
Forum: Forwarding Protocols
Topic: IPTV multicast over Internet
Replies: 3
Views: 2002

Re: IPTV multicast over Internet

Ok, just i do not know how should i implement this.......
by Trackboy
Thu May 25, 2017 12:38 pm
Forum: Forwarding Protocols
Topic: IPTV multicast over Internet
Replies: 3
Views: 2002

IPTV multicast over Internet

Hello everybody! I have got a question. I know multicast is not possible in the public internet.
But, is there any solution to make it work somehow ? I mean for example with VPN tunnels.
Thank you for any response!
by Trackboy
Sun Oct 30, 2016 3:08 pm
Forum: Wireless Networking
Topic: p2p link stable?!?
Replies: 14
Views: 2819

Re: p2p link stable?!?

Not problem get bridge Ap device = bridge. Station device= station bridge Sent from my iPhone using Tapatalk Ok I did, but I get same speed. I try at my home where every antenna point in opposite direction I get 8.3 MB/sec from ftp server and bandwith test I select both I get 50mbit/50mbit. I disab...
by Trackboy
Mon Sep 26, 2016 5:47 pm
Forum: Wireless Networking
Topic: Simple question on link speeds over 17km
Replies: 5
Views: 1960

Re: Simple question on link speeds over 17km

Hi, Going to set-up a link between 2 high sites (effectively a backhaul for a while) in a few weeks, already spoke with my supplier and he said this is a reasonable solution but would like more input. http://i.imgur.com/5JDj73h.png So I am going to use a Netmetal (2W Dual chain) connected to a 30dB...
by Trackboy
Wed Jun 08, 2016 8:12 pm
Forum: Wireless Networking
Topic: 2 chains AP with some 1 chain client
Replies: 2
Views: 995

Re: 2 chains AP with some 1 chain client

Hi,

Do you mean the ap has 2 chains enabled with a dual chain antenna and then you connect a mixture of cpe's to it sxt(2chain) rb groove(1 chain) ?

Is so then it won't be a problem

Yes, exactly i mean this way, thank you anyway.
by Trackboy
Fri Jun 03, 2016 8:46 am
Forum: Wireless Networking
Topic: 2 chains AP with some 1 chain client
Replies: 2
Views: 995

2 chains AP with some 1 chain client

Hello everybody. I would have a question. Can damage the AP if we use 1 and 2 chains client simultaneously ?
Sure both of the chains enabled in the AP.

Thank you in advanced.
by Trackboy
Sun Dec 27, 2015 5:33 pm
Forum: Wireless Networking
Topic: 2 km point to point HELP !
Replies: 9
Views: 4310

Re: 2 km point to point HELP !

I read about 100 Mbit/sec with 802.11 AC with 20 Mhz channel width. So you should get at least this speed or more on 2 km. You can play with the settings. First you need to achieve good signal strenght. Around -50 and between -60 dBm. Your signal strenght is too much. This 29 dBi antenna is good but...
by Trackboy
Sat Dec 26, 2015 7:58 pm
Forum: Wireless Networking
Topic: 2 km point to point HELP !
Replies: 9
Views: 4310

Re: 2 km point to point HELP !

Hello everybody, I need suggestion / help with my point to point link. Currently I have around 22 mbit Tx / 10 mbit Rx connection with this link, but when I watching streaming media like video connection is not stable, ping increasing. Whats best configuration for this link ? First of all, I have 2...
by Trackboy
Fri Oct 23, 2015 11:01 am
Forum: Wireless Networking
Topic: Mikrotik and Smartphones 40 Mhz support
Replies: 0
Views: 1010

Mikrotik and Smartphones 40 Mhz support

Hello everybody! I know this thing is not related to Mikrotik. I have got an LG G3. I have not found anything this device's 40 Mhz support and maybe on this forum some people have some information about it. I have got an RB 751 width 20/40Mhz mode on 2.4 Ghz. I know on 2.4 Ghz the 40 Mhz most of the...
by Trackboy
Fri Aug 14, 2015 1:45 pm
Forum: Wireless Networking
Topic: Good signal but very poor throughput....
Replies: 11
Views: 2927

Re: Good signal but very poor throughput....

Hello. Your signal strenght should be -50 and -60dBm and your signal to noise value is huge.
by Trackboy
Fri Jul 10, 2015 7:55 pm
Forum: Announcements
Topic: 6.30 released
Replies: 180
Views: 65044

Re: 6.30 released

The speed is very bad with 6.30. The Ethernet and wireless too. Where i had 170 Mbit/sec now i have 80-90.
by Trackboy
Thu Jul 02, 2015 9:10 pm
Forum: Wireless Networking
Topic: How many stations can I add to a R52Hn in 5GHz A/N?
Replies: 5
Views: 1460

Re: How many stations can I add to a R52Hn in 5GHz A/N?

Hello, I have a RB433UAH with 3 R52Hn attached to it. I'm constantly adding new stations on it and now it seems that I'm getting so much interference that I can't even ping those stations... One R52Hn has 63 stations connected to it, the other one has 52, and the last one has 17. My question is: Ho...
by Trackboy
Wed Jun 03, 2015 7:02 pm
Forum: Beginner Basics
Topic: IP TV STREAMING
Replies: 2
Views: 1465

Re: IP TV STREAMING

I think if the fresnel zone is 100% clear and the environment is less noisy, the sxt will be fine for 2-3 km.
So i think you would need something else.
Depending on the budget.
by Trackboy
Thu May 14, 2015 10:43 pm
Forum: Wireless Networking
Topic: 802.11G Vs N
Replies: 1
Views: 1106

Re: 802.11G Vs N

Running 802.11G with one antenna connector to n-type and then to omni. Chain 0 is selected At the moment I have it set to 802.11G would Chaning to 802.11N and also enabling chain1 be of any benfit or does it only work if your runing a dual pol antennas on both sides? If you change to N you can achi...
by Trackboy
Sat Apr 25, 2015 6:43 pm
Forum: Wireless Networking
Topic: best solution for 35 Km ?
Replies: 15
Views: 4185

Re: best solution for 35 Km ?

433AH is a strong device. Are you using 802.11 N ? I have not yet bought the devices. I am still trying to figure out what to buy. So, I dont really get what you meant by 802.11 N ?? Also, would you please give more details on the word "strong". is 433AH suitable for longer distances or i...
by Trackboy
Thu Apr 23, 2015 10:33 pm
Forum: Wireless Networking
Topic: best solution for 35 Km ?
Replies: 15
Views: 4185

Re: best solution for 35 Km ?

433AH is a strong device. Are you using 802.11 N ?
by Trackboy
Wed Apr 22, 2015 8:04 pm
Forum: Wireless Networking
Topic: best solution for 35 Km ?
Replies: 15
Views: 4185

Re: best solution for 35 Km ?

I do not know Kenbotong, it is similar like other dishes, 32 dBi, so should be good for this distance.
by Trackboy
Mon Apr 20, 2015 10:51 pm
Forum: Wireless Networking
Topic: best solution for 35 Km ?
Replies: 15
Views: 4185

Re: best solution for 35 Km ?

I think a new 802.11 ac link with 20Mhz channel bandwith should be ok. I am not an expert but Mikrotik 30dBi new dish antenna should be ok with a Netbox 5 http://routerboard.com/RB911G-5HPacD-NB http://routerboard.com/MTAD-5G-30D3-PA The signal strenght should be around -65dBm. But you know, this is...
by Trackboy
Sun Apr 19, 2015 2:51 pm
Forum: Wireless Networking
Topic: best solution for 35 Km ?
Replies: 15
Views: 4185

Re: best solution for 35 Km ?

Hello, i have never done this link like this before, but you need 100% freshnel zone.
How much bandwith do you need ?
by Trackboy
Thu Apr 09, 2015 9:52 am
Forum: Beginner Basics
Topic: DHCP offering lease [ip] for [mac] without success
Replies: 22
Views: 11376

Re: DHCP offering lease [ip] for [mac] without success

Try this one, Bootp support: disabled.
by Trackboy
Tue Mar 17, 2015 10:13 pm
Forum: Wireless Networking
Topic: NetMetal AC 6.27V - 12km link
Replies: 33
Views: 8373

Re: NetMetal AC 6.27V - 12km link

Your CCQ is not someting good, it is should be 90-100%. Have you tried other channels ?
by Trackboy
Fri Mar 13, 2015 3:47 pm
Forum: Wireless Networking
Topic: What modulation and rate for 40clients and noisy environment
Replies: 8
Views: 3236

Re: What modulation and rate for 40clients and noisy environment

So do you have 40 clients, and would you like to provide for them 10Mbit/sec ?
by Trackboy
Fri Mar 13, 2015 9:41 am
Forum: Wireless Networking
Topic: NetMetal AC 6.27V - 12km link
Replies: 33
Views: 8373

Re: NetMetal AC 6.27V - 12km link

I am very curious what speed capable of this equipment on 12 km.
My experience is that in point point backbone network needs to achieve at least -60dBm signal strenght.
by Trackboy
Tue Dec 09, 2014 3:14 pm
Forum: Beginner Basics
Topic: ospf
Replies: 3
Views: 1200

Re: ospf

You need to NAT only on your router, that is connected to the ISP.
by Trackboy
Wed Nov 12, 2014 5:01 pm
Forum: General
Topic: Port forwarding
Replies: 0
Views: 734

Port forwarding

Hello to all! I have got a bridged PTP wireless link. Birdge network is 192.168.1.0/24 The other side of the bridge there is an RB 751.( eth1=192.168.1.195/24 ) In the RB 751, i do not use bridge. I use Ospf, and static routes. So there is a 10.10.10.0/30 network in the 751, ( eth2=10.10.10.1/30 ) I...
by Trackboy
Mon Oct 27, 2014 6:48 pm
Forum: General
Topic: What is the maximum capacity of a RB951G?
Replies: 22
Views: 6342

Re: What is the maximum capacity of a RB951G?

951G and 411GL are powerful devices, so that's why i achieved 200 Mbit/sec.
I do not remember exactly 951G's switch performance, but that was around 300 Mbit/sec with Proftp.
I have never tested with internal bandwith test.
by Trackboy
Sun Oct 26, 2014 9:25 am
Forum: General
Topic: Port forwarding problem
Replies: 2
Views: 1340

Re: Port forwarding problem

Hello, it is fixed, thank you very much for your help.
by Trackboy
Sat Oct 25, 2014 10:20 pm
Forum: General
Topic: What is the maximum capacity of a RB951G?
Replies: 22
Views: 6342

Re: What is the maximum capacity of a RB951G?

I tested 951G with 411GL and with 2*2 MIMO that was capable of 200 Mbit/sec tcp speed with Ubuntu Proftp server.
CPU was around 60%. I think this is a very nice performance.
by Trackboy
Sat Oct 25, 2014 8:18 pm
Forum: General
Topic: Port forwarding problem
Replies: 2
Views: 1340

Port forwarding problem

Hello everybody ! I have got a problem with port forwarding. There is an Ubuntu 12.04 server, internal ip is: 10.10.10.2/30 There are 2 ports: 10.10.10.2:40000= Torrent client 10.10.10.2:28000= another service If Torrent client's 40000 port is enabled, another one is not working. ip firewall nat add...
by Trackboy
Wed Oct 22, 2014 7:57 pm
Forum: Beginner Basics
Topic: Port Forwarding setup frusterations with Dynamic IP (Home)
Replies: 16
Views: 63968

Re: Port Forwarding setup frusterations with Dynamic IP (Hom

Hello everybody! I have got a port forwarding problem. I did not want to strart a new thread. I have a server and there are 2 ports that i want to forwarding. The problem is that, the both port is not working at the same time. Server ip address is: 10.10.10.2 10.10.10.2: 40000 ( torrent ) 10.10.10.2...
by Trackboy
Mon Sep 29, 2014 5:32 pm
Forum: Wireless Networking
Topic: MikroTik huge speeds
Replies: 1
Views: 1155

Re: MikroTik huge speeds

Nice! What kind of Mikrotik RB's are you using ?
by Trackboy
Mon Aug 25, 2014 4:28 pm
Forum: Wireless Networking
Topic: wifi n on 400x50m open field
Replies: 21
Views: 4416

Re: wifi n on 400x50m open field

http://wiki.mikrotik.com/wiki/Manual:Wireless_AP_Client

Groove with 6 dBi omni antenna should be working fine as AP on 100 m distance.
by Trackboy
Mon Aug 25, 2014 4:22 pm
Forum: Wireless Networking
Topic: Low cost WISP system
Replies: 15
Views: 4355

Re: Low cost WISP system

Hi friends, please suggest a good low cost WIP system for our local WISP setup. I found SXT LITE 2 is good for client side. Also please suggest good antenna for WISP end. We are expecting around 20 customers at the beginning. So we need low end system for starting our business. SXT LITE 2 is good f...
by Trackboy
Sat Aug 16, 2014 11:15 am
Forum: Wireless Networking
Topic: ptp links 5km 16km 21km
Replies: 4
Views: 2437

Re: ptp links 5km 16km 21km

Hello, i made a test again, this is my best result so far. Test equipment: RB 951, RB 750GL, RB 411GL On my Ubuntu 12.04 running a Proftp server, so this speed is TCP. On all RB running OSPF. Between RB 951 and RB 411GL there is 2.4 Ghz connection at the moment. I just wanted to show you that device...
by Trackboy
Fri Jul 25, 2014 11:02 am
Forum: RouterBOARD hardware
Topic: dead Sxt lite5?
Replies: 15
Views: 8020

Re: dead Sxt lite5?

I tried different power supplies, not power supply problem
by Trackboy
Thu Jul 24, 2014 7:34 pm
Forum: RouterBOARD hardware
Topic: dead Sxt lite5?
Replies: 15
Views: 8020

Re: dead Sxt lite5?

I understand, my 411GL working, but unreliable. Uptime record is 5 days, after dead. Then i plugged off and back, working couple minutes and then freeze again.If i wait 1 day, and then plug back, working again 5 days. I have no idea what can be the problem, i think this is not ROS problem. Very anno...
by Trackboy
Wed Jul 23, 2014 12:10 am
Forum: RouterBOARD hardware
Topic: dead Sxt lite5?
Replies: 15
Views: 8020

Re: dead Sxt lite5?

Hello, this is almost the same situation as in my case. I have got an 411GL sometimes working 5 days, once just 2 minutes and then dead. Then i need to plugged off and back. So far i do not know what the problem is. I think this is not ROS problem.I am using 6.17 with 3.18 routerboot. I tried differ...
by Trackboy
Sun Jul 20, 2014 11:38 am
Forum: Wireless Networking
Topic: SXT Lite5 P to P low speed
Replies: 2
Views: 1318

Re: SXT Lite5 P to P low speed

Can you give some details ? Signal strenght, CCQ, SNR....
by Trackboy
Tue Jul 15, 2014 6:46 pm
Forum: Wireless Networking
Topic: Q about telent
Replies: 5
Views: 1733

Re: Q about telent

You mean telnet ? Anyway it is simple, you connect to the router via telnet. First you need to getting know the Mikrotik RouterOS layout. For example if you would like to set an IP address for an interface you need to know where located is: ip address add address=10.10.200.0/30 interface=wlan0 disab...
by Trackboy
Thu Jul 10, 2014 4:46 pm
Forum: Wireless Networking
Topic: ptp links 5km 16km 21km
Replies: 4
Views: 2437

Re: ptp links 5km 16km 21km

Hello, i recommend only PtP for these distances.If you need around 100 Mbit/sec tcp speed, you need 2*2 antennas. I read about here RB911G is a good choice for 5, 16, 21 km.This is a powerful device. I think for 5 km will be enough 24dBi Jirous JRC-24EX MIMO. For 16 and 21 km you need at least 28-30...
by Trackboy
Wed Jul 09, 2014 4:45 pm
Forum: RouterBOARD hardware
Topic: RB 411GL problem
Replies: 3
Views: 1387

Re: RB 411GL problem

So ? Any hints ? Ok, this board is going into trash. Unusable.
by Trackboy
Mon Jul 07, 2014 4:51 pm
Forum: RouterBOARD hardware
Topic: RB 411GL problem
Replies: 3
Views: 1387

Re: RB 411 GL problem

Hello, first i tried in the ROS system/packages/Check for updates menu, the installation was successful.
And yesterday i installed from 6.15 npk package.So far the problem is the same.Working 10 minutes, and then freeze.
Bootloader is 3.10.
by Trackboy
Sun Jul 06, 2014 9:50 pm
Forum: RouterBOARD hardware
Topic: RB 411GL problem
Replies: 3
Views: 1387

RB 411GL problem

Hello everybody ! I have got a 411GL, freeze all the time. Working couple minutes, and then stop.
I tried different power supplies, the result was the same. I am using 6.15.
i do not know, this is a software or a hardware problem.

Anybody met this problem ?
by Trackboy
Sun Jun 29, 2014 9:13 pm
Forum: General
Topic: RB 411 GL freeze certain times
Replies: 2
Views: 1335

Re: RB 411 GL freeze certain times

I tried with 24 V 0.38 A, at the moment working for 10 hours with 12V 0.5A, but very interested this kind of problem because before 6.15 everything worked fine.The problem is the same, i tried with 3 different 12 and 24 V power supply.

Nobody met this kind of problem ?
by Trackboy
Sun Jun 29, 2014 1:43 pm
Forum: General
Topic: RB 411 GL freeze certain times
Replies: 2
Views: 1335

RB 411 GL freeze certain times

I have got a problem with 6.15. 411GL with R52Hn and R52n-M every 30 minutes or 1 hour just suddenly stopped.
Then i plugged off and back, working 30 minutes or maximum 1 hour.
I have got another 411GL and 6.15 running smoothly.
by Trackboy
Thu Jun 26, 2014 10:23 pm
Forum: Wireless Networking
Topic: Please Help For 30 megabyte in distance 8 kilometer
Replies: 6
Views: 2152

Re: Please Help For 30 megabyte in distance 8 kilometer

30 megabyte or 30 Mbit/sec ?
by Trackboy
Wed Jun 25, 2014 10:03 pm
Forum: Wireless Networking
Topic: 200+ megabit over 55 kilometers
Replies: 9
Views: 3630

Re: 200+ megabit over 55 kilometers

I have never tried
by Trackboy
Sat Jun 21, 2014 9:39 am
Forum: Wireless Networking
Topic: 200+ megabit over 55 kilometers
Replies: 9
Views: 3630

Re: 200+ megabit over 55 kilometers

According to calculator: 55 km, -62 dBm

Equipment: DBii F50N-Pro Mini PCI, Rocket Dish 32-34 dBi
I read about here a 35 km link with RB 800 and the result was 100 Mbit/sec

Of course we are talking about TCP speed.
by Trackboy
Mon Jun 16, 2014 10:51 pm
Forum: Wireless Networking
Topic: received disassoc sending station leaving (8)
Replies: 117
Views: 110343

Re: received disassoc sending station leaving (8)

I am using AES, some clients working well, but some disconnected every 10 minutes
This is a very annoying problem, i am trying to guess what could be the problem, but i have no idea.
by Trackboy
Sun Jun 15, 2014 10:00 pm
Forum: Wireless Networking
Topic: Extend home wifi network with Mikrotik RB951Ui-2HnD
Replies: 5
Views: 3561

Re: Extend home wifi network with Mikrotik RB951Ui-2HnD

Hello, if you want i can help you. First thing is you need to set the WAN (Eth1) connection to your ISP. It could be usually PPPoe or DHCP connection. Second one is wlan configuration.DHCP-Server, security settings. If you do not know not at all the Mikrotik, write me a message, and help for you for...
by Trackboy
Fri Jun 13, 2014 9:51 pm
Forum: Wireless Networking
Topic: received disassoc sending station leaving (8)
Replies: 117
Views: 110343

Re: received disassoc sending station leaving (8)

Mobile phones, and laptops, the log contain some error messages: -disconnected, group key exchange timeout -disconnected, unicast key exhange timeout -disconnected, received disassoc: sending station leaving (8) (3) -wlanX: data from unknow device XX:XX:XX:XX:XX:XX, sent deauth Save battery mode is ...
by Trackboy
Fri Jun 13, 2014 12:39 pm
Forum: Wireless Networking
Topic: received disassoc sending station leaving (8)
Replies: 117
Views: 110343

Re: received disassoc sending station leaving (8)

My problem is the same, the log is full of with these and similar messages.I changed frequency, but did not help.I am trying to figure out, what the problem is.
by Trackboy
Thu Jun 12, 2014 7:53 pm
Forum: Wireless Networking
Topic: receive level
Replies: 4
Views: 1895

Re: receive level

I think -60-70 dBm is the perfect signal strenght, and the SNR is 30-40 dB.
by Trackboy
Tue Jun 10, 2014 8:10 pm
Forum: Wireless Networking
Topic: RB 951G and 411GL performance in lab environment
Replies: 7
Views: 2650

Re: RB 951G and 411GL performance in lab environment

I tried with new 6.14 and with new wireless package, the speed is the same.
But i think this is perfect.
by Trackboy
Sun Jun 08, 2014 11:34 am
Forum: Wireless Networking
Topic: RB 951G and 411GL performance in lab environment
Replies: 7
Views: 2650

Re: RB 951G and 411GL performance in lab environment

What is wireless-fp package ?
by Trackboy
Fri Jun 06, 2014 9:54 pm
Forum: Wireless Networking
Topic: RB 951G and 411GL performance in lab environment
Replies: 7
Views: 2650

RB 951G and 411GL performance in lab environment

Here is my test result, i achieved this performance in my room, but i think this is very nice performance:
There is a wireless connection between the devices, and running OSPF between them.
Proftp running on my Ubuntu 12.04 server, so this speed is 158 Mbit/sec TCP speed, and CPU load is around 60%.
by Trackboy
Thu May 08, 2014 9:20 am
Forum: Wireless Networking
Topic: Need Help with RB912 link
Replies: 7
Views: 2863

Re: Need Help with RB912 link

I know very well, i am just curious, the target is 130 Mbit/sec TCP speed.Of course it is will work only with 40Mhz channel width.
by Trackboy
Wed May 07, 2014 10:03 pm
Forum: Wireless Networking
Topic: Point 2 point connection between 2 sites
Replies: 4
Views: 1441

Re: Point 2 point connection between 2 sites

It is depending on your required bandwith, i have got an 1 km Sxt-Lite5 link in a very noisy environment, signal strenght around is -60dBm, but the speed is very fluctuating, i have never reached stable speed so far with internal Proftp server that is running on Ubuntu 12.04. I am sure in less noise...
by Trackboy
Sun May 04, 2014 11:21 am
Forum: Wireless Networking
Topic: Need Help with RB912 link
Replies: 7
Views: 2863

Re: Need Help with RB912 link

Anyway if i good think, we are talking about 130 Mbit/sec TCP speed.
by Trackboy
Fri Apr 25, 2014 9:41 pm
Forum: Wireless Networking
Topic: Need Help with RB912 link
Replies: 7
Views: 2863

Re: Need Help with RB912 link

Firstly you should try out this setup: AP:bridge Station:station-bridge First with 802.11 N and then with Nv2 as well. You should set the default for the HT MCS.RB 911 is a dual chain radio, so it is capable of 2*2 MIMO. May be you need to play with the MCS for the maximum speed, but not sure. You n...
by Trackboy
Fri Apr 25, 2014 2:44 pm
Forum: Wireless Networking
Topic: Need Help with RB912 link
Replies: 7
Views: 2863

Re: Need Help with RB912 link

Hello, is this antenna dual chain ?
by Trackboy
Sat Apr 19, 2014 8:52 pm
Forum: Wireless Networking
Topic: SXT choice for small wisp
Replies: 11
Views: 4138

Re: SXT choice for small wisp

Yes, this is a cheap device, and working fine, just more than 3 km is too much to me from this device
by Trackboy
Sat Apr 19, 2014 9:43 am
Forum: Wireless Networking
Topic: SXT choice for small wisp
Replies: 11
Views: 4138

Re: SXT choice for small wisp

3-8 km not too much for SXT ?

I have got a 1km link with them, the signal strenght is around -60-65 dBm.

According to calculator 2-3 km is the maximum with SXT, but i think for this distance perfect.
by Trackboy
Fri Apr 18, 2014 10:12 am
Forum: Wireless Networking
Topic: 18km PtP wireless link issue
Replies: 21
Views: 7447

Re: 18km PtP wireless link issue

And what's like the signal strenght,CCQ now ? and the speed ? I am just curious
by Trackboy
Thu Apr 17, 2014 10:04 am
Forum: Wireless Networking
Topic: Test Link result
Replies: 2
Views: 1275

Re: Test Link result

The RX sensitivity should be the same on both side, if you want to build a backbone network, you should use the same devices on both side, this is my advice
by Trackboy
Sun Apr 13, 2014 10:16 am
Forum: Wireless Networking
Topic: Wireless PPPoE server
Replies: 2
Views: 1344

Re: Wireless PPPoE server

Yes i want this setup: PPPoE server on AP: 192.168.2.0/24 ( address of wlan is : 192.168.2.1/24 ) Layer 2 There is also another IP range for administration purpose: 10.10.70.0/24 Layer 3 ( AP :10.10.70.1/24, SXT Lite 5: 10.10.70.2/24 ) I am not an expert, i am just trying to delvelope my knowledge. ...
by Trackboy
Fri Apr 11, 2014 5:30 pm
Forum: Wireless Networking
Topic: Wireless PPPoE server
Replies: 2
Views: 1344

Wireless PPPoE server

Hello everybody! I would like to ask a little bit help : I have got an AP, on this device there is a pppoe-server, these are the settings: IP address of AP is 192.168.2.1/24, the ip pool is: 192.168.2.2-192.168.2.100 I want only pppoe-tunnel between the AP and the Customer pc, laptop or router. At t...
by Trackboy
Thu Apr 03, 2014 9:31 am
Forum: Wireless Networking
Topic: 10 mile UBTik link issues
Replies: 12
Views: 2537

Re: 10 mile UBTik link issues

It turns out the main issue is how we were setting up the bandwidth test. When we switched to a direct btest from rb912 to rb912 and we got the bandwidth throughput we were expecting. Right now it's pulling 110 mbs both ways. That will be good enough for replacing our main link for now. I did add t...
by Trackboy
Thu Apr 03, 2014 9:22 am
Forum: General
Topic: Strange problem with 6.11
Replies: 3
Views: 1441

Re: Strange problem with 6.11

I found an another thread, in the IP services i allowed the 0.0.0.0/0 to winbox, at the moment working.
Anyway the eth1 at the moment is my " WAN " port: 192.168.1.195/24, this RB 751 connecting to an RB 2011
by Trackboy
Wed Apr 02, 2014 6:35 pm
Forum: General
Topic: Strange problem with 6.11
Replies: 3
Views: 1441

Strange problem with 6.11

Hello everybody! I met a very strange problem. I opened a port to my laptop. This port is 40000 If i enable this port forwarding, i can not login via IP only with MAC, and the Internet connection disconnect as well. Chain=dstnat Protocol=TCP Action=dst-nat To ports=40000 To addresses=192.168.100.4 (...
by Trackboy
Wed Apr 02, 2014 10:00 am
Forum: Wireless Networking
Topic: 10 mile UBTik link issues
Replies: 12
Views: 2537

Re: 10 mile UBTik link issues

The fresnel zone is not 100% clean, i know it should be around -50 dBm, but the link working very well, and i think 50 Mbit/sec tcp speed a nice performance from the 411 on 2,6 km, maybe this is the limit of this device. However, are you talking about Jirous antennas ? I heard about them, good quali...
by Trackboy
Tue Apr 01, 2014 9:45 pm
Forum: Wireless Networking
Topic: 10 mile UBTik link issues
Replies: 12
Views: 2537

Re: 10 mile UBTik link issues

This is a powerful routerboard, i have got RB 411GL with R52Hn this is similar like that your device, i have tested with ftp server, and in a test environment on 2,4 Ghz i have achieved sometimes 150-170 Mbit/sec tcp speed in one direction, but 17 km is obvious different situation. Anyway i am using...
by Trackboy
Mon Mar 31, 2014 10:40 am
Forum: Wireless Networking
Topic: BaseBox5 PtP 25km wireless link
Replies: 2
Views: 1930

Re: BaseBox5 PtP 25km wireless link

Hello, i asked couple weeks ago how could i use the SXT's Leds in the following situations, but nobody answered to me.But it would be very useful like on the Ubiquiti devices. I think you should try out this setting: Ap side:mode:bridge Client side: station-bridge First with 802.11 N, and after with...
by Trackboy
Mon Mar 24, 2014 10:53 pm
Forum: Wireless Networking
Topic: 18km PtP wireless link issue
Replies: 21
Views: 7447

Re: 18km PtP wireless link issue

Anyway, i have got an 1km Sxt link, between the 2 chains there is 5 dBm different sometimes. Chain0:-65dBm Chain1:-60 dBm But depend on the frequency, i think the chains are ok, and the pigtail as well. There is a local WISP, and this area is very noisy, when i scan on the Sxt at both sides "se...
by Trackboy
Mon Mar 24, 2014 12:46 pm
Forum: Wireless Networking
Topic: 18km PtP wireless link issue
Replies: 21
Views: 7447

Re: 18km PtP wireless link issue

I am not an expert, between the 2 chains there is -5dBm difference, maybe need to align a little bit better, but this is my opinion, this is my recommended scenario for you:

A point: bridge
B point: station-bridge

Firstly: 802.11 N, and then you should try out with NV2 as well.
by Trackboy
Mon Mar 17, 2014 12:27 pm
Forum: Wireless Networking
Topic: bad signal @ 2km 2xParabolic
Replies: 6
Views: 2103

Re: bad signal @ 2km 2xParabolic

The signal is to match on -41 dB the signal can disturb itselfs. -60 dB is good and normal. Yes, i have got an SXT-Lite5 1 km link, the signal strenght is around -60dBm, but i can not use 802.11 N in this town, because the local WISP using every channel, but for 2-3 km the sxt should be good, if th...
by Trackboy
Thu Mar 13, 2014 9:25 pm
Forum: Wireless Networking
Topic: Slow performance of OSPF/MPLS network
Replies: 7
Views: 4256

Re: Slow performance of OSPF/MPLS network

According to my test the best signal strenght is around -60dBm, but these are far away from this level, and your CCQ is not something good,in normal case it should be around 90-100% in both way
by Trackboy
Tue Mar 11, 2014 10:25 am
Forum: Wireless Networking
Topic: 3km PTP link 100Mbps
Replies: 4
Views: 2323

Re: 3km PTP link 100Mbps

32 dBi definitely too much for 3 km, i think 24 dBi will be enough, for example this: http://en.jirous.com/antenna-5ghz/jrc-24_mimo/ According to calculator if your freshnel zone is 100% clear, you should get around -60 dBm signal strenght with this pair antenna and the R52nM cards I have got RB 411...
by Trackboy
Mon Mar 03, 2014 1:38 pm
Forum: Wireless Networking
Topic: SXT Signal Strength Indicator
Replies: 7
Views: 11148

Re: SXT Signal Strength Indicator

Hello, i have got 2 SXT, i bought for practice, i would like to use for 1 km backbone, can i use the led in this configuration?: For example: 1 led locking at -70dBm 2 led locking at -65dBm 3 led locking at -60dBm 4 led locking at -55dBm The led 5 is if i good think that is show the traffic on the l...
by Trackboy
Thu Feb 20, 2014 10:28 pm
Forum: Forwarding Protocols
Topic: Mikrotik Ospf network with RCP100 Linux router
Replies: 0
Views: 1163

Mikrotik Ospf network with RCP100 Linux router

Hello everybody!I am using Mikrotik with this kind of Linux router on Ubuntu 12.04.Everything working fine, except one thing: RCP100 has an Internet connection, and it does not want to redistribute the default route.I know it is not belong to the Mikrotik, but this kind of router CLI commands almost...
by Trackboy
Sat Feb 01, 2014 9:53 pm
Forum: The User Manager
Topic: RADIUS + DHCP SERVER
Replies: 4
Views: 3146

Re: RADIUS + DHCP SERVER

So nobody knows? Is it should be work or not with Level 4 ?
by Trackboy
Wed Jan 22, 2014 10:06 pm
Forum: Wireless Networking
Topic: Need advice for distance 11KM link P2P/P2MP
Replies: 3
Views: 2323

Re: Need advice for distance 11KM link P2P/P2MP

It's mean the tx-power for mcs-0 is 28 dBm
by Trackboy
Mon Jan 20, 2014 7:26 pm
Forum: The User Manager
Topic: RADIUS + DHCP SERVER
Replies: 4
Views: 3146

Re: RADIUS + DHCP SERVER

Hello, this scenario is almost the same like mine, but my first question is that, is it should work with Level 4 ??? According to Mikrotik wiki the suggested license is Level 6
by Trackboy
Tue Jan 14, 2014 8:31 pm
Forum: Wireless Networking
Topic: Mikrotik Routerboard 751U-2HnD wireless problems
Replies: 13
Views: 9383

Re: Mikrotik Routerboard 751U-2HnD wireless problems

Hello everybody! I tested the wireless connection between my RB751 and Samsung Laptop: On my PC running an Proftpd server under Ubuntu 12.04:connected to 751's eth2 Samsung laptop ( 40 Mhz support 1*1 MIMO 150 Mbit/sec ) connected to the 751's wlan port, i am not using bridge, only static routes. Th...
by Trackboy
Wed Jan 08, 2014 9:34 pm
Forum: Wireless Networking
Topic: Help Me to find the 29 KM link problem..........
Replies: 16
Views: 4090

Re: Help Me to find the 29 KM link problem..........

The signal strenghts are both side -83-85 dBm?The freshnel zone is clear?And what about the latency, packet loss,speed...etc, i am a beginner in the wireless networks, but i think you should need this settings: A point:Bridge Wireless protocol:802.11 B point:Station-Bridge Wireless protocol:802.11 W...
by Trackboy
Sat Jan 04, 2014 9:53 pm
Forum: Forwarding Protocols
Topic: Ospf settings
Replies: 10
Views: 4560

Re: Ospf settings

Anyway, if i have a backbone network with one area, how should i add more routers to the regular area? Between RB 751 and RB 951 are the backbone RB 411 GL connect via wifi to the RB 951:this is the regular area And how should i expand the area?I would like to attach an RB 750 GL to the RB 411 GL et...
by Trackboy
Mon Dec 16, 2013 9:13 am
Forum: Wireless Networking
Topic: 54 Km 5Ghz link
Replies: 21
Views: 7791

Re: 54 Km 5Ghz link

We need 100 Mbit/sec tcp speed in one direction,it is impossible with sxt, that's why need at least 28 dBi dual chain antenna, and powerful routerboard with mini pci, anyway the 28-30 dBi Rocket dish is only 64cm, and the 32-34 dBi is 97,2 cm
by Trackboy
Sun Dec 15, 2013 2:27 pm
Forum: Wireless Networking
Topic: 54 Km 5Ghz link
Replies: 21
Views: 7791

Re: 54 Km 5Ghz link

I am not an expert, but 54 km for Sxt devices is definitely too much, check that link that i put here, that is 46 km link with Ubnt 34 Rocket Dish and Dbii cards and RB 433AH, i know the equipments are very expensive, but we are planning similar links for 22 and 30 km links
by Trackboy
Sat Dec 14, 2013 9:16 pm
Forum: Wireless Networking
Topic: 54 Km 5Ghz link
Replies: 21
Views: 7791

Re: 54 Km 5Ghz link

Yes need to align perfectly, i know, here is another one interesting thread:

http://forum.mikrotik.com/viewtopic.php?f=7&t=60932
by Trackboy
Sat Dec 14, 2013 8:35 pm
Forum: Wireless Networking
Topic: 54 Km 5Ghz link
Replies: 21
Views: 7791

Re: 54 Km 5Ghz link

Nice performance, we are planning to start an WISP, so not impossible to achive the 100 Mbit/sec, anyway i counted with Rocket Dish 32-34 dBi and Dbii cards around -52 dBm signal strenght on 22.43 km, but this is just theory
by Trackboy
Sat Dec 14, 2013 8:11 pm
Forum: Wireless Networking
Topic: 54 Km 5Ghz link
Replies: 21
Views: 7791

Re: 54 Km 5Ghz link

Nice, and what is the tcp speed of this link?
by Trackboy
Sat Dec 14, 2013 7:27 pm
Forum: Wireless Networking
Topic: 54 Km 5Ghz link
Replies: 21
Views: 7791

Re: 54 Km 5Ghz link

The first link is 22,43 km, and i heard about the Dbii F50N-PRO card is very good card, 20 dBm tx-power for 40 Mhz at MCS7 and the receiver sensitivity is -77dBm,but we should achive at least -65 dBm signal strenght with 28-30 dBi dual chain Rocket dish, but i am afraid that it is won't be enough, w...
by Trackboy
Sat Dec 14, 2013 6:04 pm
Forum: Wireless Networking
Topic: 54 Km 5Ghz link
Replies: 21
Views: 7791

Re: 54 Km 5Ghz link

Hello everybody, 54 km with Sxt, it is definitely impossible to me, anyway i tried to ask in other thread some similar long range links: 22,43 and 30 km but we would like to get 100 Mbit/sec tcp speed in one direction.I have got RB 411 GL it is a powerful device with 680 Mhz CPU and 64 MB Ram, and i...
by Trackboy
Tue Dec 03, 2013 8:30 pm
Forum: Wireless Networking
Topic: TX-power settings problem
Replies: 16
Views: 15893

Re: TX-power settings problem

But it is can damage the card if i good remember, but it is working very well,the signal strenght is about -60dBm,thank you for your help
by Trackboy
Tue Dec 03, 2013 7:47 pm
Forum: Wireless Networking
Topic: TX-power settings problem
Replies: 16
Views: 15893

TX-power settings problem

Hello everybody!In my RB 951 i can not set to the "card-rates" option.This error has appeared:"Could not change Interface wlan1,not supported tx-power mode. I am using ROS 6.7. This device has a strong Wifi, and i need to set the Tx-power about 5 dBm
by Trackboy
Mon Dec 02, 2013 12:56 pm
Forum: Wireless Networking
Topic: I want the best settings a distance of 30 km p2p
Replies: 15
Views: 7970

Re: I want the best settings a distance of 30 km p2p

I read here on this forum 70 Mbit/sec TCP speed with 30 dBi Grid antennas on 11km, 31 km is definitely too much,that's why asked the plan is achiveve the 80 Mbit/sec?Maybe with dual chain antenna and properly CPU performance it is possible.
by Trackboy
Sat Nov 30, 2013 10:43 pm
Forum: Forwarding Protocols
Topic: Ospf settings
Replies: 10
Views: 4560

Re: Ospf settings

I can not draw a picture,but here is the scenario: RB 751--------------RB951 they are the OSPF backbone. RB 751 ether1 connected to the ISP:192.168.1.195/24 and the dns is:192.168.1.1 At the moment there is not any area that connected to the backbone. Anyway i took your advice:at the moment i need t...
by Trackboy
Sat Nov 30, 2013 9:29 pm
Forum: Forwarding Protocols
Topic: Ospf settings
Replies: 10
Views: 4560

Re: Ospf settings

Hello,so i try out without areas, at the moment the backbone network is:10.10.10.0/24 RB 751:10.10.10.1/24=Ether3, and there is dhcp-client on Ether1 interface=192.168.1.195/24, dns-server is:192.168.1.1 RB 951:10.10.10.2/24=Ether1 On RB 751 enabled: redistribute-connected routes=as-type 1 and redis...
by Trackboy
Sat Nov 30, 2013 10:07 am
Forum: Wireless Networking
Topic: I want the best settings a distance of 30 km p2p
Replies: 15
Views: 7970

Re: I want the best settings a distance of 30 km p2p

If this is an Point-Point backbone network,why are you using wds?I think you should try out this setup:

A point:mode:bridge
B point:mode:station-bridge

And maybe you should try out with Nv2 as well.

And what's like the line of sight,and the freshnel zone is clear? Because 31 kms is very long range.
by Trackboy
Sat Nov 30, 2013 10:03 am
Forum: Forwarding Protocols
Topic: Ospf settings
Replies: 10
Views: 4560

Re: Ospf settings

So nobody knows why need to NAT the backbone and the area networks?Why not enough just the connected networks?
by Trackboy
Sun Nov 24, 2013 2:19 pm
Forum: Wireless Networking
Topic: I want the best settings a distance of 30 km p2p
Replies: 15
Views: 7970

Re: I want the best settings a distance of 30 km p2p

may i have a question? 80 Mbit/sec or 80 MB/sec? I am very beginner in the networks, but this is interesting for me My friend and me would like to start an wireless ISP, and the distance almost the same in our case as well. The distance is 22,43 km, and we are planning 100/50 Mbit/sec maximum TCP tr...
by Trackboy
Wed Nov 20, 2013 5:00 pm
Forum: Forwarding Protocols
Topic: Ospf settings
Replies: 10
Views: 4560

Re: Ospf settings

Yes,the default routes are correct,and my next question is that how should i set the NAT correctly? The internet is working,i can connect from the connected networks for example,with my LG phone I need to redsitribute the default route on my 751,because this is working now as AS router. And all rout...
by Trackboy
Wed Nov 20, 2013 4:27 pm
Forum: Forwarding Protocols
Topic: Ospf settings
Replies: 10
Views: 4560

Re: Ospf settings

The default route redistribute has enabled on all devices,but i still can not connect to the internet
by Trackboy
Wed Nov 20, 2013 1:57 pm
Forum: Forwarding Protocols
Topic: Ospf settings
Replies: 10
Views: 4560

Ospf settings

Hello everybody!I can get an 192.168.1.195/24 IP address from the ISP,this is an inside address.DNS server:192.168.1.1,Gateway:192.168.1.1 This is appear in my RB 751U on the Ether1,this is an dhcp-client.On this port i can get internet connection. On the Ether3 port running the ospf backbone networ...
by Trackboy
Fri Nov 01, 2013 8:03 pm
Forum: Forwarding Protocols
Topic: Dynamic routing learning
Replies: 4
Views: 2059

Re: Dynamic routing learning

At the moment the RB 411U and RB411GL between there is 1 km wireless link,and via this link my friend give me Internet connection,and if i good think this would be an OSPF backbone area,and my home's LAN is for example area1,1 more question:is there more backbone networks in one AS system?
by Trackboy
Fri Nov 01, 2013 10:02 am
Forum: Forwarding Protocols
Topic: Dynamic routing learning
Replies: 4
Views: 2059

Re: Dynamic routing learning

Yes, i know,but my friend RB2011 and the 411U and 411GL are not running the ospf,i am not an expert,i am learning now,how is working in the real life
by Trackboy
Thu Oct 31, 2013 4:39 pm
Forum: Forwarding Protocols
Topic: Dynamic routing learning
Replies: 4
Views: 2059

Dynamic routing learning

Hello everybody!I am now learning about the dynamic routing.I have got some Mikrotik Routerboards for learning. http://wiki.mikrotik.com/wiki/File:Image6006.gif This multi area example working,reachable the 2 areas,reachable the routers,so working everything very well. In this example anyway my R1 i...
by Trackboy
Sun Oct 13, 2013 9:45 am
Forum: Wireless Networking
Topic: 35KM PTP Link
Replies: 12
Views: 5230

Re: 35KM PTP Link

I have 200mbps real speed link on 35km
i used 36dbi 5Ghz antenna on each side Dual pol MIMO+R52Hnd+RB800
This result is TCP speed?
by Trackboy
Sun Oct 13, 2013 9:44 am
Forum: Wireless Networking
Topic: 35KM PTP Link
Replies: 12
Views: 5230

Re: 35KM PTP Link

So what do you think,if the freshnel zone is clear what is the expectable TCP speed with these equipments on 32 km?
by Trackboy
Sat Oct 05, 2013 7:04 pm
Forum: Wireless Networking
Topic: 35KM PTP Link
Replies: 12
Views: 5230

Re: 35KM PTP Link

The towers are 50 meters
by Trackboy
Fri Sep 27, 2013 6:39 pm
Forum: Wireless Networking
Topic: 35KM PTP Link
Replies: 12
Views: 5230

Re: 35KM PTP Link

Hello everybody!We are planning an almost 32 km link,and we need some opinion about equipments,we need 50/25 Mbit/sec TCP speed,we are thinking an Rocket Dish 34 dBi,RB800,Dbii 5 Ghz miniPCI,the LOS is enough good
by Trackboy
Wed Sep 04, 2013 1:48 pm
Forum: Wireless Networking
Topic: RouterBOARD SXT:: what max distance with max thr/put?
Replies: 20
Views: 23616

Re: RouterBOARD SXT:: what max distance with max thr/put?

Hello,i am interesting about speedtest on 5 km distance,i mean between 2 sxt,i think the 5 km is the maximum distance in normal case if the freshnel is perfect and not too noisy the area, thank you very much for your help,but 50 Mbit/sec TCP speed not bad from this device if it is possible to achiev...
by Trackboy
Thu Aug 29, 2013 12:26 pm
Forum: Wireless Networking
Topic: RouterBOARD SXT:: what max distance with max thr/put?
Replies: 20
Views: 23616

Re: RouterBOARD SXT:: what max distance with max thr/put?

Yes i know,because i think an sxt enough for 1 km,and in normal conditions, it should be work properly,we planning to buy,because the price is good,600 Mhz,64 MB Ram,but it has got just 100 Mbit/sec Ethernet port
by Trackboy
Wed Aug 28, 2013 1:00 pm
Forum: Wireless Networking
Topic: RouterBOARD SXT:: what max distance with max thr/put?
Replies: 20
Views: 23616

Re: RouterBOARD SXT:: what max distance with max thr/put?

Hello everybody!I am planning to buy a new Sxt Lite5,the distance is 1 km,we would like to connect 2 LAN networks,and testing,learning some things,one of my friend said to me,he is working for a WISP at the moment,and they tested this new sxt,and the results was terrible on 200 meters,the signal str...
by Trackboy
Sun Aug 25, 2013 12:36 pm
Forum: Wireless Networking
Topic: RB751U-2HnD cannot run 300mb
Replies: 7
Views: 2665

Re: RB751U-2HnD cannot run 300mb

I could achieved,only 40 Mbit/sec TCP speed,i tried with FTP,but without Nv2,my Samsung laptop support 150 Mbit/sec with 40 Mhz channel bandwith
by Trackboy
Fri Aug 23, 2013 7:53 pm
Forum: Wireless Networking
Topic: RB751U-2HnD cannot run 300mb
Replies: 7
Views: 2665

Re: RB751U-2HnD cannot run 300mb

I am curious,this device capable of 100 Mbit/sec TCP speed,but it has got only 400 Mhz CPU
by Trackboy
Sun Mar 03, 2013 9:08 am
Forum: Wireless Networking
Topic: NV2 problems
Replies: 7
Views: 2109

Re: NV2 problems

I need ap bridge mode
by Trackboy
Sat Mar 02, 2013 7:20 pm
Forum: Wireless Networking
Topic: NV2 problems
Replies: 7
Views: 2109

Re: NV2 problems

I have got same problem:RB 411 GL with R52nM connected to RB 751,this is my test network at home,RouterOS version on both device 5.24. So the Client is connected,but no transmit,it is interesting because,i did not have problem with the Nv2 in older version If is set the protocol unspecified,everythi...
by Trackboy
Sun Feb 24, 2013 8:55 am
Forum: Wireless Networking
Topic: Mikrotik R52nM TX power isuue
Replies: 2
Views: 1282

Re: Mikrotik R52nM TX power isuue

I did not know this,yes at the moment i use only one chain with grid antennas,thank you for your reply
by Trackboy
Sat Feb 23, 2013 8:08 pm
Forum: Wireless Networking
Topic: Mikrotik R52nM TX power isuue
Replies: 2
Views: 1282

Mikrotik R52nM TX power isuue

Hello everybody,i noticed one thing about this card:i am using this card on 5 Ghz backbone link with Nv2,with default Tx power,but the Tx power value is not same than in the card of pdf,Mikrotik says that: 802.11n 5 Ghz: MCS7 40 Mhz:13 dBm Tx power But in the winbox show me only 10 dBm Tx power for ...
by Trackboy
Thu Feb 14, 2013 9:19 pm
Forum: Wireless Networking
Topic: 5 Ghz P2P Link expected bandwith?
Replies: 21
Views: 5274

Re: 5 Ghz P2P Link expected bandwith?

Ok,we found the problem,411 GL Ethernet port is not working properly,i have to send back to the store,where i purchased,411 U RB capable of 62/Mbit sec TCP speed with this grid antennas
by Trackboy
Sun Feb 03, 2013 7:40 pm
Forum: Wireless Networking
Topic: 5 Ghz P2P Link expected bandwith?
Replies: 21
Views: 5274

Re: 5 Ghz P2P Link expected bandwith?

Ok,seems to be the 80 meters utp cable on ap side between RB2011 and RB 411 GL,not ok,TCP speed only 13-14 Mbit sec,we have to change

So the 411 GL capable of 100 Mbit/sec TCP speed?(50/50 Mbit/sec?)

But with the new Mikrotik mini PCI card the experience is not something good?
by Trackboy
Sat Feb 02, 2013 9:21 pm
Forum: Wireless Networking
Topic: 5 Ghz P2P Link expected bandwith?
Replies: 21
Views: 5274

Re: 5 Ghz P2P Link expected bandwith?

Ok,i will test nstreme with UDP,with 20 TCP count the speedtest result is same
by Trackboy
Sat Feb 02, 2013 8:21 pm
Forum: Wireless Networking
Topic: 5 Ghz P2P Link expected bandwith?
Replies: 21
Views: 5274

Re: 5 Ghz P2P Link expected bandwith?

Ok,here is the picture,the result is same with 20 TCP count too
by Trackboy
Sat Feb 02, 2013 7:55 pm
Forum: Wireless Networking
Topic: 5 Ghz P2P Link expected bandwith?
Replies: 21
Views: 5274

Re: 5 Ghz P2P Link expected bandwith?

The place inline is does not appear for me
by Trackboy
Sat Feb 02, 2013 5:48 pm
Forum: Wireless Networking
Topic: 5 Ghz P2P Link expected bandwith?
Replies: 21
Views: 5274

Re: 5 Ghz P2P Link expected bandwith?

How can i insert here picture?Sorry for my bad english
by Trackboy
Sat Feb 02, 2013 9:41 am
Forum: Wireless Networking
Topic: 5 Ghz P2P Link expected bandwith?
Replies: 21
Views: 5274

Re: 5 Ghz P2P Link expected bandwith?

Thank you very much for your answers,we are beginner in Mikrotik devices,but this link is properly for learning.

At this moment we don't want to buy another devices,maybe later.We assume the Mikrotik's Bandwith measure is not correct
by Trackboy
Fri Feb 01, 2013 9:00 pm
Forum: Wireless Networking
Topic: 5 Ghz P2P Link expected bandwith?
Replies: 21
Views: 5274

Re: 5 Ghz P2P Link expected bandwith?

So,this is sure interference problem,we are planning later 20km link with these devices,what do you think?What is the expectable bandwith from this kit?
by Trackboy
Fri Feb 01, 2013 8:07 pm
Forum: Wireless Networking
Topic: 5 Ghz P2P Link expected bandwith?
Replies: 21
Views: 5274

5 Ghz P2P Link expected bandwith?

Hello everybody!We are new in Mikrotik devices,we have got a 1 km backhaul link: Point A:24 dBi 5 Ghz Grid,RB 411 GL with R52nM working in AP Bridge with Nv2 Point B:27 dBi 5 Ghz Grid,RB 411 GL with R52nM working in Station Bridge CCQ:80-100%,TX/RX Signal Strenght:55-55 dBm,Signal to Noise:60 dB Our...
by Trackboy
Sat Jan 26, 2013 9:45 am
Forum: General
Topic: How is working the "remove" command?
Replies: 3
Views: 9952

Re: How is working the "remove" command?

Thank you very much for your answers,these commands working:)
by Trackboy
Fri Jan 25, 2013 7:40 pm
Forum: General
Topic: How is working the "remove" command?
Replies: 3
Views: 9952

How is working the "remove" command?

Hello everybody,i am new in Mikrotik devices and i am now learning the CLI configuration. For example i add a new ip address:ip address add address=10.10.10.1/24 interface=ether5 And if i want to remove this ip address what is the correct command? ip address remove numbers=what is it mean "numb...
by Trackboy
Sat Jan 05, 2013 2:02 pm
Forum: Wireless Networking
Topic: rb751-devices and getting good WiFi-Performance
Replies: 10
Views: 3697

Re: rb751-devices and getting good WiFi-Performance

Actually,in this month want to buy a Samsung Galaxy P6200 tablet,and i would like to know,if somebody has got experience using with 751-U2HnD,for any answer very appreciate
by Trackboy
Sun Dec 30, 2012 9:45 am
Forum: Wireless Networking
Topic: rb751-devices and getting good WiFi-Performance
Replies: 10
Views: 3697

Re: rb751-devices and getting good WiFi-Performance

"Mostly to Apple-products (broadcom client cards)" I met this problem,i had got a Lenovo G580 laptop,and it has got Broadcom WLAN.In the first 5 minutes working fine,but after not worked .I used Ubuntu 12.04.Actually i have got RB 411 GL with R52n-M and RB 411 U with R52Hn and i tried conn...
by Trackboy
Thu Dec 13, 2012 4:43 am
Forum: Wireless Networking
Topic: Mikrotik Routerboard 751U-2HnD wireless problems
Replies: 13
Views: 9383

Re: Mikrotik Routerboard 751U-2HnD wireless problems

Seems to be had a problem with the laptop wifi driver,i solved the problem
by Trackboy
Tue Dec 11, 2012 4:46 pm
Forum: Wireless Networking
Topic: Mikrotik Routerboard 751U-2HnD wireless problems
Replies: 13
Views: 9383

Re: Mikrotik Routerboard 751U-2HnD wireless problems

I tried another asus laptop,and with that working fine,maybe something problem with Lenovo wifi?
by Trackboy
Tue Dec 11, 2012 4:52 am
Forum: Wireless Networking
Topic: Mikrotik Routerboard 751U-2HnD wireless problems
Replies: 13
Views: 9383

Re: Mikrotik Routerboard 751U-2HnD wireless problems

Ok the result is with this setting,10dbm tx power:

Registrtation table:-39-50 dbm,CCQ:6%,Signal to noise:50-60 dB,that is happening now,i know this is bad result,but i tried reduced the tx power,but the results are same
by Trackboy
Mon Dec 10, 2012 9:58 pm
Forum: Wireless Networking
Topic: Mikrotik Routerboard 751U-2HnD wireless problems
Replies: 13
Views: 9383

Mikrotik Routerboard 751U-2HnD wireless problems

Hello everybody!I have got an RB 751 with 5.20,the wireless is unuseable. I am using 802.11 N with 40 Mhz channel bandwith,and i want to connect my Lenovo G 580,my laptop get network configuration,but the Internet not working,only very slow.On my laptop running Ubuntu 12.04 Linux.I tried adjust the ...
by Trackboy
Sun Nov 25, 2012 8:26 pm
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

Yes,i am thinking of that something not ok in the pc and the laptop,but i don't know how is should solve this problem
by Trackboy
Sat Nov 24, 2012 9:08 pm
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

This is my setup now: RB 750 GL: ip address add address=172.16.1.1/30 interface=ether2 ip address add address=192.168.5.1/24 interface=ether3 ip route add dst-address=192.168.10.0/24 gateway=172.16.1.2 RB 751U-2HnD: ip address add address=172.16.1.2/30 interface=ether1 ip address add address=192.168...
by Trackboy
Sat Nov 24, 2012 5:12 pm
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

When i ping from the laptop RB 750 GL,working fine,but i can not ping the PC via 750 GL,and the message is "timeout"

Laptop:Win 7
PC:Ubuntu 12.04 LTS
by Trackboy
Sat Nov 24, 2012 4:37 am
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

There are some interesting things:Ib both RB seems to be everything ok,the networks reachable. From the laptop i can reach both RB,i can ping them,i can enter via winbox or webfig. But on the PC there is another situation,i can ping 10.10.10.1,that is the gateway for the PC. But still i can not comm...
by Trackboy
Fri Nov 23, 2012 8:16 pm
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

Yes,my RB 750 GL get 192.168.1.120 from my friend router via 1 km Wifi connection,but in this case i don't need internet connection,only the static routing,but i am beginner in routing,and i don't know,how is should set these things as you said
by Trackboy
Fri Nov 23, 2012 6:03 pm
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

And how should i set this?
by Trackboy
Thu Nov 22, 2012 8:33 pm
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

[trackboy@Laci Mikrotik 751U-2HnD] > 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 GATEWAY DISTANCE 0 A S 0.0.0.0/0 172.16.1.1 1 1 A S 10.10.10.0/24 172.16...
by Trackboy
Thu Nov 22, 2012 8:32 pm
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

[trackboy@Laci Mikrotik 750 GL] > 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 GATEWAY DISTANCE 0 ADS 0.0.0.0/0 192.168.1.1 0 1 ADC 10.10.10.0/24 10.10.10...
by Trackboy
Thu Nov 22, 2012 8:21 pm
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

How can i post picture?
by Trackboy
Thu Nov 22, 2012 8:14 pm
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

Yes,i can,working fine that connection too
by Trackboy
Thu Nov 22, 2012 8:11 pm
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

Still i can not ping the PC:10.10.10.2/24
by Trackboy
Thu Nov 22, 2012 7:42 pm
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Re: Static routing

My setup is the following: RB 750 GL:172.16.1.1/30=ether2 RB 751U-2HnD:172.16.1.2/30=ether1 RB 750 GL:10.10.10.1/24=ether3:this is the Lan1 with PC:10.10.10.2/24 RB 751U-2HnD:192.168.5.1/24=ether2 this is the Lan2 with Laptop:192.168.5.2/24 In this case i don't need Internet,i just want to learning ...
by Trackboy
Thu Nov 22, 2012 4:51 am
Forum: Beginner Basics
Topic: Static routing
Replies: 25
Views: 13213

Static routing

Hello everybody! I have got a little bit problem: I am now learning the routing, started with static routing. I tried this:http://wiki.mikrotik.com/wiki/Manual:Simple_Static_Routing The problem is the following:in Lan1:PC, Lan2: Laptop can not communicate. The 2 Routerboard (172.16.1.1-172.16.1.2) i...
by Trackboy
Thu Nov 01, 2012 9:13 pm
Forum: Forwarding Protocols
Topic: OSPF with DHCP
Replies: 6
Views: 3978

Re: OSPF with DHCP

Ok,i understand,but can you help set in our network ospf?
by Trackboy
Thu Nov 01, 2012 7:30 pm
Forum: Forwarding Protocols
Topic: OSPF with DHCP
Replies: 6
Views: 3978

Re: OSPF with DHCP

Thank you very much for your information,i am a beginner in networking,and my network keep expanding,and that's why i want to learning dynamic routing instead of static routing,and also i don't want to use bridge only in the client devices. Another question:my devices RB 750 GL,751,2011 are good for...
by Trackboy
Thu Nov 01, 2012 4:43 pm
Forum: Forwarding Protocols
Topic: OSPF with DHCP
Replies: 6
Views: 3978

OSPF with DHCP

Hello everybody!I have got a network with 20 PC.I want to use the OSPF with DHCP. This is my network: RB 750 GL and RB 751 between there is a backbone. And for the RB 751 connecting an outside 411U AP And for my ap connecting the clients with 411 devices. In the clients there is a bridge (wlan and e...
by Trackboy
Wed Oct 17, 2012 7:28 pm
Forum: Wireless Networking
Topic: Mikrotik wireless problem
Replies: 14
Views: 3624

Re: Mikrotik wireless problem

Ok,everything working fine,i connected to right chain,and i can use 150 Mbit/sec 1*1 MIMO N
by Trackboy
Wed Oct 17, 2012 6:29 pm
Forum: Wireless Networking
Topic: Mikrotik wireless problem
Replies: 14
Views: 3624

Re: Mikrotik wireless problem

How can i determine out that card is damaged? Sorry for my bad english
by Trackboy
Tue Oct 16, 2012 5:46 pm
Forum: Wireless Networking
Topic: Mikrotik wireless problem
Replies: 14
Views: 3624

Re: Mikrotik wireless problem

Yes i know,without antenna using can damage the card,but i was not using without antenna,i try connecting to RB 751,it has got a very strong 1 W transmit power,but i setup 17 dBm,it is should enough in the room,the distance is some meters,but the ccq is 10%,TX-RX ratre is:1/1 Mbit/sec But can i use ...
by Trackboy
Mon Oct 15, 2012 7:38 pm
Forum: Wireless Networking
Topic: Mikrotik wireless problem
Replies: 14
Views: 3624

Re: Mikrotik wireless problem

i tried in both chain,but the signal is very low and a ccq too
by Trackboy
Mon Oct 15, 2012 5:34 pm
Forum: Wireless Networking
Topic: Mikrotik wireless problem
Replies: 14
Views: 3624

Re: Mikrotik wireless problem

Somebody can help me?
by Trackboy
Mon Oct 15, 2012 6:05 am
Forum: Wireless Networking
Topic: Mikrotik wireless problem
Replies: 14
Views: 3624

Re: Mikrotik wireless problem

But not problem if at the moment i am using only one chain?because now i don't have 2*2 MIMO antenna,i hope not broken my 411u and 751 router because still very bad the signal and the ccq
by Trackboy
Sun Oct 14, 2012 9:29 pm
Forum: Wireless Networking
Topic: Mikrotik wireless problem
Replies: 14
Views: 3624

Re: Mikrotik wireless problem

Yes,of course i connected a little antenna in to one mmcx,in this case i can use 1*1 MIMO 150 mbit/sec?
by Trackboy
Sun Oct 14, 2012 7:43 pm
Forum: Wireless Networking
Topic: Mikrotik wireless problem
Replies: 14
Views: 3624

Mikrotik wireless problem

Hello everybody!I am a beginner in Mikrotik devices I have got a Mikrotik 751U-2Hnd,750 GL and 411 U with R52 Hn card,i purchased these devices for learning,i would like to develop my network skill The problem is the following: My Mikrotik 751 at the moment is the AP and the 411U client:The problem ...
by Trackboy
Mon Oct 01, 2012 11:30 am
Forum: RouterBOARD hardware
Topic: Mikrotik plastic ethernet ports
Replies: 19
Views: 3657

Re: Mikrotik plastic ethernet ports

Thank you for your information
by Trackboy
Mon Oct 01, 2012 8:23 am
Forum: RouterBOARD hardware
Topic: Mikrotik plastic ethernet ports
Replies: 19
Views: 3657

Re: Mikrotik plastic ethernet ports

I can see this include a 802.11 b,g,n wifi,this is 1*1 MIMO 150 Mbit/sec ?and the setup is same as for example on Routerboard AP?
by Trackboy
Sun Sep 30, 2012 2:21 pm
Forum: RouterBOARD hardware
Topic: Mikrotik plastic ethernet ports
Replies: 19
Views: 3657

Re: Mikrotik plastic ethernet ports

Yes,i can see this is a cheap router and enough for learning basic network configuration,i have got already an Routerboard 750 GL,so this would be a good pairing
by Trackboy
Sun Sep 30, 2012 11:03 am
Forum: RouterBOARD hardware
Topic: Mikrotik plastic ethernet ports
Replies: 19
Views: 3657

Re: Mikrotik plastic ethernet ports

cbrown,you exactly which routerboards recommend me for learning?There are some 7 and 9 new routerboard series with built wireless,and of course very important me the prices
by Trackboy
Sat Sep 29, 2012 5:54 pm
Forum: RouterBOARD hardware
Topic: Mikrotik plastic ethernet ports
Replies: 19
Views: 3657

Re: Mikrotik plastic ethernet ports

Thank you for your information
by Trackboy
Sat Sep 29, 2012 4:39 pm
Forum: RouterBOARD hardware
Topic: Mikrotik plastic ethernet ports
Replies: 19
Views: 3657

Re: Mikrotik plastic ethernet ports

cbrown,i have got a RB 750 GL,but i would like to buy an AP,and a Client,and later a Ptp link,and some more RB, for routing learning,radius manager...etc so i want to develop my network skills,because i am a beginner :(
by Trackboy
Fri Sep 28, 2012 8:24 pm
Forum: RouterBOARD hardware
Topic: Mikrotik plastic ethernet ports
Replies: 19
Views: 3657

Re: Mikrotik plastic ethernet ports

Thank you for your information,i would like to buy at home a little network for learning,but i don't have much money for devices,and that's why i am becareful,sorry for my english
by Trackboy
Fri Sep 28, 2012 5:20 pm
Forum: RouterBOARD hardware
Topic: Mikrotik plastic ethernet ports
Replies: 19
Views: 3657

Mikrotik plastic ethernet ports

Hello everybody!I noticed some Mikrotik Routerboards made with plastic ethernet and not metallic,it is obviously is a cheaper solution,but the quality is same?
by Trackboy
Mon Jul 09, 2012 9:12 am
Forum: Beginner Basics
Topic: Radius server for DHCP
Replies: 7
Views: 1900

Re: Radius server for DHCP

Thank you,for your help
by Trackboy
Sun Jul 08, 2012 7:48 pm
Forum: Beginner Basics
Topic: Radius server for DHCP
Replies: 7
Views: 1900

Re: Radius server for DHCP

Thank you for your help,i downloaded all packages,i have got a RB 750 GL,so if i need for example user manager,only this npk package need to install
by Trackboy
Sun Jul 08, 2012 7:19 pm
Forum: Beginner Basics
Topic: Radius server for DHCP
Replies: 7
Views: 1900

Re: Radius server for DHCP

Sorry,can you give me a link,because i could not found

Thank you
by Trackboy
Sun Jul 08, 2012 6:25 pm
Forum: Beginner Basics
Topic: Radius server for DHCP
Replies: 7
Views: 1900

Radius server for DHCP

Hello everybody!I want to do it a DHCP server that controlled by a Radius

I read about it, need download and install user manager,but where can i found the user manager on Mikrotik homepage?

Thank you for your answers
by Trackboy
Sun Jun 10, 2012 10:54 am
Forum: Beginner Basics
Topic: Telnet is not working
Replies: 7
Views: 2725

Re: Telnet is not working

Thank you for your reply,i everyday learning something here in this forum
by Trackboy
Sat Jun 09, 2012 10:43 pm
Forum: Beginner Basics
Topic: Telnet is not working
Replies: 7
Views: 2725

Re: Telnet is not working

Hello,sorry my late responding,telnet is already working and i want to give for you a description my network: We have got a little network with some devices:pc,laptop, RB AP...etc Mikrotik 750 wan port (eth1) on running dhcp client and another from 750 get IP (192.168.1.120 in this case) There are 2...
by Trackboy
Fri Jun 08, 2012 7:17 pm
Forum: Beginner Basics
Topic: Telnet is not working
Replies: 7
Views: 2725

Re: Telnet is not working

Telnet is enabled,the firewall not blocking,i know the ether1 port is a wan port default,and the ether2 is a master port for eth3-5

I am using now the eth3 port with 10.10.10.10/24 IP address

I reseted the default configuration,but not helped
by Trackboy
Fri Jun 08, 2012 6:19 pm
Forum: Beginner Basics
Topic: Telnet is not working
Replies: 7
Views: 2725

Telnet is not working

Hello everybody!I want to learning the next to GUI configuration,the CLI configuration also. But i can not log in Telnet my RB 750 GL I am using Ubuntu 10.10 Linux,when i open a terminal i want to use telnet,and trying log in but just this message display: Trying........... and not happend nothing,w...
by Trackboy
Wed Jun 06, 2012 8:51 pm
Forum: Beginner Basics
Topic: Mikrotik 750 GL reset button not want to working
Replies: 2
Views: 3405

Re: Mikrotik 750 GL reset button not want to working

Thank you very much
by Trackboy
Wed Jun 06, 2012 8:17 pm
Forum: Beginner Basics
Topic: Mikrotik 750 GL reset button not want to working
Replies: 2
Views: 3405

Mikrotik 750 GL reset button not want to working

Hello everybody,i have got a RB 750 GL,and don't want to working the reset gomb the front panel.I pressed the button for 2 minutes,but not happend nothing, i am new in Mikrotik devices

I buyed this RB 2 weeks ago,possible this button broken,or i don't do something good?

Thank you for your replies!