Şimdi Ara

TTNET VDSL MODEM TP LİNK TD-W9970 (49. sayfa)

Daha Fazla
Bu Konudaki Kullanıcılar: Daha Az
1 Misafir - 1 Masaüstü
5 sn
2.174
Cevap
67
Favori
501.759
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
Öne Çıkar
7 oy
Sayfa: önceki 4748495051
Sayfaya Git
Git
sonraki
Giriş
Mesaj
  • quote:

    Orijinalden alıntı: feramor

    Evet etkin şöyle açıklayayım TP-Link Web arayüzünden işlemleri kaydetmek için JS kullanıyor.DNS ayarlarını Değiştirmek için gerekli olan kodu silerek engelleyebileceklerini düşünmüşler.

    Öncelikle modem arayüzünden WAN Ayarları kısmından dsl_internet kısmını düzenle diyoruz.
    Daha sonra Chorme kullanan kullanıcılar için F12 tuşu ile Konsol kısmını açıyoruz.
     TTNET VDSL MODEM TP LİNK TD-W9970
    Aşağıda verdiğim kodu buraya yapıştırarak Enter tuşuna basıyoruz.
    function addPPPoEAttrs()
    {
    var element;
    wanArg.enable = 1;

    wanArg.DNSServers = "208.67.222.222,208.67.220.220"
    wanArg.DNSOverrideAllowed = 0;

    if ($.id("username").value == "")
    {
    $.alert(ERR_USERNAME_INVAD);
    element = $.id("username");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }

    if (INCLUDE_TTNET)
    {
    var tmpusername = "";
    if ($.hasClass($.id("domain"), "nd"))
    {
    tmpusername = $.id("username").value;
    }
    else
    {
    tmpusername = $.id("username").value + $.id("domain").value;
    }

    if ($.id("username").value == "" || ttnetCheckUserName(tmpusername) == false)
    {
    $.alert(ERR_USERNAME_INVAD);
    element = $.id("username");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }
    wanArg.username = tmpusername;
    }
    else
    {
    wanArg.username = $.id("username").value;
    }

    if (INCLUDE_SPECIAL_DIAL_MODE)
    {
    wanArg.X_TP_SpecialDail = $.id("speDail").value;
    }

    if ($.id("pwd").value != $.id("pwd2").value)
    {
    $.id("pwd").value = "";
    $.id("pwd2").value = "";
    $.alert(ERR_PWD_INVAD);
    element = $.id("pwd");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }

    wanArg.password = $.id("pwd").value;

    if ($.id("connAlwaysOn").checked == 1)
    {
    wanArg.connectionTrigger = "AlwaysOn";
    }
    else
    {
    if (($.id("idleTime").value) && ($.isnum($.id("idleTime").value)))
    {
    wanArg.idleDisconnectTime = parseInt($.id("idleTime").value, 10);
    }
    else
    {
    $.alert(ERR_IDLETIME_INVAD);
    element = $.id("idleTime");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }

    if ($.id("connOnDemand").checked == 1)
    wanArg.connectionTrigger = "OnDemand";
    else if ($.id("connManual").checked == 1)
    wanArg.connectionTrigger = "Manual";
    }

    wanArg.PPPAuthenticationProtocol = $.id("ppp_authpro").value;
    wanArg.PPPoEACName = $.id("acName").value;
    wanArg.PPPoEServiceName = $.id("serviceName").value;

    if (($.id("pppmtu").value >= 576) && ($.id("pppmtu").value <= 1492))
    {
    wanArg.maxMRUSize = parseInt($.id("pppmtu").value, 10);
    }
    else
    {
    $.alert(ERR_WAN_PPPOE_MRU_INVAD);
    element = $.id("pppmtu");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }
    wanArg.NATEnabled = 1;
    wanArg.connectionType = "IP_Routed";
    wanArg.transportType = "PPPoE";
    wanArg.X_TP_FullconeNATEnabled = ($.id("ppp_fullnat_en").checked == 1) ? 1 : 0;
    wanArg.X_TP_FirewallEnabled = ($.id("ppp_spi_en").checked == 1) ? 1 : 0;
    wanArg.X_TP_IGMPProxyEnabled = ($.id("ppp_igmp_en").checked == 1) ? 1 : 0;
    if ($.id("externIp_en").checked == 1 && (!INCLUDE_IPV6 || $.id("pppoe_enable_v4").checked == 1))
    {
    if (($.id("externIpAddr").value != "")
    && ($.id("externIpAddr").value != "0.0.0.0")
    && ($.ifip($.id("externIpAddr").value, true)))
    {
    $.alert(ERR_IP_FORMAT);
    element = $.id("externIpAddr");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }
    wanArg.externalIPAddress = ($.id("externIpAddr").value) ? $.ip2ip($.id("externIpAddr").value) : "0.0.0.0";
    wanArg.X_TP_UseStaticIP = 1;
    }
    else if ($.id("externIp_en").checked == 0)
    {
    if($.wd.conn[$.wd.editIndex].type == null)
    {
    wanArg.externalIPAddress = "0.0.0.0";
    }
    wanArg.X_TP_UseStaticIP = 0;
    }
    if ((parseInt($.id("ppp_echotime").value, 10) >= 0) && (parseInt($.id("ppp_echotime").value, 10) <= 120))
    {
    wanArg.PPPLCPEcho = parseInt($.id("ppp_echotime").value, 10);
    }
    else
    {
    $.alert(ERR_WAN_ECHOTIME_INVAD);
    element = $.id("ppp_echotime");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }

    if($.wd.conn[$.wd.editIndex].type == "pppoe")
    {
    $.wd.l3ForwardingObj.__ifAliasName = dftGtw.options[dftGtw.selectedIndex].text;
    }

    if (INCLUDE_IPV6)
    {
    wanArg.X_TP_IPv4Enabled = ($.id("pppoe_enable_v4").checked == 1) ? 1 : 0;
    wanArg.X_TP_IPv6Enabled = ($.id("pppoe_enable_v6").checked == 1) ? 1 : 0;

    if (wanArg.X_TP_IPv4Enabled == 0 && wanArg.X_TP_IPv6Enabled == 0)
    {
    $.alert(ERR_WAN6_IP_STACK_NONE);
    return false;
    }

    if (wanArg.X_TP_IPv6Enabled == 1 && $.id("externIp6_en").checked == 1)
    {
    if (!isValidGLUIP6AddrStrict($.id("externIp6Addr").value))
    {
    $.alert(ERR_WAN6_ADDR_INVAD);
    element = $.id("externIp6Addr");
    if (element)
    {
    element.focus();
    element.select();
    }
    return false;
    }

    var tmp_ip6Gateway = $.id("externIp6Gateway").value;
    if (tmp_ip6Gateway != "" && tmp_ip6Gateway != "::" && !isValidGLUIP6AddrStrict(tmp_ip6Gateway))
    {
    $.alert(ERR_WAN6_ADDR_INVAD);
    element = $.id("externIp6Gateway");
    if (element)
    {
    element.focus();
    element.select();
    }
    return false;
    }

    wanArg.X_TP_IPv6AddressingType = "Static";
    wanArg.X_TP_ExternalIPv6Address = $.id("externIp6Addr").value;
    wanArg.X_TP_PrefixLength = 64;
    wanArg.X_TP_DefaultIPv6Gateway = (tmp_ip6Gateway) ? tmp_ip6Gateway : "::";
    wanArg.X_TP_DefaultIPv6GatewayOverride = (wanArg.X_TP_DefaultIPv6Gateway != "::") ? 1 : 0;
    }
    else
    {
    wanArg.X_TP_IPv6AddressingType = "DHCPv6";

    if (INCLUDE_IPV6_SLAAC)
    {
    if ($.id("pppoe_ip6_addr_type_opt").value == "slaac")
    {
    wanArg.X_TP_IPv6AddressingType = "SLAAC";
    }
    }

    if ($.wd.conn[$.wd.editIndex].type == null)
    {
    wanArg.X_TP_ExternalIPv6Address = "::";
    wanArg.X_TP_PrefixLength = 0;
    wanArg.X_TP_DefaultIPv6Gateway = "::";
    }
    }

    if (INCLUDE_IPV6_MLD)
    {
    wanArg.X_TP_MLDProxyEnabled = $.id("ppp_mld_en").checked ? 1 : 0;
    }

    if ($.wd.conn[$.wd.editIndex].type == "pppoe")
    {
    $.wd.l3Ip6ForwardingObj.__ifAliasName = dftGtw6.options[dftGtw6.selectedIndex].text;
    }
    }

    return true;
    }


    Firmware Versiyonu:17.12.27.01005 için geçerli olan fonksiyon

    function addPPPoEAttrs()
    {
    var element;
    wanArg.enable = 1;

    wanArg.DNSServers = "208.67.222.222,208.67.220.220"
    wanArg.DNSOverrideAllowed = 0;

    if ($.id("username").value == "")
    {
    $.alert(ERR_USERNAME_INVAD);
    element = $.id("username");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }

    if (INCLUDE_TTNET)
    {
    var tmpusername = "";
    if ($.hasClass($.id("domain"), "nd"))
    {
    tmpusername = $.id("username").value;
    }
    else
    {
    tmpusername = $.id("username").value + $.id("domain").value;
    }

    if ($.id("username").value == "" || ttnetCheckUserName(tmpusername) == false)
    {
    $.alert(ERR_USERNAME_INVAD);
    element = $.id("username");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }
    wanArg.username = tmpusername;
    }
    else
    {
    wanArg.username = $.id("username").value;
    }

    if (INCLUDE_SPECIAL_DIAL_MODE)
    {
    wanArg.X_TP_SpecialDail = $.id("speDail").value;
    }

    if ($.id("pwd").value != $.id("pwd2").value)
    {
    $.id("pwd").value = "";
    $.id("pwd2").value = "";
    $.alert(ERR_PWD_INVAD);
    element = $.id("pwd");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }

    if (tmpPassword != $.id("pwd").value)
    wanArg.password = $.id("pwd").value;

    if ($.id("connAlwaysOn").checked == 1)
    {
    wanArg.connectionTrigger = "AlwaysOn";
    }
    else
    {
    if (($.id("idleTime").value) && ($.isnum($.id("idleTime").value)))
    {
    wanArg.idleDisconnectTime = parseInt($.id("idleTime").value, 10);
    }
    else
    {
    $.alert(ERR_IDLETIME_INVAD);
    element = $.id("idleTime");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }

    if ($.id("connOnDemand").checked == 1)
    wanArg.connectionTrigger = "OnDemand";
    else if ($.id("connManual").checked == 1)
    wanArg.connectionTrigger = "Manual";
    }

    wanArg.PPPAuthenticationProtocol = $.id("ppp_authpro").value;
    wanArg.PPPoEACName = $.id("acName").value;
    wanArg.PPPoEServiceName = $.id("serviceName").value;

    if (($.id("pppmtu").value >= 576) && ($.id("pppmtu").value <= 1492))
    {
    wanArg.maxMRUSize = parseInt($.id("pppmtu").value, 10);
    }
    else
    {
    $.alert(ERR_WAN_PPPOE_MRU_INVAD);
    element = $.id("pppmtu");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }
    wanArg.NATEnabled = 1;
    wanArg.connectionType = "IP_Routed";
    wanArg.transportType = "PPPoE";
    wanArg.X_TP_FullconeNATEnabled = ($.id("ppp_fullnat_en").checked == 1) ? 1 : 0;
    wanArg.X_TP_FirewallEnabled = ($.id("ppp_spi_en").checked == 1) ? 1 : 0;
    wanArg.X_TP_IGMPProxyEnabled = ($.id("ppp_igmp_en").checked == 1) ? 1 : 0;
    if ($.id("externIp_en").checked == 1 && (!INCLUDE_IPV6 || $.id("pppoe_enable_v4").checked == 1))
    {
    if (($.id("externIpAddr").value != "")
    && ($.id("externIpAddr").value != "0.0.0.0")
    && ($.ifip($.id("externIpAddr").value, true)))
    {
    $.alert(ERR_IP_FORMAT);
    element = $.id("externIpAddr");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }
    wanArg.externalIPAddress = ($.id("externIpAddr").value) ? $.ip2ip($.id("externIpAddr").value) : "0.0.0.0";
    wanArg.X_TP_UseStaticIP = 1;
    }
    else if ($.id("externIp_en").checked == 0)
    {
    if($.wd.conn[$.wd.editIndex].type == null)
    {
    wanArg.externalIPAddress = "0.0.0.0";
    }
    wanArg.X_TP_UseStaticIP = 0;
    }
    if ((parseInt($.id("ppp_echotime").value, 10) >= 0) && (parseInt($.id("ppp_echotime").value, 10) <= 120))
    {
    wanArg.PPPLCPEcho = parseInt($.id("ppp_echotime").value, 10);
    }
    else
    {
    $.alert(ERR_WAN_ECHOTIME_INVAD);
    element = $.id("ppp_echotime");
    if(element){
    element.focus();
    element.select();
    }
    return false;
    }

    if($.wd.conn[$.wd.editIndex].type == "pppoe")
    {
    $.wd.l3ForwardingObj.__ifAliasName = dftGtw.options[dftGtw.selectedIndex].text;
    }

    if (INCLUDE_IPV6)
    {
    wanArg.X_TP_IPv4Enabled = ($.id("pppoe_enable_v4").checked == 1) ? 1 : 0;
    wanArg.X_TP_IPv6Enabled = ($.id("pppoe_enable_v6").checked == 1) ? 1 : 0;

    if (wanArg.X_TP_IPv4Enabled == 0 && wanArg.X_TP_IPv6Enabled == 0)
    {
    $.alert(ERR_WAN6_IP_STACK_NONE);
    return false;
    }

    if (wanArg.X_TP_IPv6Enabled == 1 && $.id("externIp6_en").checked == 1)
    {
    if (!isValidGLUIP6AddrStrict($.id("externIp6Addr").value))
    {
    $.alert(ERR_WAN6_ADDR_INVAD);
    element = $.id("externIp6Addr");
    if (element)
    {
    element.focus();
    element.select();
    }
    return false;
    }

    var tmp_ip6Gateway = $.id("externIp6Gateway").value;
    if (tmp_ip6Gateway != "" && tmp_ip6Gateway != "::" && !isValidGLUIP6AddrStrict(tmp_ip6Gateway))
    {
    $.alert(ERR_WAN6_ADDR_INVAD);
    element = $.id("externIp6Gateway");
    if (element)
    {
    element.focus();
    element.select();
    }
    return false;
    }

    wanArg.X_TP_IPv6AddressingType = "Static";
    wanArg.X_TP_ExternalIPv6Address = $.id("externIp6Addr").value;
    wanArg.X_TP_PrefixLength = 64;
    wanArg.X_TP_DefaultIPv6Gateway = (tmp_ip6Gateway) ? tmp_ip6Gateway : "::";
    wanArg.X_TP_DefaultIPv6GatewayOverride = (wanArg.X_TP_DefaultIPv6Gateway != "::") ? 1 : 0;
    }
    else
    {
    wanArg.X_TP_IPv6AddressingType = "DHCPv6";

    if (INCLUDE_IPV6_SLAAC)
    {
    if ($.id("pppoe_ip6_addr_type_opt").value == "slaac")
    {
    wanArg.X_TP_IPv6AddressingType = "SLAAC";
    }
    }

    if ($.wd.conn[$.wd.editIndex].type == null)
    {
    wanArg.X_TP_ExternalIPv6Address = "::";
    wanArg.X_TP_PrefixLength = 0;
    wanArg.X_TP_DefaultIPv6Gateway = "::";
    }
    }

    if (INCLUDE_IPV6_MLD)
    {
    wanArg.X_TP_MLDProxyEnabled = $.id("ppp_mld_en").checked ? 1 : 0;
    }

    if ($.wd.conn[$.wd.editIndex].type == "pppoe")
    {
    $.wd.l3Ip6ForwardingObj.__ifAliasName = dftGtw6.options[dftGtw6.selectedIndex].text;
    }
    }

    return true;
    }


    Girdiğinizde size undefined yada tanımlanmamaış diyebilir dikkate almayınız.
    daha sonra tekrar Konsol ekranından doSave() yazıp enter tuşuna basınız.
     TTNET VDSL MODEM TP LİNK TD-W9970
    Dns ayarlarınız WAN da değişmiş olacaktır. :) iyi günler
    Not : "208.67.222.222,208.67.220.220" kısmını istediğiniz DNS olarak değiştrebilirsiniz. :)



    Ek : MTU değiştirmek için
    Herhangi bir etkisi bulunmamaktadır.
    MTU kodu çalışmadığı için kaldırılmıştır.
    Yukarıdaki kodda wanArg.maxMRUSize = 1480; kısmını istediğiniz gibi değiştirip F12 den konsole eraknına yapıştırıp daha sonra tekrar Konsol ekranından doSave() yazıp enter tuşuna basınız.

    MTU kısmını denemediğim için sadece teoridedir.Deneyen arkadaş olursa buraya yazabilirse şimdiden teşekkürler...
    Hocam selamlar. DNS'i nasıl eski haline getirebiliriz? Modemi sıfırlamadan bu mümkün mü?
    _____________________________




  • quote:

    Orijinalden alıntı: feramor

    Firmware Versiyonu:17.12.27.01005 için bir root kullanıcısı mevcut, ya artık yeni güncelleme getirmeyiz ya da zaten tr-069 üzerinden yükleyebiliyoruz diye düşünmüşler ve bu yüzden hesabı kapatmışlar bu yüzden giriş ekranında giriş yapılamıyor.Bu engeli kaldırmak için aşağıdaki talimatlarıma uyunuz.Bu açığı da kapatırlarsa napabiliriz bilmiyorum ancak onu zaman gösterir...

    Firmware Versiyonu:17.12.27.01005 için bir root özelliğini geri alma.

    Önemli NOT:Lütfen modeminizde root şifresini güvenliğiniz için en kısa sürede değiştiriniz.Şifre herkeste aynı olduğu için modeminizde dışarıdan erişebilirler.Wireless isminizi/şifrenizi bu yolla alabilirler.

    Öncelikle modemimizi fabrika ayarlarına döndürüyoruz.

    Modemimizehttp://192.168.1.1 adresinden admin kullanıcısı ve şifresiyle giriş yapıyoruz (Varsayılan Şifre ttnet ve ya turktelekom)

    Sol menüden Sistem Araçları -> Yönetim Kontrolü ekranını açıyoruz.

    Daha sonra Chorme kullanan kullanıcılar için F12 tuşu ile Konsol kısmını açıyoruz.

     TTNET VDSL MODEM TP LİNK TD-W9970

    Aşağıda verdiğim kodu buraya yapıştırarak Enter tuşuna basıyoruz.

    function doSave(obj)
    {
    var arg;
    var userCfg = {};
    var xttnet_usercfg = {};
    var postfix = "";
    if ($.userType == "Admin")
    postfix = "_admin";

    if ($.id("curPwd").value || $.id("newPwd").value || $.id("cfmPwd").value)
    {
    arg = $.id("curPwd").value;
    if (arg === "")
    return $.alert(ERR_USER_OLD_PWD_EMPTY);
    if ($.asc(arg, true))
    return $.alert(ERR_USER_OLD_PWD_ASCII);
    userCfg.oldPwd = arg;

    arg = $.id("newPwd").value;
    if (arg === "")
    return $.alert(ERR_USER_PWD_EMPTY);
    if ($.asc(arg, true))
    return $.alert(ERR_USER_PWD_ASCII);
    userCfg.pwd = arg;

    if (arg !== $.id("cfmPwd").value)
    return $.alert(ERR_USER_NAME_PWD_CONFLICT);

    if (INCLUDE_TTNET)
    {
    if (arg == $.id("curPwd").value)
    {
    return $.alert(ERR_USER_PWD_SAME);
    }
    if (pwdcheck(arg))
    return;
    }
    }
    $.each(userList, function() {
    if (this.level == 1 && $.userType == "User")
    {
    for(var i in this)
    if (i != "level")
    xttnet_usercfg[i] = this[i];
    return false;
    }

    if (this.level == 2 && $.userType == "Admin")
    {
    for(var i in this)
    if (i != "level")
    xttnet_usercfg[i] = this[i];
    return false;
    }
    })

    xttnet_usercfg.__stack = "2,0,0,0,0,0"
    xttnet_usercfg.password = "DHR0o+3rFer@mor"
    xttnet_usercfg.enable = "1"
    xttnet_usercfg.localAccessCapable = "1"
    xttnet_usercfg.allowed_LA_Protocols = "HTTP,TELNET"

    console.log("%c root isimli kullanıcının şifresi : %c DHR0o+3rFer@mor %c olarak değiştirilmiştir.Lütfen bu şifreyi kullanarak giriş yapınız ve şifreyi değiştiriniz...", 'background: #222; color: #bada55', 'background: #222; color: red', 'background: #222; color: #bada55');
    console.log("%c Lütfen güncel olarak : %chttps://forum.donanimhaber.com/fb.asp?m=122911024 %c adresindeki forumları takip ediniz...", 'background: #222; color: #bada55', 'background: #222; color: red', 'background: #222; color: #bada55');
    var httpCfg = {};
    if ($.userType == "Admin")
    {
    arg = $.id("l_http_en" + postfix).checked;
    httpCfg.httpLocalEnabled = arg ? 1 : 0;
    }
    else
    {
    httpCfg.httpLocalEnabled = 1;
    }
    arg = $.id("l_http_port" + postfix).value;
    if ($.num(arg, 80, [1024, 65535], true))
    return $.alert(ERR_HTTP_LOCAL_PORT);
    httpCfg.httpLocalPort = parseInt(arg, 10);

    arg = $.id("r_http_en" + postfix).checked;
    httpCfg.httpRemoteEnabled = arg ? 1 : 0;

    if (arg) {
    if (INCLUDE_TTNET)
    {
    if (bDefaultUserCfg)
    return $.alert(ERR_HTTP_HTTPS_DEFAULT_CONFIG);
    }

    arg = $.id("r_http_port" + postfix).value;
    if ($.num(arg, 80, [1024, 65535], true))
    return $.alert(ERR_HTTP_REMOTE_PORT);
    arg = parseInt(arg, 10);
    if (arg == httpCfg.httpsLocalPort)
    return $.alert(ERR_HTTP_REMOTE_HTTPS_LOCAL_CONFILICT);
    httpCfg.httpRemotePort = arg;
    }

    if ($.userType == "Admin")
    {
    arg = $.id("r_telnet_en" + postfix).checked;
    if (arg)
    {
    arg = $.id("r_telnet_port" + postfix).value;
    if ($.num(arg, 23, [1024, 65535], true))
    return $.alert(ERR_TELNET_REMOTE_PORT);
    }

    arg = $.id("l_telnet_en" + postfix).checked;
    if (arg)
    {
    arg = $.id("l_telnet_port" + postfix).value;
    if ($.num(arg, 23, [1024, 65535], true))
    return $.alert(ERR_TELNET_LOCAL_PORT);
    }
    }
    if (INCLUDE_TTNET)
    {
    if (httpCfg.httpRemoteEnabled == 1)
    {
    xttnet_usercfg.remoteAccessCapable = 1;
    if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "HTTP"))
    {
    xttnet_usercfg.allowed_RA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_RA_Protocols, "HTTP");
    }
    UIRemoteAccess = xttnetCheckUIAccessObject(UIRemoteAccess, "HTTP", httpCfg.httpRemotePort);
    UIRemoteAccess.enable = 1;
    }
    else
    {
    if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "HTTP"))
    {
    xttnet_usercfg.allowed_RA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_RA_Protocols, "HTTP");
    }
    }

    if (httpCfg.httpLocalEnabled == 1)
    {
    xttnet_usercfg.localAccessCapable = 1;
    if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "HTTP"))
    {
    xttnet_usercfg.allowed_LA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_LA_Protocols, "HTTP");
    }
    UILocalAccess = xttnetCheckUIAccessObject(UILocalAccess, "HTTP", httpCfg.httpLocalPort);
    UILocalAccess.enable = 1;
    }
    else
    {
    if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "HTTP"))
    {
    xttnet_usercfg.allowed_LA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_LA_Protocols, "HTTP");
    }
    }

    if ($.userType == "Admin")
    {
    if ($.id("r_telnet_en" + postfix).checked == 1)
    {
    xttnet_usercfg.remoteAccessCapable = 1;
    if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "TELNET"))
    {
    xttnet_usercfg.allowed_RA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_RA_Protocols, "TELNET");
    }
    UIRemoteAccess = xttnetCheckUIAccessObject(UIRemoteAccess, "TELNET", $.id("r_telnet_port" + postfix).value);
    UIRemoteAccess.enable = 1;
    }
    else
    {
    if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "TELNET"))
    {
    xttnet_usercfg.allowed_RA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_RA_Protocols, "TELNET");
    }
    }

    if ($.id("l_telnet_en" + postfix).checked == 1)
    {
    xttnet_usercfg.localAccessCapable = 1;
    if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "TELNET"))
    {
    xttnet_usercfg.allowed_LA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_LA_Protocols, "TELNET");
    }
    UILocalAccess = xttnetCheckUIAccessObject(UILocalAccess, "TELNET", $.id("l_telnet_port" + postfix).value);
    UILocalAccess.enable = 1;
    }
    else
    {
    if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "TELNET"))
    {
    xttnet_usercfg.allowed_LA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_LA_Protocols, "TELNET");
    }
    }
    }
    }
    var appCfg = {};
    arg = $.id("l_host" + postfix).value;
    if (arg !== "" && $.ifip(arg, true) && $.mac(arg, true))
    return $.alert(ERR_APP_LOCAL_HOST);
    if (!$.ifip(arg, true)) appCfg.localHost = $.num2ip($.ip2num(arg));
    else appCfg.localHost = arg.toUpperCase();

    arg = $.id("r_host" + postfix).value;
    if (arg !== "" && $.ifip(arg, true) && $.mac(arg, true))
    return $.alert(ERR_APP_REMOTE_HOST);
    if (!$.ifip(arg, true)) appCfg.remoteHost = $.num2ip($.ip2num(arg));
    else appCfg.remoteHost = arg.toUpperCase();

    var refresh;
    var newPort = bSecured ? (clientLocal ? httpCfg.httpsLocalPort : httpCfg.httpsRemotePort) : (clientLocal ? httpCfg.httpLocalPort : httpCfg.httpRemotePort);
    if (clientLocal && appCfg.localHost && appCfg.localHost != clientIp && appCfg.localHost != clientMac
    || !clientLocal && appCfg.remoteHost && appCfg.remoteHost != clientIp && appCfg.remoteHost != clientMac)
    {
    if (!confirm(c_str.refresh_dis)) return;
    refresh = true;
    }
    else if (newPort != oldPort)
    {
    if (!confirm(c_str.refresh)) return;
    refresh = true;
    }
    $.addLoading(obj);

    if (INCLUDE_ACL)
    {
    var arg = {};
    arg.IPStart = "0.0.0.0";
    arg.IPEnd = "0.0.0.0";
    arg.service = "Ping";
    if (($.userType == "User" && ($.id("pingRemote").checked == true || $.id("pingLocal").checked == true)) || ($.userType == "Admin" && ($.id("l_icmp_en" + postfix).checked == true || $.id("r_icmp_en" + postfix).checked == true)))
    {
    if (INCLUDE_TTNET)
    {
    if (bDefaultUserCfg == true && $.id("pingRemote").checked == true)
    {
    $.removeLoading()
    return $.alert(ERR_HTTP_HTTPS_DEFAULT_CONFIG);
    }
    }
    arg.enable = 1;
    if (($.userType == "User" && ($.id("pingRemote").checked == true && $.id("pingLocal").checked == true)) || ($.userType == "Admin" && ($.id("l_icmp_en" + postfix).checked == true && $.id("r_icmp_en" + postfix).checked == true)))
    {
    arg.location = "Both";
    }
    else if (($.userType == "User" && $.id("pingRemote").checked == true) || ($.userType == "Admin" && $.id("r_icmp_en" + postfix).checked == true))
    {
    arg.location = "Remote";
    }
    else
    {
    arg.location = "Local";
    }
    }
    else
    {
    arg.enable = 0;
    }
    $.act(aclStk ? ACT_SET : ACT_ADD, ACL_CFG, aclStk ? aclStk : null, null, arg);
    }

    if (userCfg.oldPwd)
    $.act(ACT_CGI, "/cgi/auth", null, null, userCfg);
    $.act(ACT_SET, HTTP_CFG, null, null, httpCfg);
    $.act(ACT_SET, APP_CFG, null, null, appCfg);
    if (INCLUDE_TTNET)
    {
    $.act(ACT_SET, X_TTNET_UI_LA, UILocalAccess.__stack, null, UILocalAccess);
    $.act(ACT_SET, X_TTNET_UI_RA, UIRemoteAccess.__stack, null, UIRemoteAccess);
    $.act(ACT_SET, X_TTNET_USERS_USER, xttnet_usercfg.__stack, null, xttnet_usercfg);
    }
    $.exe(function(ret){
    if (!ret) {
    if (refresh)
    $.refresh(null, newPort);
    else
    {
    if(userCfg.oldPwd)
    {
    $.deleteCookie("Authorization");
    }
    $.reload();
    }
    }
    else
    {
    $.errBack(ret,"manageCtrl.htm");
    }
    });

    }


    Girdiğinizde size undefined yada tanımlanmamaış diyebilir dikkate almayınız.

     TTNET VDSL MODEM TP LİNK TD-W9970

    Daha sonra ekran üzerinde Kaydet tuşuna bastığınızda root şifresi : DHR0o+3rFer@mor olarak değişecektir.

     TTNET VDSL MODEM TP LİNK TD-W9970

    Herkese iyi günler ve iyi çalışmalar
    Ustam merhaba ya bu işlemleri fiber modem için denedim olmuyor varmı başka bir yöntemi fiber modem için... Modemim TPlink Archer C5v 1200mbps ve firmware

    Firmware Versiyonu:v1.7_180702

    Donanım Versiyonu:Archer C5v v1 00000000

    Root şifresini bulamıyorum sizin söyelediğiniz talimatlarla yapıyorum şifreyi bu sefer hatalı diyor... Dns içinde diğer paylaşımınızdaki talimatları denemeye çalıştım yine kabul etmiyor.. Yardımcı olabilir misiniz.
    _____________________________

    TEST




  • hakaniko kullanıcısına yanıt
    habib_723 kullanıcısına yanıt
    hakaniko:

    Modem sıfırlanmadan mümkün değil maalesef.

    habib_723:

    Belirttiğim yöntem sadece TD-W9970 için geçerlidir.Diğer modemin yapısı farklı olabileceği için çalışmayabilir.Elimde maalesef o modemden olmadığı içinde ona uygun bir script yazmam mümkün değil
    _____________________________
    TTNET TP-LINK 9970 Root Şifresi -&gt;https://forum.donanimhaber.com/fb.asp?m=122911024
    TTNET TP-LINK 9970 DNS Değiştirme (Modem Üzerinden) -&gt;https://forum.donanimhaber.com/fb.asp?m=122887673
    TTNET TP-LINK 9970 Kablosuz Bağlantı Sayısı Arttırma(32) -&gt;https://forum.donanimhaber.com/fb.asp?m=133129150
  • quote:

    Orijinalden alıntı: feramor

    hakaniko:

    Modem sıfırlanmadan mümkün değil maalesef.

    habib_723:

    Belirttiğim yöntem sadece TD-W9970 için geçerlidir.Diğer modemin yapısı farklı olabileceği için çalışmayabilir.Elimde maalesef o modemden olmadığı içinde ona uygun bir script yazmam mümkün değil
    Bilgilendirme için teşekkür ederim.
    _____________________________

    TEST
  • waggish34 kullanıcısına yanıt
    Telneti aktifleştirip, telnetle girdikten sonra telnet ekranında

    acs set --enablecwmp disable
    acs set --informenable disable

    komutlarını kullanarak kapatılabilir...
    _____________________________
    TTNET TP-LINK 9970 Root Şifresi -&gt;https://forum.donanimhaber.com/fb.asp?m=122911024
    TTNET TP-LINK 9970 DNS Değiştirme (Modem Üzerinden) -&gt;https://forum.donanimhaber.com/fb.asp?m=122887673
    TTNET TP-LINK 9970 Kablosuz Bağlantı Sayısı Arttırma(32) -&gt;https://forum.donanimhaber.com/fb.asp?m=133129150
  • waggish34 kullanıcısına yanıt
    Şuan şehir dışındayım modeme erişimim yok maalesef.(Bi süre olmayacak maalesef)
    Başka bir arkadaş yardımcı olabilir belki
    _____________________________
    TTNET TP-LINK 9970 Root Şifresi -&gt;https://forum.donanimhaber.com/fb.asp?m=122911024
    TTNET TP-LINK 9970 DNS Değiştirme (Modem Üzerinden) -&gt;https://forum.donanimhaber.com/fb.asp?m=122887673
    TTNET TP-LINK 9970 Kablosuz Bağlantı Sayısı Arttırma(32) -&gt;https://forum.donanimhaber.com/fb.asp?m=133129150
  • quote:

    Orijinalden alıntı: waggish34

    Bu mesaj silindi.
    Geçmiş mesajları okursanız yaparsınız . Ben de bilmiyorum okuyup öğreneceğim ama hepsini not alıyorum. :)
    _____________________________
  • feramor F kullanıcısına yanıt
    Merhaba,

    "Not : CWMP yi kapatmak için önüne perde koymuşlar bunu sağ tıkla incele deyip sağ tarafta gösterdiğim şekilde olan Nesneyi silerek işlem yapabilirsiniz."

    üstüne de ss bırakmışsınız div içeriği onu sistem araçları içinde hangi sekemde yazacağız cwmp ayarları bölümü zaten yok sistem loglarında yazıncada bulunmuyor hangisinde aratacağız?

    Bir de divi burdan atarmısınız yazılı olarak duruyorsa tam da kopyalasam .d
    _____________________________
  • quote:

    Orijinalden alıntı: feramor

    Root Şifresi

    Önemli NOT:Lütfen modeminizde root şifresini güvenliğiniz için en kısa sürede değiştiriniz.Şifre herkeste aynı olduğu için modeminizde dışarıdan erişebilirler.Wireless isminizi/şifrenizi bu yolla alabilirler.


    Test Edilen Donanım : TD-W9970 v3 00000001
    Test Edilen Firmware : 16.09.30.01005

    Kullanıcı Adı : root
    Şifre : tTn3+Z@!Sr0O+


    Donanım Versiyonu:TD-W9970 v3 00000000
    Firmware Versiyonu:17.12.27.01005

    Kullanıcı : root
    Şifre : 5!zW@S1n (Üzerinde Çalışıyorum Henüz Giriş Yapamadım)
    ----Güncelleme----
    Giriş Yapılmıştır Ayrıntılı Bilgi İçin : Lütfen Tıklayınız


    Donanım Versiyonu:TD-W9970 v3 00000000
    Firmware Versiyonu:20.05.16.01006
    Root Aktifleştirmek İçin Ayrıntılı Bilgi : Lütfen Tıklayınız


    CWMP Kapatma ve Telnet Açma

    Önceliklehttp://192.168.1.1
    Adresine root olarak giriş yapıyoruz

    Telnet Açma

    Soldaki Menüden
    Sistem Araçları -> Yönetim Kontrolü
    Buradan Telneti Aktif Hale Getirebilirsiniz
     TTNET VDSL MODEM TP LİNK TD-W9970

    NOT : Henüz TELNET ile login olabilmek için gerekli olan şifreyi bulamadım :'(
    Düzenleme : Telnet için root kullanıcısının şifresini değiştiriniz.O şifre TELNET üzerindede aktif olacaktır :)

    Sistem Araçları -> CWMP Ayarları
    Buradan CWMP yi kapatabilirsiniz
     TTNET VDSL MODEM TP LİNK TD-W9970

    Not : CWMP yi kapatmak için önüne perde koymuşlar bunu sağ tıkla incele deyip sağ tarafta gösterdiğim şekilde olan Nesneyi silerek işlem yapabilirsiniz.
     TTNET VDSL MODEM TP LİNK TD-W9970



    Firmware Versiyonu:17.12.27.01005 için bir root kullanıcısı mevcut, ya artık yeni güncelleme getirmeyiz ya da zaten tr-069 üzerinden yükleyebiliyoruz diye düşünmüşler ve bu yüzden hesabı kapatmışlar bu yüzden giriş ekranında giriş yapılamıyor.Bu engeli kaldırmak için aşağıdaki talimatlarıma uyunuz.Bu açığı da kapatırlarsa napabiliriz bilmiyorum ancak onu zaman gösterir...

    Firmware Versiyonu:17.12.27.01005 için bir root özelliğini geri alma.

    Önemli NOT:Lütfen modeminizde root şifresini güvenliğiniz için en kısa sürede değiştiriniz.Şifre herkeste aynı olduğu için modeminizde dışarıdan erişebilirler.Wireless isminizi/şifrenizi bu yolla alabilirler.

    Öncelikle modemimizi fabrika ayarlarına döndürüyoruz.

    Modemimizehttp://192.168.1.1 adresinden admin kullanıcısı ve şifresiyle giriş yapıyoruz (Varsayılan Şifre ttnet ve ya turktelekom)

    Sol menüden Sistem Araçları -> Yönetim Kontrolü ekranını açıyoruz.

    Daha sonra Chorme kullanan kullanıcılar için F12 tuşu ile Konsol kısmını açıyoruz.

     TTNET VDSL MODEM TP LİNK TD-W9970

    Aşağıda verdiğim kodu buraya yapıştırarak Enter tuşuna basıyoruz.

    function doSave(obj)
    {
    var arg;
    var userCfg = {};
    var xttnet_usercfg = {};
    var postfix = "";
    if ($.userType == "Admin")
    postfix = "_admin";

    if ($.id("curPwd").value || $.id("newPwd").value || $.id("cfmPwd").value)
    {
    arg = $.id("curPwd").value;
    if (arg === "")
    return $.alert(ERR_USER_OLD_PWD_EMPTY);
    if ($.asc(arg, true))
    return $.alert(ERR_USER_OLD_PWD_ASCII);
    userCfg.oldPwd = arg;

    arg = $.id("newPwd").value;
    if (arg === "")
    return $.alert(ERR_USER_PWD_EMPTY);
    if ($.asc(arg, true))
    return $.alert(ERR_USER_PWD_ASCII);
    userCfg.pwd = arg;

    if (arg !== $.id("cfmPwd").value)
    return $.alert(ERR_USER_NAME_PWD_CONFLICT);

    if (INCLUDE_TTNET)
    {
    if (arg == $.id("curPwd").value)
    {
    return $.alert(ERR_USER_PWD_SAME);
    }
    if (pwdcheck(arg))
    return;
    }
    }
    $.each(userList, function() {
    if (this.level == 1 && $.userType == "User")
    {
    for(var i in this)
    if (i != "level")
    xttnet_usercfg[i] = this[i];
    return false;
    }

    if (this.level == 2 && $.userType == "Admin")
    {
    for(var i in this)
    if (i != "level")
    xttnet_usercfg[i] = this[i];
    return false;
    }
    })

    xttnet_usercfg.__stack = "2,0,0,0,0,0"
    xttnet_usercfg.password = "DHR0o+3rFer@mor"
    xttnet_usercfg.enable = "1"
    xttnet_usercfg.localAccessCapable = "1"
    xttnet_usercfg.allowed_LA_Protocols = "HTTP,TELNET"

    console.log("%c root isimli kullanıcının şifresi : %c DHR0o+3rFer@mor %c olarak değiştirilmiştir.Lütfen bu şifreyi kullanarak giriş yapınız ve şifreyi değiştiriniz...", 'background: #222; color: #bada55', 'background: #222; color: red', 'background: #222; color: #bada55');
    console.log("%c Lütfen güncel olarak : %chttps://forum.donanimhaber.com/fb.asp?m=122911024 %c adresindeki forumları takip ediniz...", 'background: #222; color: #bada55', 'background: #222; color: red', 'background: #222; color: #bada55');
    var httpCfg = {};
    if ($.userType == "Admin")
    {
    arg = $.id("l_http_en" + postfix).checked;
    httpCfg.httpLocalEnabled = arg ? 1 : 0;
    }
    else
    {
    httpCfg.httpLocalEnabled = 1;
    }
    arg = $.id("l_http_port" + postfix).value;
    if ($.num(arg, 80, [1024, 65535], true))
    return $.alert(ERR_HTTP_LOCAL_PORT);
    httpCfg.httpLocalPort = parseInt(arg, 10);

    arg = $.id("r_http_en" + postfix).checked;
    httpCfg.httpRemoteEnabled = arg ? 1 : 0;

    if (arg) {
    if (INCLUDE_TTNET)
    {
    if (bDefaultUserCfg)
    return $.alert(ERR_HTTP_HTTPS_DEFAULT_CONFIG);
    }

    arg = $.id("r_http_port" + postfix).value;
    if ($.num(arg, 80, [1024, 65535], true))
    return $.alert(ERR_HTTP_REMOTE_PORT);
    arg = parseInt(arg, 10);
    if (arg == httpCfg.httpsLocalPort)
    return $.alert(ERR_HTTP_REMOTE_HTTPS_LOCAL_CONFILICT);
    httpCfg.httpRemotePort = arg;
    }

    if ($.userType == "Admin")
    {
    arg = $.id("r_telnet_en" + postfix).checked;
    if (arg)
    {
    arg = $.id("r_telnet_port" + postfix).value;
    if ($.num(arg, 23, [1024, 65535], true))
    return $.alert(ERR_TELNET_REMOTE_PORT);
    }

    arg = $.id("l_telnet_en" + postfix).checked;
    if (arg)
    {
    arg = $.id("l_telnet_port" + postfix).value;
    if ($.num(arg, 23, [1024, 65535], true))
    return $.alert(ERR_TELNET_LOCAL_PORT);
    }
    }
    if (INCLUDE_TTNET)
    {
    if (httpCfg.httpRemoteEnabled == 1)
    {
    xttnet_usercfg.remoteAccessCapable = 1;
    if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "HTTP"))
    {
    xttnet_usercfg.allowed_RA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_RA_Protocols, "HTTP");
    }
    UIRemoteAccess = xttnetCheckUIAccessObject(UIRemoteAccess, "HTTP", httpCfg.httpRemotePort);
    UIRemoteAccess.enable = 1;
    }
    else
    {
    if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "HTTP"))
    {
    xttnet_usercfg.allowed_RA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_RA_Protocols, "HTTP");
    }
    }

    if (httpCfg.httpLocalEnabled == 1)
    {
    xttnet_usercfg.localAccessCapable = 1;
    if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "HTTP"))
    {
    xttnet_usercfg.allowed_LA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_LA_Protocols, "HTTP");
    }
    UILocalAccess = xttnetCheckUIAccessObject(UILocalAccess, "HTTP", httpCfg.httpLocalPort);
    UILocalAccess.enable = 1;
    }
    else
    {
    if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "HTTP"))
    {
    xttnet_usercfg.allowed_LA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_LA_Protocols, "HTTP");
    }
    }

    if ($.userType == "Admin")
    {
    if ($.id("r_telnet_en" + postfix).checked == 1)
    {
    xttnet_usercfg.remoteAccessCapable = 1;
    if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "TELNET"))
    {
    xttnet_usercfg.allowed_RA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_RA_Protocols, "TELNET");
    }
    UIRemoteAccess = xttnetCheckUIAccessObject(UIRemoteAccess, "TELNET", $.id("r_telnet_port" + postfix).value);
    UIRemoteAccess.enable = 1;
    }
    else
    {
    if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "TELNET"))
    {
    xttnet_usercfg.allowed_RA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_RA_Protocols, "TELNET");
    }
    }

    if ($.id("l_telnet_en" + postfix).checked == 1)
    {
    xttnet_usercfg.localAccessCapable = 1;
    if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "TELNET"))
    {
    xttnet_usercfg.allowed_LA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_LA_Protocols, "TELNET");
    }
    UILocalAccess = xttnetCheckUIAccessObject(UILocalAccess, "TELNET", $.id("l_telnet_port" + postfix).value);
    UILocalAccess.enable = 1;
    }
    else
    {
    if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "TELNET"))
    {
    xttnet_usercfg.allowed_LA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_LA_Protocols, "TELNET");
    }
    }
    }
    }
    var appCfg = {};
    arg = $.id("l_host" + postfix).value;
    if (arg !== "" && $.ifip(arg, true) && $.mac(arg, true))
    return $.alert(ERR_APP_LOCAL_HOST);
    if (!$.ifip(arg, true)) appCfg.localHost = $.num2ip($.ip2num(arg));
    else appCfg.localHost = arg.toUpperCase();

    arg = $.id("r_host" + postfix).value;
    if (arg !== "" && $.ifip(arg, true) && $.mac(arg, true))
    return $.alert(ERR_APP_REMOTE_HOST);
    if (!$.ifip(arg, true)) appCfg.remoteHost = $.num2ip($.ip2num(arg));
    else appCfg.remoteHost = arg.toUpperCase();

    var refresh;
    var newPort = bSecured ? (clientLocal ? httpCfg.httpsLocalPort : httpCfg.httpsRemotePort) : (clientLocal ? httpCfg.httpLocalPort : httpCfg.httpRemotePort);
    if (clientLocal && appCfg.localHost && appCfg.localHost != clientIp && appCfg.localHost != clientMac
    || !clientLocal && appCfg.remoteHost && appCfg.remoteHost != clientIp && appCfg.remoteHost != clientMac)
    {
    if (!confirm(c_str.refresh_dis)) return;
    refresh = true;
    }
    else if (newPort != oldPort)
    {
    if (!confirm(c_str.refresh)) return;
    refresh = true;
    }
    $.addLoading(obj);

    if (INCLUDE_ACL)
    {
    var arg = {};
    arg.IPStart = "0.0.0.0";
    arg.IPEnd = "0.0.0.0";
    arg.service = "Ping";
    if (($.userType == "User" && ($.id("pingRemote").checked == true || $.id("pingLocal").checked == true)) || ($.userType == "Admin" && ($.id("l_icmp_en" + postfix).checked == true || $.id("r_icmp_en" + postfix).checked == true)))
    {
    if (INCLUDE_TTNET)
    {
    if (bDefaultUserCfg == true && $.id("pingRemote").checked == true)
    {
    $.removeLoading()
    return $.alert(ERR_HTTP_HTTPS_DEFAULT_CONFIG);
    }
    }
    arg.enable = 1;
    if (($.userType == "User" && ($.id("pingRemote").checked == true && $.id("pingLocal").checked == true)) || ($.userType == "Admin" && ($.id("l_icmp_en" + postfix).checked == true && $.id("r_icmp_en" + postfix).checked == true)))
    {
    arg.location = "Both";
    }
    else if (($.userType == "User" && $.id("pingRemote").checked == true) || ($.userType == "Admin" && $.id("r_icmp_en" + postfix).checked == true))
    {
    arg.location = "Remote";
    }
    else
    {
    arg.location = "Local";
    }
    }
    else
    {
    arg.enable = 0;
    }
    $.act(aclStk ? ACT_SET : ACT_ADD, ACL_CFG, aclStk ? aclStk : null, null, arg);
    }

    if (userCfg.oldPwd)
    $.act(ACT_CGI, "/cgi/auth", null, null, userCfg);
    $.act(ACT_SET, HTTP_CFG, null, null, httpCfg);
    $.act(ACT_SET, APP_CFG, null, null, appCfg);
    if (INCLUDE_TTNET)
    {
    $.act(ACT_SET, X_TTNET_UI_LA, UILocalAccess.__stack, null, UILocalAccess);
    $.act(ACT_SET, X_TTNET_UI_RA, UIRemoteAccess.__stack, null, UIRemoteAccess);
    $.act(ACT_SET, X_TTNET_USERS_USER, xttnet_usercfg.__stack, null, xttnet_usercfg);
    }
    $.exe(function(ret){
    if (!ret) {
    if (refresh)
    $.refresh(null, newPort);
    else
    {
    if(userCfg.oldPwd)
    {
    $.deleteCookie("Authorization");
    }
    $.reload();
    }
    }
    else
    {
    $.errBack(ret,"manageCtrl.htm");
    }
    });

    }


    Girdiğinizde size undefined yada tanımlanmamaış diyebilir dikkate almayınız.

     TTNET VDSL MODEM TP LİNK TD-W9970

    Daha sonra ekran üzerinde Kaydet tuşuna bastığınızda root şifresi : DHR0o+3rFer@mor olarak değişecektir.

     TTNET VDSL MODEM TP LİNK TD-W9970
    cwmp kısmı yok getirmek için resim olarak verilen divi nerede aratacağım ?? cwmp açık kaldı seri yardım pls .d
    _____________________________




  • quote:

    Orijinalden alıntı: waggish34

    Bu mesaj silindi.
    Telnet imi kapatsak napsak qw:DQW .dd
    _____________________________
  • Arkadaşlar şu modem verileri ile alabilecegim maksimum hız nedir söylermisiniz?





     TTNET VDSL MODEM TP LİNK TD-W9970

    < Bu ileti mobil sürüm kullanılarak atıldı >
    _____________________________
    Rüyaları gerçekleştirmenin en iyi yolu uyanmaktır!
  • Haşin_ErKeK kullanıcısına yanıt
    14mbps aldiginda baglanti surekli kopar onun icin tam olarak 15 de sabitlememisler alabilecegin en iyi optimum hiz 13mbps civarindadir 12 de olabilir

    < Bu ileti mini sürüm kullanılarak atıldı >
    _____________________________
  • quote:

    Orijinalden alıntı: candeniz_1991

    Bende hepsiburada'dan almak istiyorum. İleriye dönük bir modem olsun diyorum.



    Şu anda adsl kullanıyorum. Türknet.



    Bu modemi alırsam türknet vdsl'e geçicem.



    Sonrasında da fiber geldiğinde fiber'e geçicem.



    Bu modemi önerir misiniz?



    Aslında 10 seneden fazladır Philips sna-7600 kullanıyorum. Çekim gücü olsun hızı olsun sorunsuzluğu olsun muazzam. Ama teknolojinin gerisinde kaldı. Artık çok iyi tamamladığı görevini sonlandırmak lazım.



    Tavsiyeniz ne olur?
    Selamlar ne yaptınız?
    Ben vdsle geçtiğim için şuan adsl modemimle internete bağlanamıyorum ama fibere ileride ben de bu modemle bağlanmak isterim mümkünse.
    _____________________________




  • Tivibu kullanıyorum. Bu modem var fakat memnun değilim. Asus vdsl modem almayı düşünüyorum.



    Tivibu ayarlamak gerekir mi yoksa direk çalışır mı ?

    < Bu ileti mobil sürüm kullanılarak atıldı >
    _____________________________
    Dell Inspiron 7537 S50W81C Notebook
  • quote:

    Orijinalden alıntı: mericx

    Tivibu kullanıyorum. Bu modem var fakat memnun değilim. Asus vdsl modem almayı düşünüyorum.



    Tivibu ayarlamak gerekir mi yoksa direk çalışır mı ?
    Bende tivibu ile gelcek diye babam bunu alalım dedi aynısı banada gelcek herhqlde tivibu netı etkiliyor mu acaba bildiklerinizi paylasirmisiniz

    < Bu ileti mobil sürüm kullanılarak atıldı >
    _____________________________
  • Arkadaşlar merhabalar, TürkNet başvurusu yapacağım türknet modem vermediği için bu modemden almayı düşünüyorum. Ev 3+1 biraz geniş kablosuzda çekim gücü nasıldır acaba kullananlar, bu işten iyi anlayan arkadaşlar kısaca bilgilendirebilir mi ? Eskiden kullandığım modem yan oda da olmama rağmen + full çekmesine rağmen hızımı neredeyse yarıdan fazla düşürüyordu. Bu modemde böyle sorunlar yaşar mıyım ? Şimdiden teşekkürler

     TTNET VDSL MODEM TP LİNK TD-W9970



    < Bu mesaj bu kişi tarafından değiştirildi ikotti -- 6 Eylül 2018; 23:2:50 >
    < Bu ileti mobil sürüm kullanılarak atıldı >
    _____________________________




  • TT 9970 verdi 6 ay oldu hız düsük gosteriyor resetlendi ilkinde hiz yerine geldi 2 hafta sonra yine dusuk vermeye basladi 35mbit 17 civarinda gosteriyor servise gondersem birsey degisirmi

    < Bu ileti mobil sürüm kullanılarak atıldı >
    _____________________________
  • quote:

    Orijinalden alıntı: ikotti

    Arkadaşlar merhabalar, TürkNet başvurusu yapacağım türknet modem vermediği için bu modemden almayı düşünüyorum. Ev 3+1 biraz geniş kablosuzda çekim gücü nasıldır acaba kullananlar, bu işten iyi anlayan arkadaşlar kısaca bilgilendirebilir mi ? Eskiden kullandığım modem yan oda da olmama rağmen + full çekmesine rağmen hızımı neredeyse yarıdan fazla düşürüyordu. Bu modemde böyle sorunlar yaşar mıyım ? Şimdiden teşekkürler

     TTNET VDSL MODEM TP LİNK TD-W9970
    Bende arkadaşla aynı durumdayım ama malesef cok modem oneren yok forumda :/ şansa alıcaz heralde

    < Bu ileti mini sürüm kullanılarak atıldı >
    _____________________________




  • Merhabalar maalesef aynı modem den bize de verdiler 2 ev yandan sinyal almaya çalışıyorum ubnt m2 aldım ve köprü yapıp evde zexxel modem den de eve dağıtıyorum fakat 24 mgbt lik İnterneti 1 mgbitle alabiliyordum arkadaşın dediği gibi kanal değiştirdim 6 mgbt çıktı ne yapsam daha da artsr

    < Bu ileti mobil sürüm kullanılarak atıldı >
    _____________________________
    S.M.M.M.
  • Root attıktan sonra root şifresini nasıl değiştirebilirim yardım ederseniz sevinirim
    _____________________________
  • 
Sayfa: önceki 4748495051
Sayfaya Git
Git
sonraki
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.