Тип публикации
Профили
Форум
Календарь
Все публикации пользователя ilcergio
-
This is true I did the test with a ubiquiti antenna and it works perfectly.
-
Hello friend again here I have not yet achieved anything with this I want to use mikrotik burst limits I have tried placing the following 350k/700k 500k/1800k 290k/290k 100/100 7 10k/10k to then send these parameters by radius with the following attribute "Mikrotik-Rate-Limit = {SPEEDDOWN}" I'm sure this should work perfectly but my problem is that when I hit save it removes the slashes (/)
-
Ready friend. Thanks, that was the problem, something as simple as that.
-
It is unfortunate that the mikrotik Api is no longer being developed because mikrotik by radio requires Level 6 equipment to be able to use all the radio functionalities with lower levels, it only allows up to 50 clients to connect.
-
It is unfortunate that the mikrotik Api is no longer being developed because mikrotik by radio requires Level 6 equipment to be able to use all the radio functionalities with lower levels, it only allows up to 50 clients to connect.
-
Hello friend, here again I had a long time without internet with many problems in Venezuela, that's why I was absent I reinstalled the latest version and I'm reviewing and I find a flaw that I don't know if the previous versions existed for some reason, even though I have the time set correctly when I searched for it in the console it shows me my time and shows me the time zone perfectly UTC -4 however in Ubilling when I make a transaction it shows me the time zone in UTC 0 I have the UTC -4 time configured and in the Ubilling system it shows me 4 hours less than my current time. It should show me the same time that I have configured on my computer if I am correct Здравствуйте, друг, и здесь у меня долгое время не было интернета со многими проблемами в Венесуэле, поэтому я отсутствовал Я переустановил последнюю версию, и я проверяю, и я нахожу ошибку, которую я не знаю, существовали ли предыдущие версии по какой-то причине, хотя у меня правильно установлено время, когда я искал его в консоли, оно показывает мне мое время и показывает мне часовой пояс идеально UTC-4, однако в Ubilling, когда я совершаю транзакцию, он показывает мне часовой пояс в UTC 0 У меня настроено время UTC-4, и в системе Ubilling он показывает мне на 4 часа меньше моего текущего времени. Он должен показывать то же время, которое я настроил на своем компьютере, если я прав
-
falto agregar que esta disponible en español I need to add that it is available in Spanish
- 60 ответов
-
- 1
-
-
-
nightfly I could be so kind as to explain to me is a little more since I could not understand the translation has not been good for me. let's say I want to give a mega for $ 1 and then I want to charge $ 1 for each additional mega What should I place in the following image? How should I enter the data? Tariff name Fee PeriodMonth Day Prepaid traffic Counting traffic up+down up down max Cost of freezing Internet HoursMinutes DayPrice day Threshold (Mb) NightPrice night Without threshold Price does not depend on time
-
Hello Someone could be so kind and record a video of How to configure hotspot in mikrotik HotSpot КучаГен The truth is I don't want to bother you but as everyone knows I don't speak any language other than Spanish and I read everything translated and the translations are sometimes not clear, so I think a video could help me more since I have a lot of time trying to do it function and failed.
-
I share this wordpress application that allows you to log in to the wordpress page with ubilling users https://wordpress.org/plugins/miniorange-radius-client/
-
Hi me again I was watching the Dynamic shaper and I can't find a way to control Down speed Kbit / s / Up speed Kbit / s separately to be able to give Down speed Kbit / s and Up speed Kbit / s for example 512 of Down speed Kbit / s and 256 Up speed Kbit / s I would like to be able to use it with КучаГен it would be interesting if you could change rates with the Dynamic shaper and disconnect and КучаГен user connection to update or by CoA that could allow parameters to КучаГен from Dynamic shaper this would open up a wide range of possibilities I think that would be something that would give a lot of added value to the system and very useful
-
Here an example 64k/64k 256k/256k 128k/128k 10/10 {SPEEDMRL} {SPEEDMRLB} {SPEEDMRLBTH} {SPEEDMRLBT} rate burst-rate burst-threshold burst-time Download speed / Upload speed Burst Download speed / Burst Upload speed ????? / ????? Burst Download Time speed / Burst Upload Time speed 64k/64k 256k/256k 128k/128k 10/10 - rx/tx-rate=64000, rx/tx-burst-rate=256000, rx/tx-burst-threshold=128000, rx/tx-burst-time=10s as what I write is not well understood because I speak Spanish and the translators do not translate well I place these images I hope the idea is understandable to you.
-
@skybetik @nightfly @l1ght @Pautiina
- 60 ответов
-
gracias Thank you
-
Hello Unfortunately, for Latin America there is no possibility to use SendDog due to lack of sms gateway I would like to kindly ask you if you can integrate this application into the system This is an application that allows you to use your Android phone as an SMS gateway SMSHub what? SMSHub is an SMS Gateway application for Android phones (Android Studio project developed in Kotlin) you can use to add SMS functionality to your software. It connects to a webpage to retrieve messages to be sent (in JSON format) at regular intervals. It also notifies about delivery status and incoming messages . why? Commercial SMS APIs are (for most cases) prohibitively expensive. Instead you can use your own phone line to send SMS with an Android phone as a gateway. There are other SMS gateways projects but as far as I could check when this project started, none of them can be use to send and receive SMS via HTTP API easily and freely (with no commercial dependencies). how? You can download a compiled .apk file from the beta release here settings you can customize the next settings directly in the application Send SMS: Enable sending: whether the app should read from the API and send messages send URL: messages will be parsed from this URL, you return a JSON containing message, number and id interval: the app will check whether there is an incoming message for sending each specific interval in minutes status URL: once a message is sent, status will be reported to this URL via GET parameters, id and status (SENT, FAILED, DELIVERED) Receive SMS: receive URL: Message received will be posted here. If nothing is specified it will skip this action. How sending SMSs works 1- The application connects at regular intervals to a URL POST https://yourcustomurl.com/send_api deviceId: 1 action: SEND 2- It should read a JSON containing message, number and id, or an empty response if there is nothing to send { "message": "hola mundo!", "number": "3472664455", "messageId": "1" } 3- The app will send the SMS message to number 4- Once sent (or failed) the app will notify the status to the status URL POST https://yourcustomurl.com/status_api deviceId: 1 messageId: 1 status: SENT action: STATUS 5- Once delivered the app will notify the status to the status URL POST https://yourcustomurl.com/status_api deviceId: 1 messageId: 1 status: DELIVERED action: STATUS Possible status values are: SENT, FAILED, DELIVERED (notice that it is unlikely but possible to get the DELIVERED update before the SENT update due to requests delay). How receiving SMSs works 1- Each time a SMS is received the app will notify the received URL POST https://yourcustomurl.com/received_api deviceId: 1 number: 3472556699 message: Hello man! action: RECEIVED https://github.com/juancrescente/SMSHub
- 60 ответов
-
Hi, I have the same problem Can someone help me how you set up the firewall rules I know there are numerical tables But I don't understand how he set it up Can someone give me an example of how to do so that for example customers by 172.16.1.0/24 have access to the internet and when they have disconnected in uniling lose the internet connection use freedBSD 11.2 Can you give me an example of how tables should be configured? Привет у меня такая же проблема Может кто-нибудь помочь мне настроить правила брандмауэра? Я знаю, что есть числовые таблицы. Но я не понимаю, как он это настроил Может ли кто-нибудь дать мне пример того, как это сделать, чтобы, например, клиенты, которые имеют 172.16.1.0/24, имели доступ к Интернету и когда они отключились в uniling, потеряли подключение к Интернету? используйте freedBSD 11.2 Можете ли вы дать мне пример того, как таблицы должны быть настроены?
-
Hi, I have the same problem Can someone help me how you set up the firewall rules I know there are numerical tables But I don't understand how he set it up Can someone give me an example of how to do so that for example customers by 172.16.1.0/24 have access to the internet and when they have disconnected in uniling lose the internet connection use freedBSD 11.2
-
Проблема с конфигурацией MultiGen
тему ответил в ilcergio пользователя ilcergio в Stargazer Ubilling
Hello, after having been struggling to get out of my jam for many days, I could find the problem. It is a ridiculous thing but when you follow a tutorial due to ignorance, you laugh step by step through the tutorial. Unfortunately, the tutorial does not specify this configuration to do before the test or maybe it does. but it is not understandable when translating into Spanish. It just says that the local NAS configuration is trivial. Perhaps it seemed to those who did the tutorial that it was not relevant to place that step but without that step anyone can spend nights and days without sleep and not get how to run the first test. I will leave attached an image where is the step What should be done before doing the test test of the local NAS Thanks to all who collaborate and support me -
Проблема с конфигурацией MultiGen
тему ответил в ilcergio пользователя ilcergio в Stargazer Ubilling
this is how the screens look This is the console radiusd -X This is the console where I make the test call and the result it gives me. This is the guide I am doing. and I'm super sure I've done all the steps, because I've repeated it many times I have formatted the computer many times http://wiki.ubilling.net.ua/doku.php?id=multigen
