[Airtel AOT5221ZY Router] cannot forward HTTP port because of Remot MGMT.

  • Thread starter Thread starter shadoww
  • Start date Start date
  • Replies Replies 14
  • Views Views 1,034
Messages
1
Location
jaipur
ISP
Airtel
Hey, i have just been upgraded to Airtel's AOT5221ZY router from Nokia one and now i really regret doing it.
I am trying to forward port 443 and 80 for my servers but it fails with error: Rule conflict with Remote MGMT setting.
The actual ports are closed but the router is hijacking all of the http requests and it has resulted in all of my services being down.

Is there a way to change Remote MGMT port or somehow bypass this?



Additional details:

Model Name: AOT5221ZY
MAC Address: 6C:4F:89:9D:E5:C0
Firmware Version: AOT5221ZY_R_2.17
Firewall: Disable
 
@iYuvrajMehta so ur saying before changing ur router u were able to host stuff on port 80/443. coz i'm on the zte router & it's on bridge mode, though i can open any port except 80 & 443 which is giving me really hard time in hosting a reverse proxy.
 
Upvote 0
You cannot forward port 80 and 443 on AOT5221ZY because for some reason it is blocked in webpage frontend side. Hardcode. Take a look at this code. Strange and stupid. I am also stuck with this too restrict and stupid router. Stupid Airtel.

JavaScript:
    function chkPortRange()
    {   
        port = parseInt(document.VIRTUALSVR_form.start_port.value, 10);
        port2 = parseInt(document.VIRTUALSVR_form.end_port.value, 10);
        port3 = parseInt(document.VIRTUALSVR_form.oStart.value, 10);
        port4 = parseInt(document.VIRTUALSVR_form.oEnd.value, 10);
        
        if (port > 65535 || port < 1 || port2 > 65535 || port2 < 1 || isNaN(port) || isNaN(port2) || port3 > 65535 || port3 < 1 || port4 > 65535 || port4 < 1 || isNaN(port3) || isNaN(port4))
        {   
            alert(document.getElementById("MLG_PortRangeError_JS").innerHTML);
            return true;   
        }
        
        if (port2 < port)
        {   

            alert(document.getElementById("MLG_PortFD_Error_1").innerHTML);
            return true;
        }
        
        var conReqPort="7547";

        if ( (port == conReqPort || port2 == conReqPort)  && ( document.VIRTUALSVR_form.PortRule_Protocol.selectedIndex != 2)  )
        {
            alert(conReqPort+document.getElementById("MLG_NAT_Port_CWMP_Error").innerHTML);

            return true;
        }   
        
        if ((port <= conReqPort && port2 >= conReqPort) && ( document.VIRTUALSVR_form.PortRule_Protocol.selectedIndex != 2) )
        {
            alert(conReqPort+document.getElementById("MLG_NAT_Port_CWMP_Error").innerHTML);

            return true;
        }   

        var SIPconReqPort="5060";

        if ((port <= SIPconReqPort && port2 >= SIPconReqPort) && ( document.VIRTUALSVR_form.PortRule_Protocol.selectedIndex != 2) )
        {
            alert(SIPconReqPort+document.getElementById("MLG_NAT_Port_SIP_Error").innerHTML);
            return true;
        }   

        var HTTPconReqPort="80";
        var HTTPSconReqPort="443";
        var SSHconReqPort="";
        if(((port <= HTTPconReqPort) && (port2 >=HTTPconReqPort)) || ((port <= HTTPSconReqPort) && (port2 >=HTTPSconReqPort)) || ((port <= SSHconReqPort) && (port2 >=SSHconReqPort))) {
                    alert(document.getElementById("MLG_NATPortForwarding_RuleConflict_RemoteMGMT").innerHTML);
                    return true;
                }

        Sports = new Array(10);
        Eports = new Array(10);
        return false;
    }
 
Upvote 0
Back