Reliance Jio AirFiber Root Access Guide

  • Thread starter Thread starter itsyourap
  • Start date Start date
  • Featured
  • Replies Replies 310
  • Views Views 37,701
@error4oo4

in /etc/config/network edit wan and wan6 to

Code:
config interface 'wan'
    option device 'eth1'
    option defaultroute '1'
    option peerdns '0'
    list dns '1.1.1.1'
    list dns '1.0.0.1'
    option metric '2048'
    option ip6prefix '64:ff9b::/96'
    option proto '464xlat'
    
config interface 'wan6'
    option proto 'dhcpv6'
    option device 'eth1'
    option defaultroute '1'
    option reqaddress 'try'
    option reqprefix 'auto'
    option peerdns '1'
    list dns '2606:4700:4700::1111'
    list dns '2606:4700:4700::1001'
    option dhcpv6 '0'

Also comment out plume in /etc/config/plume


Code:
# config plume
#     option redirector_addr 'ssl:redirector-prod.rho.jiohs.net:443'
 
@kovacs1122 is luci able to control everything?
Did it added any new control option? Like enabled wifi6
Did you had remove the default jio ui?
Did update caused any issue with root access?
Are you able to install packages via luci or ssh?
 
i also managed to instal luci.Did you able to instal kmod-usb-net-rndis ? i cant find the package
 
@Palwinder Gill @lazarus @SandipB

First download and install WinSCP and connect to the router using SCP protocol.
Download the luci_base.ipk from this repo and transfer it to the router, preferably on /tmp/.
Install luci_base.ipk using SSH
Code:
opkg install /tmp/luci_base.ipk --force-downgrade
.
Now do,
Code:
/etc/init.d/uhttpd start
/etc/init.d/uhttpd enable
Luci should be running at 192.168.31.1 with missing theme error, use the same methods to install a theme of your choice from the repo and it should be working.

And yes a lot of the features are working, Including separating the 2.4ghz and 5ghz but I would advise not to modify anything on 5ghz as it caused my router to brick and I had to reset it (which makes the router goto factory default and even removes root access, and in my case even updated to the latest fw).
 
Back