CF-E314N V2 FIRMWARE VLAN (COMFAST) New
CF-E314N V2 FIRMWARE VLAN (COMFAST) FREE DOWNLOAD.. CLICK HERE
- Threads
- 0
- Words
- 2583
CF-E314N V2 FIRMWARE VLAN (COMFAST) FREE DOWNLOAD.. CLICK HERE
SASSA PRE-PRINT PAFOLLOW DIN PO NG BAGO KUNG ACCOUNT SA FB.. ZSULTAN KARIM
Features
Hardware Option
Coinslot System
Admin System
ESP32 LAN Based Connection Diagram
ESP32 Wireless Based Connection Diagram
ESP8622 Wireless Based Connection Diagram
ESP8622 LAN Based Connection Diagram
NodeMCU Setup
There are 2 ways how to upload the software in NodeMCU
a.) Install the binary release file, follow this guide on how to flash the bin file https://github.com/ivanalayan15/JuanFi/tree/master/release
b.) Build and compile the code
(SKIP THIS STEP IF YOU CHOOSE THE BIN FILES) GOTO Step #4 directly
1.) Download and install Arduino IDE https://www.arduino.cc/en/software
install dependency libraries at arduino libraries folder
a.) Open JuanFi.ino
b.) Compile and upload
c.) Upload sketchup data using SIFSS, follow this instruction https://randomnerdtutorials.com/install-esp8266-filesystem-uploader-arduino-ide/
a.) Connect to JuanFi Setup SSID
1.) For Nodemcu/esp8622 wireless JuanFI setup will appear
2.) For ESP32 Lanbase, you need to plugin first in your PC/Laptop ethernet and set your IP address as static 172.217.28.2
After you set to static you can access the admin in your browser as 172.217.28.1
b.) Login to admin panel, Default user and password : admin / admin
c.) Configure System, change the necessary fields to your configuration, system will restart to take effect, default mikrotik user and password is pisonet / abc123
d.) Configure Promo rates
1.) Setup mikrotik hotspot according to your configuration
2.) Make the NodeMCU IP address static
3.) Add IP Bindings exception on hotspot
4.) Modify vendoIpAddress (NodeMcu IPaddress) in the core.js file, you can do a multivendo setup just follow the comment in javascript for instruction
5.) Upload html template to mikrotik in Files option of mikrotik
6.) Create user for nodemcu access, default user for nodemcu is pisonet / abc123 you can change it by your own
7.) Execute the following script in mikrotik telnet terminal replace 10.0.10.253 with your own nodemcu IP address
/ip hotspot walled-garden ip add action=accept disabled=no dst-address=10.0.10.253
/ip firewall filter add action=accept chain=input place-before=0 comment=NodeMCUIP src-address=10.0.10.253
8.) Please add this script in the hotspot user profile on login event(credits to kristoff for adding sales)
Execute on mirkotik terminal
/system scheduler add interval=1d name="Reset Daily Income" on-event="/system script set source=\"0\" todayincome " policy=ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon start-date=Sep/28/2021 start-time=00:00:00;
/system scheduler add interval=30d name="Reset Monthly Income" on-event="/system script set source=\"0\" monthlyincome " policy=ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon start-date=Sep/28/2021 start-time=00:00:00;
/system script add dont-require-permissions=no name=todayincome owner=admin policy=ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon source="0";
/system script add dont-require-permissions=no name= monthlyincome owner=admin policy=ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon source="0";
Put on the on login script (with telegram support) please change accordinly with your hotspot folder(hex or haplite)
Code:
### enable telegram notification, change from 0 to 1 if you want to enable telegram
:local isTelegram 0;
###replace telegram token
:local iTBotToken "xxxxxxxxxx:xxxxxxxxxxxxx-xxxxxxxxxxxxxxx-xxxxx";
###replace telegram chat id / group id
:local iTGrChatID "xxxxxxxxxxxxxx";
### hotspot folder for HEX put flash/hotspot for haplite put hotspot only
:local HSFilePath "hotspot";
### enable Random MAC synchronizer
:local isRandomMacSyncFix 0;
### enable JuanFi online monitoring 0 = DoNotSend, 1=send data to api
:local apiSend 0;
### derive from the JuanFi online monitoring, create account in genman.projectdorsu.com
:local URLvendoID 5;
# Get User Data
:local aUsrNote [/ip hotspot user get $user comment];
:local aUsrNote [:toarray $aUsrNote];
:local iUsrTime [:totime ($aUsrNote->0)];
:local iSaleAmt [:tonum ($aUsrNote->1)];
:local iExtCode ($aUsrNote->2);
:local iVdoName ($aUsrNote->3);
:local iTimeMin [/ip hotspot user get $user limit-uptime];
:local iUserReg [/system scheduler find name=$user];
# Check User Data
:if (($iTimeMin>0) and ($iUsrTime>=0) and (($iUserReg="") or ($iExtCode=1))) do={
/ip hotspot user set $user comment="";
:local iFileMac;
:local mac $"mac-address";
:for i from=0 to=([:len $mac] - 1) do={
:local chr [:pick $mac $i]
:if ($chr = ":") do={ :set $chr "" }
:set iFileMac ($iFileMac . $chr)
}
# api tracking
{ /do {
:local URLamount "$amt";
:local URLcomment "ScriptOnLoginFINAL";
:local URLip [:put [:tostr $address]];
:local URLusr [$user];
:local URLmac [$"mac-address"];
:local URLipmac "$URLusr_$URLip_$URLmac";
:local URLactive [/ip hotspot active print count-only];
:if ($apiSend!=0) do={
/do {
:local fixUrl [("https://juanfiapi.projectdorsu.com/serve.js\?s=stats&i=OE-IBX-12345&m=direct&payload=$URLvendoID")];
:local apiUrl "$fixUrl_$URLamount_$URLipmac_$URLactive_$URLcomment";
:log debug "API SendInfo: $apiUrl ";
/tool fetch mode=https http-method=get url=$apiUrl keep-result=no
:delay 1s;
} on-error={:log error "API Vendo ERROR: $apiUrl ";} }
} on-error={:log error "APIvendoRoutineError";} }
# Extend User
:if (($iUserReg!="") and ($iExtCode=1)) do={
:local iTimeInt [/system scheduler get $user interval];
:set iTimeInt ($iTimeInt+$iUsrTime);
:if ($iTimeMin>$iTimeInt) do={ :set iTimeInt ($iTimeMin+$iUsrTime) };
/system scheduler set $user interval=$iTimeInt;
}
# ADD User
:local iDateBeg [/system clock get date];
:local iTimeBeg [/system clock get time];
:if ($iUserReg="") do={
:local iTimeInt $iUsrTime;
:if ($iTimeMin>$iUsrTime) do={ :set iTimeInt ($iTimeMin+$iUsrTime) };
:do { /system scheduler add name="$user" interval=$iTimeInt \
start-date=$iDateBeg start-time=$iTimeBeg disable=no \
policy=ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon \
on-event=("/ip hotspot user remove [find name=$user];\r\n".\
"/ip hotspot active remove [find user=$user];\r\n".\
"/ip hotspot cookie remove [find user=$user];\r\n".\
"/system scheduler remove [find name=$user];\r\n".\
":do {/file remove \"$HSFilePath/data/$iFileMac.txt\"} on-error={};\r\n")
} on-error={ log error "( $user ) /system scheduler add => ERROR ADD!" };
:local x 10;:while (($x>0) and ([/system scheduler find name="$user"]="")) do={:set x ($x-1);:delay 1s};
};
# Save Data File
:if ([/file find name="$HSFilePath/data"]="") do={
:do {/tool fetch dst-path=("$HSFilePath/data/.") url="https://127.0.0.1/"} on-error={ };
}
:local iValidUntil [/system scheduler get $user next-run];
:if ([/system scheduler find name=$user]!="") do={
/file print file="$HSFilePath/data/$iFileMac.txt" where name="dummyfile";
:local x 10;:while (($x>0) and ([/file find name="$HSFilePath/data/$iFileMac.txt"]="")) do={:set x ($x-1);:delay 1s};
/file set "$HSFilePath/data/$iFileMac" contents="$user#$iValidUntil";
}
# Update Today Income
:local iSaveAmt [:tonum [/system script get todayincome source]];
:local iDailySales ($iSaleAmt + $iSaveAmt);
/system script set todayincome source="$iDailySales";
# Update Monthly Income
:local iSaveAmt [:tonum [/system script get monthlyincome source]];
:local iMonthSales ( $iSaleAmt + $iSaveAmt );
/system script set monthlyincome source="$iMonthSales";
# Telegram
:if ($isTelegram=1) do={
:local xVendo;
:for i from=0 to=([:len $iVdoName] - 1) do={
:local chr [:pick $iVdoName $i]
:if ($chr = " ") do={ :set $chr "%20" }
:set xVendo ($xVendo . $chr)
}
:local iUActive [/ip hotspot active print count-only];
:local iMessage ("<<======New Sales======>>%0A".\
"Vendo: $xVendo %0A".\
"Voucher: $user %0A".\
"IP: $address %0A".\
"MAC: $mac %0A".\
"Amount: $iSaleAmt %0A".\
"Extended: $iExtCode %0A".\
"Total Time: $iTimeMin %0A %0A".\
"Today Sales: $iDailySales %0A".\
"Monthly Sales: $iMonthSales %0A".\
"Active Users: $iUActive %0A".\
"Valid Until: $iValidUntil %0A".\
"<<=====================>>");
/tool fetch url="https://api.telegram.org/bot$iTBotToken/sendmessage\?chat_id=$iTGrChatID&text=$iMessage" keep-result=no;
}
};
# Random Mac
:if ($isRandomMacSyncFix=1) do={
:local cmac $"mac-address";
:foreach AU in=[/ip hotspot active find user="$user"] do={
:local amac [/ip hotspot active get $AU mac-address];
:if ($cmac!=$amac) do={ /ip hotspot active remove [/ip hotspot active find mac-address="$amac"]; }
}
}
Put on the on logout script
:if ($cause="session timeout") do={
/system scheduler set [find name=$user] interval=5s;}
Miscellaneous Scripts
You can create a scheduler to restart (System - > Scheduler) add your desired schedule and put this script or modify the existing template scripts below in your desired settings
38vz2rb6nk - this is the API KEY you generate in admin panel 10.10.10.251 - this is your ESP IP Address
Replace those value with your own setting
Restart vendo scheduler
Sample Script that run at 3am:
/system scheduler add interval=1d name="Restart Vendo" on-event="/tool fetch http-method=post http-header-field=\"X-TOKEN: 38vz2rb6nk\" url=\"http://10.10.10.251/admin/api/restartSystem\"" policy=ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon start-date=Sep/28/2021 start-time=03:00:00;
Night Light schedulers
Sample Script that turn on nightlight at 6 pm:
/system scheduler add interval=1d name="Turn ON Night Light" on-event="/tool fetch http-method=post http-header-field=\"X-TOKEN: 38vz2rb6nk\" url=\"http://10.10.10.251/admin/api/toggerNightLight\?toggle=1\"" policy=ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon start-date=Sep/28/2021 start-time=18:00:00;
Sample Script that turn off nightlight at 6 am:
/system scheduler add interval=1d name="Turn OFF Night Light" on-event="/tool fetch http-method=post http-header-field=\"X-TOKEN: 38vz2rb6nk\" url=\"http://10.10.10.251/admin/api/toggerNightLight\?toggle=0\"" policy=ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon start-date=Sep/28/2021 start-time=06:00:00;
Usage
Mikrotik Hotspot Portal
Admin Panel Dashboard
--Forum Rules --BBcodes
image quote pre code